From ceb6a75c50b0c8f701a303d3a241a69e2eee723a Mon Sep 17 00:00:00 2001 From: kchristin Date: Thu, 14 Nov 2024 19:02:08 +0200 Subject: [PATCH] Fix format --- demos/CUDA/BlackScholes/BlackScholes.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/CUDA/BlackScholes/BlackScholes.cu b/demos/CUDA/BlackScholes/BlackScholes.cu index 5e6df2cca..3c3617b44 100644 --- a/demos/CUDA/BlackScholes/BlackScholes.cu +++ b/demos/CUDA/BlackScholes/BlackScholes.cu @@ -83,7 +83,7 @@ const int OPT_SZ = OPT_N * sizeof(float); const float RISKFREE = 0.02f; const float VOLATILITY = 0.30f; -#define DIV_UP(a, b) (((a) + (b)-1) / (b)) +#define DIV_UP(a, b) (((a) + (b) - 1) / (b)) //////////////////////////////////////////////////////////////////////////////// // Main program