Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / cl_kernels / include / arg_max_min_common.cl
 // limitations under the License.
 */
 
-#include "auto_tuner.h"
-#include "auto_tuner_offline.h"
-namespace kernel_selector 
-{
-    // KBL GT3e
-    void tuning_cache_5927(tuning_data& td)
+/* Index and Value type that holds index and value used in this kernel */
+
+#ifndef IAV_STRUCT_DEFINED
+    typedef struct 
     {
-        tuning_cache_5927_B1(td);
-    }
-}
\ No newline at end of file
+        uint index; 
+        UNIT_TYPE value; 
+    } iav_type;
+    #define IAV_STRUCT_DEFINED
+#endif
\ No newline at end of file