mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
15 lines
464 B
Bash
Executable File
15 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SAMPLER="bsampler"
|
|
SAMPLER+=" --id bsampler1"
|
|
SAMPLER+=" --msg-size 1000000"
|
|
#SAMPLER+=" --num-msgs 1000"
|
|
SAMPLER+=" --config-json-file @CMAKE_BINARY_DIR@/bin/config/benchmark.json"
|
|
xterm -geometry 80x23+0+0 -hold -e @CMAKE_BINARY_DIR@/bin/$SAMPLER &
|
|
|
|
SINK="sink"
|
|
SINK+=" --id sink1"
|
|
#SINK+=" --num-msgs 1000"
|
|
SINK+=" --config-json-file @CMAKE_BINARY_DIR@/bin/config/benchmark.json"
|
|
xterm -geometry 80x23+500+0 -hold -e @CMAKE_BINARY_DIR@/bin/$SINK &
|