From 6211cd142fcfe53002842c4c697c3769af06c835 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 8 Dec 2015 00:13:13 -0600 Subject: [PATCH] Fix test failure: revert OpenCL barrier spacing style --- loopy/target/opencl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopy/target/opencl.py b/loopy/target/opencl.py index 9b5c4544b..4b88e6555 100644 --- a/loopy/target/opencl.py +++ b/loopy/target/opencl.py @@ -284,7 +284,7 @@ class OpenCLTarget(CTarget): """ if kind == "local": if comment: - comment = "/* %s */" % comment + comment = " /* %s */" % comment from loopy.codegen import GeneratedInstruction from cgen import Statement -- GitLab