blob: 77b8ca7067764d2ae2d31ef36f3f0c1bc9a8a677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//==============================================================
// Copyright Intel Corporation
//
// SPDX-License-Identifier: MIT
// =============================================================
#include <CL/sycl.hpp>
using namespace sycl;
typedef float T;
double RunKernel(queue &q, std::vector<T> &inAHost, std::vector<T> &inBHost,
std::vector<T> &inCHost, std::vector<int>& resultFlags);
|