MCPcopy Create free account
hub / github.com/NVIDIA/cuda-samples / cuEqual

Function cuEqual

cpp/4_CUDA_Libraries/batchCUBLAS/batchCUBLAS.h:122–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120template <> __inline__ __device__ __host__ float cuGet<float>(double x, double y) { return float(x); }
121template <> __inline__ __device__ __host__ double cuGet<double>(double x, double y) { return double(x); }
122static __inline__ __device__ __host__ bool cuEqual(float x, float y) { return (x == y); }
123static __inline__ __device__ __host__ bool cuEqual(double x, double y) { return (x == y); }
124
125//==============================================================================

Callers 1

test_gemm_loopFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_gemm_loopFunction · 0.68