summaryrefslogtreecommitdiff
path: root/libcuda/cuda_api_object.h
diff options
context:
space:
mode:
authorMengchi Zhang <[email protected]>2019-06-06 12:17:13 -0400
committerGitHub <[email protected]>2019-06-06 12:17:13 -0400
commit9d6f9463769908755174c7b84b5720dc9cd24e42 (patch)
treebe94abc013ae8fe5a934d02550feae6a3ff397c3 /libcuda/cuda_api_object.h
parent5a794ee6bf694a1a0abfc8d1bc270cbeb135e76f (diff)
parentbc8d1e10507f043c916ee051dc9a687adc6d9b4b (diff)
Merge pull request #10 from echoedit/dev
Dev
Diffstat (limited to 'libcuda/cuda_api_object.h')
-rw-r--r--libcuda/cuda_api_object.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libcuda/cuda_api_object.h b/libcuda/cuda_api_object.h
new file mode 100644
index 0000000..2001f91
--- /dev/null
+++ b/libcuda/cuda_api_object.h
@@ -0,0 +1,14 @@
+#ifndef __cuda_api_object_h__
+#define __cuda_api_object_h__
+class cuobjdumpSection;
+class kernel_config;
+
+
+class cuda_runtime_api {
+ public:
+ // global list
+ std::list<cuobjdumpSection*> libSectionList;
+ std::list<kernel_config> g_cuda_launch_stack;
+ // member function list
+};
+#endif /* __cuda_api_object_h__ */