summaryrefslogtreecommitdiff
path: root/getDecuda/getDecuda.sh
diff options
context:
space:
mode:
authorAndrew M. B. Boktor <[email protected]>2012-04-25 19:44:41 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:19:06 -0700
commit2c72a869f0bf5c27a9b4a159975e926ebc75b902 (patch)
treec422ea5dadda7da6aa413d4ef89805ccfde1f6f3 /getDecuda/getDecuda.sh
parent93501bce1672d204b2fa8c2c2361a6485f813e9c (diff)
Removing all remaining traced of decuda
Stopping if someone tries to use PTXPlus without cuobjdump [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12138]
Diffstat (limited to 'getDecuda/getDecuda.sh')
-rwxr-xr-xgetDecuda/getDecuda.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/getDecuda/getDecuda.sh b/getDecuda/getDecuda.sh
deleted file mode 100755
index a63a2ec..0000000
--- a/getDecuda/getDecuda.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# This script downloads the latest version of decuda from http://github.com/laanwj/decuda, untars it and patches it.
-# Only works with decuda 0.4.2.
-
-# decuda.patch must be in the same folder as getDecuda.sh
-
-cd ./getDecuda
-wget -O decuda.tgz --no-check-certificate http://github.com/laanwj/decuda/tarball/master
-tar -xf ./decuda.tgz
-mv laanwj-decuda-c30bd17 decuda # if this fails, we need to check what has changed in decuda, or get a perminant link to decuda 0.4.2
-patch -d ./decuda < ./decuda.patch
-rm ./decuda.tgz
-mv decuda ../decuda
-cd ..