tags:

views:

34

answers:

1

Is there build-in cross and dot products in CUDA like in opencl, so cuda kernels can use it? I have nothing found in the specification until now.

+1  A: 

You can find definitions for these functions in cutil_math.h in the SDK.

There are routines for the dot product in CuBLAS.

codekaizen