1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/perf/modalg/bug25788
ski 44fae8b193 0027691: Remove dchrono from all test cases and move its to perf group
Remove performance comparing with hardcoded value.
Test cases for performance of some commands were moved to perf group.

Updated documentation.
2017-01-19 17:24:46 +03:00

36 lines
838 B
Plaintext

puts "========="
puts "OCC25788"
puts "========="
puts ""
###############################################
# Parallelization of the BOP Builder algorithm on second level
###############################################
# box plate to cut the holes from
box b1 100 100 1
# N defines number of holes along each of X and Y, thus total N^2 holes
# will be drilled; note that the algorithm iself is likely to be quadratic
# for number of shapes, i.e. CPU
set N 40
set holes {}
for {set i 1} {$i < $N} {incr i} {
for {set j 1} {$j < $N} {incr j} {
pcylinder p_${i}_$j 0.5 1
ttranslate p_${i}_$j [expr $i * 100. / $N] [expr $j * 100. / $N] 0.
lappend holes p_${i}_$j
}
}
eval compound $holes b2
bclearobjects
bcleartools
baddobjects b1
baddtools b2
brunparallel 1
dchrono cpu restart
bcut r b1 b2
dchrono cpu stop counter bcut