summaryrefslogtreecommitdiff
path: root/src/api_profiling.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/api_profiling.cpp')
-rw-r--r--src/api_profiling.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/api_profiling.cpp b/src/api_profiling.cpp
new file mode 100644
index 0000000..5980dee
--- /dev/null
+++ b/src/api_profiling.cpp
@@ -0,0 +1,13 @@
+#include <OpenCL/cl.h>
+
+// Profiling APIs
+cl_int
+clGetEventProfilingInfo(cl_event event,
+ cl_profiling_info param_name,
+ size_t param_value_size,
+ void * param_value,
+ size_t * param_value_size_ret)
+{
+ return 0;
+}
+