From 208c31dc2a1b28026d875a0cc359d92b628a232f Mon Sep 17 00:00:00 2001 From: Qianqian Fang Date: Sat, 9 Nov 2024 14:59:46 -0500 Subject: [PATCH] [ci] use verbose option to debug macos build flags --- .github/workflows/build_macos_wheel.yml | 2 +- src/mcx_core.cu | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_macos_wheel.yml b/.github/workflows/build_macos_wheel.yml index b865e559..f3babd05 100644 --- a/.github/workflows/build_macos_wheel.yml +++ b/.github/workflows/build_macos_wheel.yml @@ -59,7 +59,7 @@ jobs: cd pmcx/ python -m pip install --upgrade pip pip install wheel setuptools - VERBOSE=1 pip wheel . -w ../dist/ + VERBOSE=1 pip wheel . -w ../dist/ --verbose ls ../dist/ cd ../ - name: Check If the Build Version Exists on PyPI diff --git a/src/mcx_core.cu b/src/mcx_core.cu index 1e126276..7083bd98 100644 --- a/src/mcx_core.cu +++ b/src/mcx_core.cu @@ -62,6 +62,7 @@ This unit is written with CUDA-C and shall be compiled using nvcc in cuda-toolki #define ZERO 0.f #endif + #if defined(USE_XOROSHIRO128P_RAND) #include "mcx_rand_xoroshiro128p.cu" //< Use USE_XOROSHIRO128P_RAND macro to enable xoroshiro128p+ RNG (XORSHIFT128P) #elif defined(USE_POSIX_RAND)