From 974cf848bfe474a5003e95c907e3e1289b6a5454 Mon Sep 17 00:00:00 2001 From: zy69guqi <richard.angersbach@fau.de> Date: Wed, 12 Mar 2025 16:40:25 +0100 Subject: [PATCH] Fix header incl --- src/pystencils/backend/platforms/cuda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pystencils/backend/platforms/cuda.py b/src/pystencils/backend/platforms/cuda.py index 32744661a..637723f07 100644 --- a/src/pystencils/backend/platforms/cuda.py +++ b/src/pystencils/backend/platforms/cuda.py @@ -199,7 +199,7 @@ class CudaPlatform(GenericGpu): def required_headers(self) -> set[str]: return { '"pystencils_runtime/hip.h"', # TODO: move to HipPlatform once it is introduced - '"gpu_atomics.h' + '"gpu_atomics.h"' } def materialize_iteration_space( -- GitLab