arm_compute v18.05
[platform/upstream/armcl.git] / src / core / NEON / kernels / convolution / common / utils.cpp
index 24d0386..45847bb 100644 (file)
  */
 
 #include <cstdio>
-#include <ctime>
-
-double TimeInUs(void)
-{
-#ifdef CYCLE_PROFILING
-  timespec t;
-  clock_gettime(CLOCK_REALTIME, &t);
-  return 1e6*t.tv_sec + 1e-3*t.tv_nsec;
-#else
-  return 0;
-#endif
-}
 
 void PrintMatrix(const float* const m, const int M, const int N, const int row_stride)
 {
@@ -47,4 +35,4 @@ void PrintMatrix(const float* const m, const int M, const int N, const int row_s
     printf("\n");
   }
   printf("\n");
-}
+}
\ No newline at end of file