From 99d6a21a4abf3c18a772e956940c1457d3d95630 Mon Sep 17 00:00:00 2001 From: Sergey Yagovtsev Date: Mon, 8 May 2017 12:32:07 +0300 Subject: [PATCH] minor changes in sample --- sample/build_express_test.sh | 6 ++---- sample/express_sample.cpp | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/sample/build_express_test.sh b/sample/build_express_test.sh index 76e115f..638ee2a 100755 --- a/sample/build_express_test.sh +++ b/sample/build_express_test.sh @@ -3,15 +3,13 @@ TEMP_FILE_ENABLE="enable.info" TEMP_FILE_DISABLE="disable.info" OBJECTS="1000" -$CXX_COMPILER -O3 -std=c++11 -I../easy_profiler_core/include/ -L../bin/ -leasy_profiler -DBUILD_WITH_EASY_PROFILER express_sample.cpp -o express_test_enabled $CXX_COMPILER -O3 -std=c++11 -I../easy_profiler_core/include/ -L../bin/ -leasy_profiler express_sample.cpp -o express_test_disabled +$CXX_COMPILER -O3 -std=c++11 -I../easy_profiler_core/include/ -L../bin/ -leasy_profiler -DBUILD_WITH_EASY_PROFILER express_sample.cpp -o express_test_enabled export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../bin - - -./express_test_enabled $OBJECTS > $TEMP_FILE_ENABLE ./express_test_disabled $OBJECTS > $TEMP_FILE_DISABLE +./express_test_enabled $OBJECTS > $TEMP_FILE_ENABLE DT_ENA=`cat $TEMP_FILE_ENABLE | grep Elapsed| awk '{print $3}'` N_ENA=`cat $TEMP_FILE_ENABLE | grep Blocks| awk '{print $3}'` diff --git a/sample/express_sample.cpp b/sample/express_sample.cpp index 7b53085..4212c48 100644 --- a/sample/express_sample.cpp +++ b/sample/express_sample.cpp @@ -23,8 +23,6 @@ void modellingThread(){ } { - std::this_thread::sleep_for(std::chrono::milliseconds(16)); - EASY_BLOCK("Collisions"); volatile int i, j; volatile double dist;