mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
Remove performance comparing with hardcoded value. Test cases for performance of some commands were moved to perf group. Updated documentation.
25 lines
486 B
Plaintext
25 lines
486 B
Plaintext
puts "============"
|
|
puts "OCC24596"
|
|
puts "============"
|
|
puts ""
|
|
###############################
|
|
## Slow import of IGES data
|
|
###############################
|
|
|
|
pload QAcommands
|
|
|
|
if { [regexp {Debug mode} [dversion]] } {
|
|
cpulimit 8500
|
|
} else {
|
|
cpulimit 2600
|
|
}
|
|
|
|
# 1 - igesread
|
|
dchrono h restart
|
|
igesread [locate_data_file 100B_Nosecone_with_Triangular_FSS.igs] b 86884
|
|
dchrono h stop counter igesread
|
|
|
|
# 2 - checkshape
|
|
dchrono h2 restart
|
|
checkshape b_1
|
|
dchrono h2 stop counter checkshape |