aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu')
-rw-r--r--Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu27
1 files changed, 0 insertions, 27 deletions
diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu b/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu
deleted file mode 100644
index 3e53c8853..000000000
--- a/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/libethash.cu
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "cuPrintf.cu"
-#include <stdio.h>
-
-__global__ void device_greetings(void)
-{
- cuPrintf("Hello, world from the device!\n");
-}
-
-int main(void)
-{
- // greet from the host
- printf("Hello, world from the host!\n");
-
- // initialize cuPrintf
- cudaPrintfInit();
-
- // launch a kernel with a single thread to greet from the device
- device_greetings<<<1,1>>>();
-
- // display the device's greeting
- cudaPrintfDisplay();
-
- // clean up after cuPrintf
- cudaPrintfEnd();
-
- return 0;
-}