Skip to content

Commit

Permalink
Benchmakr: add systematic FNT
Browse files Browse the repository at this point in the history
  • Loading branch information
lamphamsy committed Sep 7, 2018
1 parent b062785 commit ae62a24
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions scripts/benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,14 @@ fi

chunk_size=51200
# for rs-fnt with different packet sizes
ec_type=rs-fnt
word_size=2
for k in 16; do
for n in 256 1024; do
m=$((n-k))
for pkt_size in 256 512 1024; do
${bin} -e ${ec_type} -w ${word_size} -k ${k} -m ${m} -c ${chunk_size} -s ${sce_type} -g ${threads_nb} -f ${show_type} -p ${pkt_size}
for ec_type in rs-fnt rs-fnt-sys; do
for k in 16; do
for n in 256 1024; do
m=$((n-k))
for pkt_size in 256 512 1024; do
${bin} -e ${ec_type} -w ${word_size} -k ${k} -m ${m} -c ${chunk_size} -s ${sce_type} -g ${threads_nb} -f ${show_type} -p ${pkt_size} -n ${samples_nb}
done
done
done
done

0 comments on commit ae62a24

Please sign in to comment.