You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
503 B
9 lines
503 B
extern "C" int cuda_basicAdd(int a, int b);
|
|
|
|
extern "C" void cuda_arrayFmaOptimized(int * const A, int const N, int const M);
|
|
extern "C" void cuda_arrayFmaOptimizedHelper(int * const A, int const N);
|
|
|
|
extern "C" void cuda_arrayFma(int const * const A, int const * const B, int const * const C, int * const D, int const N);
|
|
extern "C" void cuda_arrayFmaHelper(int const * const A, int const * const B, int const * const C, int * const D, int const N);
|
|
|
|
void cpp_cuda_bandwidthTest(int entryCount, int N);
|