You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,14 @@
1
1
2
-
:warning:**Deprecation notice: QS8 and QS16 data types will be removed in the next release** (As far as we know nobody uses these data types, if you do or think they are useful please open an Issue or send us an email):warning:
2
+
:warning:**Deprecation notice: QS8 and QS16 data types will be removed in the 18.05 release** (As far as we know nobody uses these data types, if you do or think they are useful please open an Issue or send us an email):warning:
**Make sure you are using the latest version of the library before opening an issue. Thanks**
6
6
7
+
News:
8
+
9
+
We're hiring: [Senior Machine Learning C++ Software Engineer](https://careers.peopleclick.com/careerscp/client_arm/external/jobDetails.do?functionName=getJobDetail&jobPostId=36246&localeCode=en-us)
10
+
Come talk to us: [Gian Marco will be presenting his work at the EVS](https://www.embedded-vision.com/summit/even-faster-cnns-exploring-new-class-winograd-algorithms)
11
+
7
12
Related projects:
8
13
9
14
-[Caffe on Compute Library](https://github.com/OAID/Caffe-HRT)
@@ -81,33 +119,7 @@ class CLTuner : public ICLTuner
81
119
cl::CommandQueue _queue;
82
120
cl::CommandQueue _queue_profiler;
83
121
cl::Event _kernel_event;
84
-
};
85
-
86
-
/* Function to be used to intercept kernel enqueues and store their OpenCL Event */
87
-
classInterceptor
88
-
{
89
-
public:
90
-
explicitInterceptor(CLTuner &tuner);
91
-
92
-
/** clEnqueueNDRangeKernel interface
93
-
*
94
-
* @param[in] command_queue A valid command-queue. The kernel will be queued for execution on the device associated with command_queue.
95
-
* @param[in] kernel A valid kernel object. The OpenCL context associated with kernel and command_queue must be the same.
96
-
* @param[in] work_dim The number of dimensions used to specify the global work-items and work-items in the work-group. work_dim must be greater than zero and less than or equal to CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS.
97
-
* @param[in] gwo Global-Workgroup-Offset. It can be used to specify an array of work_dim unsigned values that describe the offset used to calculate the global ID of a work-item. If global_work_offset is NULL, the global IDs start at offset (0, 0, ... 0).
98
-
* @param[in] gws Global-Workgroup-Size. Points to an array of work_dim unsigned values that describe the number of global work-items in work_dim dimensions that will execute the kernel function.
99
-
* @param[in] lws Local-Workgroup-Size. Points to an array of work_dim unsigned values that describe the number of work-items that make up a work-group
100
-
* @param[in] num_events_in_wait_list Number of events in the waiting list
0 commit comments