2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Fix types in NVRTC testing

This commit is contained in:
Matt Borland
2024-08-13 11:47:55 -04:00
parent 463699e8ca
commit dd711380e2
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
typedef float float_type;
const char* cuda_kernel = R"(
typedef double float_type;
typedef float float_type;
#include <boost/math/special_functions/cos_pi.hpp>
extern "C" __global__
void test_cos_pi_kernel(const float_type *in1, const float_type*, float_type *out, int numElements)

View File

@@ -21,7 +21,7 @@
typedef float float_type;
const char* cuda_kernel = R"(
typedef double float_type;
typedef float float_type;
#include <boost/math/special_functions/sin_pi.hpp>
extern "C" __global__
void test_sin_pi_kernel(const float_type *in1, const float_type*, float_type *out, int numElements)