This commit is contained in:
0xFugue 2023-09-06 14:42:22 +05:30
parent 1cbbef87d0
commit fc61dddbd7
2 changed files with 3 additions and 3 deletions

View File

@ -78,9 +78,9 @@ def main(ctx: typer.Context,
tree_depth = 1 + int(math.log(num_comm, 2)) if num_comm > 1 else 1
num_nodes_branch= tree_depth * comm_size
debug_str = ( f" #num_nodes={num_nodes},"
debug_str = ( f"\"num_nodes={num_nodes},"
f" total_tree_nodes={num_comm}, comm_size={comm_size}, remainder={remainder},"
f" computed={prob:f}(req={failure_threshold:f}), depth={tree_depth}"
f" computed={prob:f}(req={failure_threshold:f}), depth={tree_depth}\""
) if debug else ""
tree_spec = f"tree,{num_nodes},{comm_size},{debug_str}"

View File

@ -16,7 +16,7 @@ do
echo "overlay,nodes,committees_or_depth,description" > $dir$prefix"_"$p".csv"
for i in $network_sizes
do
python3 build_tests.py --num-nodes $i --failure-threshold $p >> $dir$prefix"_"$p".csv"
python3 build_tests.py --num-nodes $i --failure-threshold $p --debug >> $dir$prefix"_"$p".csv"
echo "num-nodes = $i, failure-threshold = $p"
done
done