mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-15 10:16:20 +07:00
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_map_foreach --benchmark_format=csv > benchmark_map_foreach.csv
|
./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
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_map_insert --benchmark_format=csv > benchmark_map_insert.csv
|
./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
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_map_lookup --benchmark_format=csv > benchmark_map_lookup.csv
|
./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
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_set_foreach --benchmark_format=csv > benchmark_set_foreach.csv
|
./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
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_set_insert --benchmark_format=csv > benchmark_set_insert.csv
|
./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
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
|
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build/release
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
|
||||||
./unbench/flat.hpp.unbench --benchmark_filter=_set_lookup --benchmark_format=csv > benchmark_set_lookup.csv
|
./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
|
||||||
|
|||||||
@@ -44,5 +44,3 @@ if(Boost_CONTAINER_FOUND)
|
|||||||
target_compile_definitions(${PROJECT_NAME}
|
target_compile_definitions(${PROJECT_NAME}
|
||||||
PRIVATE BOOST_CONTAINER_FOUND)
|
PRIVATE BOOST_CONTAINER_FOUND)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_test(${PROJECT_NAME} ${PROJECT_NAME})
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_map.hpp>
|
#include <flat.hpp/flat_map.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_map.hpp>
|
#include <flat.hpp/flat_map.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_map.hpp>
|
#include <flat.hpp/flat_map.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_set.hpp>
|
#include <flat.hpp/flat_set.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_set.hpp>
|
#include <flat.hpp/flat_set.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#include "bench_base.hpp"
|
#include "bench_base.hpp"
|
||||||
using namespace flat_hpp_unbench;
|
using namespace flat_hpp_unbench;
|
||||||
|
|
||||||
#include <flat_hpp/flat_set.hpp>
|
#include <flat.hpp/flat_set.hpp>
|
||||||
using namespace flat_hpp;
|
using namespace flat_hpp;
|
||||||
|
|
||||||
#ifdef BOOST_CONTAINER_FOUND
|
#ifdef BOOST_CONTAINER_FOUND
|
||||||
|
|||||||
Reference in New Issue
Block a user