summaryrefslogtreecommitdiff
path: root/cuda/memcpy.cu
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-12-09 11:24:07 +0100
committerPatrick Simianer <p@simianer.de>2015-12-09 11:24:07 +0100
commit869e1c86d80dee01b39d447e741f9498d917a418 (patch)
treed2880d6451da9106dbe00bed4bec8995a19c2bb5 /cuda/memcpy.cu
parent44cf8e0348e0023b3cf3b612c43273c7b35f5f5c (diff)
cuda
Diffstat (limited to 'cuda/memcpy.cu')
-rw-r--r--cuda/memcpy.cu17
1 files changed, 17 insertions, 0 deletions
diff --git a/cuda/memcpy.cu b/cuda/memcpy.cu
new file mode 100644
index 0000000..e2d5781
--- /dev/null
+++ b/cuda/memcpy.cu
@@ -0,0 +1,17 @@
+#include <iostream>
+
+using namespace std;
+
+int main(void)
+{
+ void* ptr = NULL;
+ float* f = new float[1];
+ cudaMalloc(&ptr, sizeof(float)*1);
+ int r = cudaMemcpy(ptr, f, sizeof(float) * 1, cudaMemcpyHostToDevice);
+ cout << r << endl;
+ cout << cudaSuccess << endl;
+ cout << cudaErrorInvalidValue << endl;
+ cout << cudaErrorInvalidDevicePointer << endl;
+ cout << cudaErrorInvalidMemcpyDirection << endl;
+}
+