mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Function Strtod() is reimplemented using open source (MIT-style license) code by David M. Gay instead of strtod() provided by standard run-time library. This improves its performance by 3-10 times. Functions Atof(), Strtod(), Printf(), Sprintf(), Fprintf() are declared as extern "C" to be usable from C programs. Strtod() is used in Interface_FileReaderData::Fastof() and in RWStl_Reader to accelerate their work. DRAW command QATestAtof and test perf fclasses strtod are added to check correctness and performance of Strtod(). Test perf draw restore is added to monitor performance of reading BREP files. Minor off-topic corrections: - method Standard_GUID::Assign (const Standard_UUID&) is implemented (was empty); - Precision.hxx is included in BRepMesh_Vertex.hxx that uses it.
12 lines
419 B
Plaintext
12 lines
419 B
Plaintext
puts "# ======================================================================"
|
|
puts "# 0029399: Optimize reading of floating point values from text strings "
|
|
puts "# ======================================================================"
|
|
puts ""
|
|
puts "# Test to monitor performance of reading large BREP file"
|
|
|
|
set file [locate_data_file OCC54.brep]
|
|
|
|
dchrono s restart
|
|
restore $file a
|
|
dchrono s stop counter "restore"
|