From 633df1f74b65d6a76be70a231c90fb05cbad8632 Mon Sep 17 00:00:00 2001 From: Ingo Wald Date: Sun, 23 Nov 2025 14:50:11 -0700 Subject: [PATCH] fixed stray __device__ that should have been __cubql_both --- cuBQL/queries/triangleData/math/rayTriangleIntersections.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuBQL/queries/triangleData/math/rayTriangleIntersections.h b/cuBQL/queries/triangleData/math/rayTriangleIntersections.h index 7961cb7..0f49e6f 100644 --- a/cuBQL/queries/triangleData/math/rayTriangleIntersections.h +++ b/cuBQL/queries/triangleData/math/rayTriangleIntersections.h @@ -34,7 +34,7 @@ namespace cuBQL { // ============================================================================= template - inline __device__ + inline __cubql_both bool RayTriangleIntersection_t::compute(const ray_t &ray, const triangle_t &tri) {