Merge pull request #22 from BlackMATov/dev

Dev
This commit is contained in:
2019-05-30 23:05:18 +07:00
committed by GitHub
13 changed files with 18 additions and 20 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_map_foreach --benchmark_format=csv > benchmark_map_foreach.csv
../scripts/bench_drawer.py -f benchmark_map_foreach.csv
../../scripts/bench_drawer.py -f benchmark_map_foreach.csv

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_map_insert --benchmark_format=csv > benchmark_map_insert.csv
../scripts/bench_drawer.py -f benchmark_map_insert.csv
../../scripts/bench_drawer.py -f benchmark_map_insert.csv

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_map_lookup --benchmark_format=csv > benchmark_map_lookup.csv
../scripts/bench_drawer.py -f benchmark_map_lookup.csv
../../scripts/bench_drawer.py -f benchmark_map_lookup.csv

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_set_foreach --benchmark_format=csv > benchmark_set_foreach.csv
../scripts/bench_drawer.py -f benchmark_set_foreach.csv
../../scripts/bench_drawer.py -f benchmark_set_foreach.csv

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_set_insert --benchmark_format=csv > benchmark_set_insert.csv
../scripts/bench_drawer.py -f benchmark_set_insert.csv
../../scripts/bench_drawer.py -f benchmark_set_insert.csv

View File

@@ -1,8 +1,8 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
cd $BUILD_DIR
./unbench/flat.hpp.unbench --benchmark_filter=_set_lookup --benchmark_format=csv > benchmark_set_lookup.csv
../scripts/bench_drawer.py -f benchmark_set_lookup.csv
../../scripts/bench_drawer.py -f benchmark_set_lookup.csv

View File

@@ -44,5 +44,3 @@ if(Boost_CONTAINER_FOUND)
target_compile_definitions(${PROJECT_NAME}
PRIVATE BOOST_CONTAINER_FOUND)
endif()
add_test(${PROJECT_NAME} ${PROJECT_NAME})

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_map.hpp>
#include <flat.hpp/flat_map.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_map.hpp>
#include <flat.hpp/flat_map.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_map.hpp>
#include <flat.hpp/flat_map.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_set.hpp>
#include <flat.hpp/flat_set.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_set.hpp>
#include <flat.hpp/flat_set.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND

View File

@@ -7,7 +7,7 @@
#include "bench_base.hpp"
using namespace flat_hpp_unbench;
#include <flat_hpp/flat_set.hpp>
#include <flat.hpp/flat_set.hpp>
using namespace flat_hpp;
#ifdef BOOST_CONTAINER_FOUND