Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
code
pfabric
Commits
49836814
Commit
49836814
authored
Mar 29, 2017
by
Kai-Uwe Sattler
Browse files
merge
parents
f3c6cc5b
dfd9c89b
Changes
4
Hide whitespace changes
Inline
Side-by-side
cmake/Download3rdParty.cmake
View file @
49836814
...
...
@@ -99,7 +99,7 @@ if(USE_ROCKSDB_TABLE)
# RocksDB key-value store
download_project
(
PROJ rocksdb
GIT_REPOSITORY https://github.com/facebook/rocksdb
GIT_TAG
master
GIT_TAG
v5.1.4
UPDATE_DISCONNECTED 1
QUIET
)
...
...
src/CMakeLists.txt
View file @
49836814
...
...
@@ -46,18 +46,23 @@ option(BUILD_TEST_CASES
ON
)
#
Build benchmark
s (note: requires to set BUILD_GOOGLE_BEMCH to ON)
option
(
BUILD_BENCH
MARKS
"build benchmark
s for pipefabric
"
#Build
google
benchmark
library
option
(
BUILD_
GOOGLE_
BENCH
"build
google
benchmark"
ON
)
#Build
google
benchmark
library with
test
option
(
BUILD_
GOOGLE_
BENCH
"build
google
benchmark"
#
Build benchmark test
option
(
BUILD_BENCH
MARKS
"build benchmark
s for pipefabric
"
ON
)
# Benchmark test requires benchmark library
if
(
BUILD_BENCHMARKS
)
set
(
BUILD_GOOGLE_BENCH ON
)
endif
()
# Force using intel compiler
#include(CMakeForceCompiler)
#CMAKE_FORCE_C_COMPILER(icc "Intel C Compiler")
...
...
src/bench/CMakeLists.txt
View file @
49836814
include
(
../../cmake/Testing.cmake.in
)
if
(
BUILD_BENCHMARKS
)
if
(
BUILD_GOOGLE_BENCH
)
do_test
(
TopologyBenchmarks
)
do_test
(
MemoryBenchmarks
)
endif
()
do_test
(
TopologyBenchmarks
)
endif
()
src/qop/Tuplifier.hpp
View file @
49836814
...
...
@@ -26,6 +26,7 @@
#include
<string>
#include
<thread>
#include
<vector>
#include
<mutex>
#include
<boost/unordered/unordered_map.hpp>
...
...
@@ -105,8 +106,9 @@ class Tuplifier
Tuplifier
(
TimestampExtractorFunc
func
,
const
std
::
initializer_list
<
std
::
string
>&
predList
,
TuplifierParams
::
TuplifyMode
m
,
unsigned
int
ws
=
0
)
:
Tuplifier
(
predList
,
m
,
ws
),
mTimestampExtractor
(
func
)
{}
Tuplifier
(
predList
,
m
,
ws
)
{
mTimestampExtractor
=
func
;
}
~
Tuplifier
()
{}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment