summaryrefslogtreecommitdiff
path: root/setup_environment
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2012-07-29 09:53:27 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:48:53 -0700
commitb29506a9021f12590ddc0eac2a4bffd582af09a1 (patch)
treef02e29163a74a0a3181ce959616c47e5f608bf23 /setup_environment
parent68f25648e14ef091f873f40a4ca43aedd866c437 (diff)
testing submission policy checking script; enable CUDA 4.2 for testing
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 13576]
Diffstat (limited to 'setup_environment')
-rw-r--r--setup_environment2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_environment b/setup_environment
index dbac7c6..28fd2d6 100644
--- a/setup_environment
+++ b/setup_environment
@@ -38,7 +38,7 @@ fi
CUDA_VERSION_STRING=`$CUDA_INSTALL_PATH/bin/nvcc --version | awk '/release/ {print $5;}' | sed 's/,//'`;
CUDA_VERSION_NUMBER=`echo $CUDA_VERSION_STRING | sed 's/\./ /' | awk '{printf("%02u%02u", 10*int($1), 10*$2);}'`
-if [ $CUDA_VERSION_NUMBER -gt 4000 -o $CUDA_VERSION_NUMBER -lt 2030 ]; then
+if [ $CUDA_VERSION_NUMBER -gt 4020 -o $CUDA_VERSION_NUMBER -lt 2030 ]; then
echo "ERROR ** GPGPU-Sim version $GPGPUSIM_VERSION_STRING not tested with CUDA version $CUDA_VERSION_STRING (please see README)";
return;
fi