Skip to content

Commit 5e387e2

Browse files
Correct template syntax in hypotfKernel
1 parent ded6916 commit 5e387e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

offload/unittests/Conformance/device_code/HIPMath.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ __gpu_kernel void expm1fKernel(const float *X, float *Out,
130130

131131
__gpu_kernel void hypotfKernel(const float *X, float *Y, float *Out,
132132
size_t NumElements) noexcept {
133-
runKernelBody__ocml_hypot_f32 > (NumElements, Out, X, Y);
133+
runKernelBody<__ocml_hypot_f32>(NumElements, Out, X, Y);
134134
}
135135

136136
__gpu_kernel void logKernel(const double *X, double *Out,

0 commit comments

Comments
 (0)