python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
QtCreator with Intel OneAPI SYCL
I started my study with OneAPI SYCL but I normally use QtCreator as my IDE. I did a HelloSYCL project with CMake and works fine in the terminal and in the VSCode with OneAPI Extension as well, but did...
André Agenor
Votes: 0
Answers: 1
SYCL program working using VS Debugger but not when running the .exe
I am trying to build and run a simple SYCL program from this book. Here it is:
#include <CL/sycl.hpp>
#include <iostream>
using namespace sycl;
const std::string secret {
"Ifmmp-...
Balfar
Votes: 0
Answers: 1
Intel MKL ERROR: incorrect parameter when calling gemm()
I have this code:
void my_function(double *image_vector, double *endmembers, double *abundanceVector, int it, int lines, int samples, int bands, int targets)
{
double *h_Num;
double *h_aux;
...
gamersensual
Votes: 0
Answers: 2
How do I translate this ACC code to SYCL?
My question is:
I have this code:
#pragma acc parallel loop
for(i=0; i<bands; i++)
{
#pragma acc loop seq
for(j=0; j<lines_samples; j++)
r_m[i] += image_v...
gamersensual
Votes: 0
Answers: 1