You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone -b wip-cuda-9-warp-level-primitives --recursive https://github.com/alichnewsky/cudpp
cd cudpp
mkdir BUILD
cd BUILD
cmake .. \
-DCMAKE_CXX_COMPILER=$(which g++) \
-DCMAKE_CXX_FLAGS=-Wno-deprecated-declarations \
-DCUDPP_GENCODE_SM70=ON \
-DCUDPP_GENCODE_SM60=OFF \
-DCUDPP_GENCODE_SM70=ON \
-DCUDPP_GENCODE_SM50=OFF \
-DCUDPP_GENCODE_SM37=OFF \
-DCUDPP_GENCODE_SM35=OFF \
-DCUDPP_GENCODE_SM30=OFF \
-DCUDA_VERBOSE_PTXAS=OFF \
-DCUDPP_GENCODE_SM60_COMPATIBILITY_MODE=OFF \
-DCUDPP_BUILD_APPLICATIONS=ON \
-DCUDPP_BUILD_SHARED_LIBS=ON
# build
make -j $(nproc)# execute all unit tests fails
bin/cudpp_testrig -all 2>&1| tee test.all
# execute muti-split test fails
bin/cudpp_testrig -multisplit 2>&1| tee test.multi-split
As the portion of the code I use in my application ( compute integrals with scan, multi-scan for floating points sums ) actually works, I may not investigate this in a timely fashion and contribute a fix ...
a free CI/CD like the one (NVIDIA provides?) for RAPIDS would be nice.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Most likely it did not previously with cuda 9 either.
I observed :
my fork with ongoing work can be found herehttp://github.com/alichnewsky/cudpp in two branches
master
andwip-cuda-9-warp-level-primitives
FULL repro
As the portion of the code I use in my application ( compute integrals with scan, multi-scan for floating points sums ) actually works, I may not investigate this in a timely fashion and contribute a fix ...
a free CI/CD like the one (NVIDIA provides?) for RAPIDS would be nice.
The text was updated successfully, but these errors were encountered: