summaryrefslogtreecommitdiffstats
path: root/tools/lib/io_timer.c
Commit message (Collapse)AuthorAgeFilesLines
* Bring perform tools changes from developAllen Byrne2020-01-171-46/+39
|
* Remove attributeAllen Byrne2020-01-121-1/+1
|
* Fix CMake test macros and perform standalone testsAllen Byrne2020-01-121-5/+12
|
* HDFFV-10919 merge external storage repackAllen Byrne2019-10-021-1/+1
|
* HDFFV-8745 merge h5diff attribute fixAllen Byrne2018-01-111-4/+0
|
* HDFFV-10297 merge from developAllen Byrne2017-10-111-6/+4
| | | Also cleaned up some other non-merged changes
* Change copyright headers to replace url referring to file to belrknox2017-05-161-6/+4
| | | | removed and replace it with new url for COPYING file.
* Merge/port changes from develop back to 1.8 for tools and cmakeAllen Byrne2017-03-291-3/+2
|
* [svn-r26398] Merges r26333 from trunkDana Robinson2015-03-091-1/+1
| | | | | | | | | | | | | | | | Eliminates gcc warnings due to -Wunsuffixed-float-constants. - Adds 'F' suffixes for most float constants. - A few constants MUST be of type double. These now receive the long double L suffix and are then cast to double. I do this via a new H5_DOUBLE() macro which was added to H5private.h. - Additionally, some 1.8-specific float suffixes were added. Fixes: HDFFV-9148 Tested on: h5committest
* [svn-r25956] [Merge r25954 from trunk]Albert Cheng2015-01-051-2/+9
| | | | | | | | | | | | | | | HDFFV-9046: reorganize hdf5/perform, step 2 Last changes had caused problems with Windows platform: 1. H5private.h in io_timer.h is not accessible in the distributed shared library of tools. Need to move it to io_timer.c. 2. debug_start_stop_time() would not be available outside of h5perf. Some favor of compiler does not like it. Screened it out for now. 3. mere "extern" is not good enough for Windows shared library. Must mark them as DLL. Need to mark them as "H5TOOLS_DLL". 4. STANDALONE mode is broken. Screened out the code for now. Tested: h5committest.
* [svn-r25947] [merged changes from trunk r25940]Albert Cheng2015-01-041-0/+225
HDFFV-9046: reorganize hdf5/perform, step 2 Move timing measurement routines used by h5perf and h5perf_serial to tools/lib so that they can be used by other tools too. tools/lib/io_timer.c tools/lib/io_timer.h tools/perform/io_timer.c tools/perform/io_timer.h renamed perform/io_timer.[ch] to lib/io_timer.[ch] tools/lib/Makefile.am tools/lib/Makefile.in tools/lib/CMakeLists.txt tools/perform/Makefile.in tools/perform/Makefile.am tools/perform/CMakeLists.txt MANIFEST updated due to the move. Tested; h5committest and jam (serial)