summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r25994] revert adding the has_mpi_atomicity feature flag and use the ↵Mohamad Chaarawi2015-01-214-12/+6
| | | | | | has_mpi flag instead.
* [svn-r25993] remove last usage of IS_H5FD_MPIO.Mohamad Chaarawi2015-01-211-1/+0
|
* [svn-r25990] Add VFD flush2 depends on flush1 property to testAllen Byrne2015-01-211-0/+1
|
* [svn-r25987] Use variable instead of hard coded valueAllen Byrne2015-01-201-2/+2
|
* [svn-r25986] HDFFV-9060: Changed test folder to use different test folders ↵Allen Byrne2015-01-201-46/+180
| | | | | | for VFDs and regular. Needed to set srcdir env var and specify working folder to the folders where all the reference files were copied. Tested: local linux
* [svn-r25984] change the message flag H5O_MSG_FLAG_FAIL_IF_UNKNOWN toMohamad Chaarawi2015-01-207-20/+38
| | | | | | | | H5O_MSG_FLAG_FAIL_IF_UNKNOWN_AND_OPEN_FOR_WRITE. Will add a new H5O_MSG_FLAG_FAIL_IF_UNKNOWN_ALWAYS with the new avoid_truncate patch coming later. tested h5committest
* [svn-r25983] HDFFV-1125: Eliminate IS_H5FD_MPI() macro use in the library ↵Mohamad Chaarawi2015-01-206-17/+13
| | | | | | | | and replace with driver feature flag(s). Add an MPI atomicity feature flag and remove the macro from the library. tested Parallel on Jam.
* [svn-r25981] Snapshot version 1.9 release 211HDF Tester2015-01-1813-26/+26
|
* [svn-r25980] Reverting check-in 25978, C_LONG_DOUBLE seems to be 16 bytes ↵Scot Breitenfeld2015-01-155-227/+9
| | | | sometimes and 10 bytes other times. Not sure why.
* [svn-r25978] Bug fix for HDFFV-8847Scot Breitenfeld2015-01-135-9/+227
| | | | Tested: h5committest
* [svn-r25975] Snapshot version 1.9 release 210HDF Tester2015-01-1113-26/+26
|
* [svn-r25971] Update with retirement of AIX 5.3 and addition of AIX 6.1 support.Albert Cheng2015-01-091-3/+3
|
* [svn-r25963] Do not remove the prefix in the chunk alloc file, otherwise it ↵Mohamad Chaarawi2015-01-081-1/+1
| | | | | | | | makes the H5Fcreate fail when prefix is specified. tested parallel on Jam.
* [svn-r25955] Added Perform and io_timer back into build.Allen Byrne2015-01-052-2/+2
| | | | Tested: local linux cmake
* [svn-r25954] HDFFV-9046: reorganize hdf5/perform, step 2Albert Cheng2015-01-052-7/+13
| | | | | | | | | | | | | 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-r25953] Comment out printf statement as it caused system resource ↵Allen Byrne2015-01-051-3/+5
| | | | | | issues on Windows. Test now executes in 1/10 of time. Tested: local linux and Windows
* [svn-r25951] HDFFV-9054: disable io_timer in tools lib and perform ↵Allen Byrne2015-01-052-2/+2
| | | | sub-folder due to SHARED compile issues and other issues.
* [svn-r25949] Snapshot version 1.9 release 209HDF Tester2015-01-0413-26/+26
|
* [svn-r25946] Removed debug statments that use //.Albert Cheng2015-01-043-12/+0
| | | | Tested: env CFLAGS=-ansi buildhdf5 in jam and parallel platypus.
* [svn-r25940] HDFFV-9046: reorganize hdf5/perform, step 2Albert Cheng2015-01-019-18/+13
| | | | | | | | | | | | | | | | | | | | | | 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)
* [svn-r25938] Remove build and test commands for deleted benchpar.cAllen Byrne2014-12-312-16/+0
|
* [svn-r25934] Fix incorrectly combined check.Allen Byrne2014-12-311-11/+1
|
* [svn-r25933] updated.Albert Cheng2014-12-301-2/+0
|
* [svn-r25932] HDFFV-8902: merge the source code of h5perf and h5perf_serial, ↵Albert Cheng2014-12-3015-575/+377
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | stage 1. tools/perform/sio_timer.h: tools/perform/pio_timer.c: tools/perform/io_timer.h: tools/perform/io_timer.c: Renamed pio_timer.[ch] as io_timer.[ch]; merged content of sio_timer.[ch] into io_timer.[ch] so that both h5perf and h5perf_serial call the combined io_timer.[ch]. Moved the debug printing code segment in set_time() in [sp]io_timer.c to as debug_start_stop_time() in [sp]io_perf.c where it belongs. Screened out set_timer_type() and get_timer_type() which were not used by any code. tools/perform/Makefile.am: tools/perform/Makefile.in: tools/perform/CMakeLists.txt Adjusted to use io_timer.c for both h5perf and h5perf_serial. tools/perform/pio_perf.c: tools/perform/sio_perf.c: tools/perform/pio_perf.h: tools/perform/sio_perf.h: Renamed [sp]io_time_destory() to same io_time_destroy(); Moved the debug printing code segment in set_time() in [sp]io_timer.c to as debug_start_stop_time() in [sp]io_perf.c where it belongs. tools/perform/pio_engine.c: tools/perform/sio_engine.c: Removed #include io_timer.h since it was already #include by [sp]io_perf.h. MANIFEST: Updated the merge of [sp]io_timer.[ch] into io_timer.[ch]. Tested: h5committest and jam in extra.
* [svn-r25929] Description:Quincey Koziol2014-12-2916-95/+138
| | | | | | | | | | Clean up EOF code within library and add 'mem_type' parameter to 'get_eof' VFD callback, to avoid various ambiguous situations, particularly with the multi VFD. (Supports changes for 'avoid_truncate' feature also) Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel h5committest forthcoming
* [svn-r25928] Description:Quincey Koziol2014-12-292-14/+10
| | | | | | | | Minor code cleanups found while reviewing 'avoid_truncate' changes. Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel (too minor to require h5committest)
* [svn-r25924] Snapshot version 1.9 release 208HDF Tester2014-12-2813-26/+26
|
* [svn-r25923] Added name to the BIND(C) attribute, removed the !DEC$ ↵Scot Breitenfeld2014-12-233-7/+3
| | | | statements for windows.
* [svn-r25922] mpi version check for new mpi 3 features should be >= 3 rather ↵Mohamad Chaarawi2014-12-232-7/+7
| | | | than == 3.
* [svn-r25921] - wrap MPI 3 usage with MPI_VERSION compile time check.Mohamad Chaarawi2014-12-234-10/+47
| | | | - build out unbuffered stdout/err for windows
* [svn-r25920] Undo BIND(C) addition.Scot Breitenfeld2014-12-231-2/+2
|
* [svn-r25918] If not testing skip building test only programs.Allen Byrne2014-12-221-10/+12
|
* [svn-r25917] Added BIND(C) to fortran functions that pass a VALUE.Scot Breitenfeld2014-12-221-2/+2
|
* [svn-r25915] Snapshot version 1.9 release 207HDF Tester2014-12-2113-26/+26
|
* [svn-r25913] Updated.Albert Cheng2014-12-191-1/+0
|
* [svn-r25912] Revert change r25701: Add LD path to HDF5 install directory to ↵Larry Knox2014-12-192-10/+2
| | | | | | | | | address HDFFV-8944. The change broke DESTDIR builds where an older HDF5 is installed in the --prefix directory. The original problem remains. Tested with h5committest
* [svn-r25909] HDFFV-8156: perform/benchpar failed to runAlbert Cheng2014-12-191-488/+0
| | | | | | | Benchpar.c is retired/deleted. If it is ever needed, it can be retrieved from the SVN repository or even previous version of HDF5 source code. Tested: jam parallel make passed.
* [svn-r25908] Cleaned up typos comments from last commit.Albert Cheng2014-12-193-15/+4
| | | | Tested: just eyeball since changes are cosmetic.
* [svn-r25905] Fix CMP0054 warningAllen Byrne2014-12-191-10/+11
|
* [svn-r25904] Fix CMP0054 warningAllen Byrne2014-12-191-2/+2
|
* [svn-r25902] Fix CMP0053 warningAllen Byrne2014-12-191-1/+2
|
* [svn-r25900] HDFFV-9046: reorganize hdf5/perform/ directory Albert Cheng2014-12-1738-84/+82
| | | | | | Moved perform/ to tools/perform. Updated all the configure related files for the new location. Tested: h5committested plus tested in jam and kite.
* [svn-r25898] Replace 7zip required command with cmake commandAllen Byrne2014-12-171-3/+2
|
* [svn-r25891] Updated online help page to match what the command does now.Albert Cheng2014-12-171-3/+2
| | | | Tested: "bin/release -h" and visual inspect the output to be correct.
* [svn-r25886] Snapshot version 1.9 release 206HDF Tester2014-12-1413-26/+26
|
* [svn-r25884] Description:Quincey Koziol2014-12-111-3/+1
| | | | | | | | Minor code cleanups found while reviewing 'avoid truncate' branch. Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel (too minor to require h5committest)
* [svn-r25881] Description:Quincey Koziol2014-12-102-69/+21
| | | | | | | | Minor code/comment cleanups, found while reviewing 'avoid truncate' code. Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel (Too minor to require h5committest)
* [svn-r25880] Test if binary folder existsAllen Byrne2014-12-101-3/+6
|
* [svn-r25876] DAILYTEST-31: Fix cmakehdf5 for Daily Test useAlbert Cheng2014-12-101-4/+18
| | | | | | | Fix cmakehdf5 so that it can figure out where the source directory is. It expects cmakehdf5 itself resides at $srcdir/bin/cmamkehdf5. Tested: Jam by invoking cmakehdf4 with different paths.
* [svn-r25871] Updated with new options of cmakehdf5.Albert Cheng2014-12-091-0/+3
|