From 3d5bb17f8ee0653cc6002b14227e74050d38c8ae Mon Sep 17 00:00:00 2001 From: Kristofer Jonsson Date: Tue, 29 Jun 2021 08:44:46 +0200 Subject: Removing profiler define Removing define that is no longer needed now that the profiler classes have been implemented. Updating .gitignore. Change-Id: Idc1eab268a4f4d1ff9460671f8547c1fcb209f82 --- applications/inference_process/src/inference_process.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'applications') diff --git a/applications/inference_process/src/inference_process.cpp b/applications/inference_process/src/inference_process.cpp index 3e1f12e..13cabb2 100644 --- a/applications/inference_process/src/inference_process.cpp +++ b/applications/inference_process/src/inference_process.cpp @@ -257,15 +257,12 @@ bool InferenceProcess::runJob(InferenceJob &job) { printf("%s : %zu\r\n", "arena_used_bytes", interpreter.arena_used_bytes()); -#ifdef INFERENCE_PROC_TFLU_PROFILER printf("Inference runtime: %u cycles\r\n", (unsigned int)profiler.GetTotalTicks()); if (job.pmuCycleCounterEnable != 0) { job.pmuCycleCounterCount = profiler.GetTotalTicks(); } -#endif - // Copy output data if (job.output.size() > 0) { if (interpreter.outputs_size() != job.output.size()) { -- cgit v1.2.1