You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix cache flush (#226)
* Fix a thread race issue that may cause memory error when larger than cache max size data is transferred
* Add a test that writes more data than server cache size
* Fix CI run command
* Update nersc.yml (#238)
* Since PDCinit returns a uint64_t, 0 should indicate failure (#233)
Co-authored-by: Jean Luca Bez <jlbez@lbl.gov>
* Check the return value of `PDC_Client_init` in `PDC_init` (#230)
* Check that return value of PDC_Client_init in PDC_init
* Change return to 0
This will make is simpler when merging #233 (comment)
---------
Co-authored-by: Jean Luca Bez <jlbez@lbl.gov>
* Change `printf` to PDC logger (#232)
* Changed all printf to use pdc logger
Also removed large blocks of comments and chanegd the pdc logger
to print the file name, function, and line number.
* Change typo of LOG_INFO to LOG_ERROR
* Correct grammar from fail -> failed
* update grammer succesfully close -> successfully closed
* switch type of LOG_INFO to LOG_ERROR
* Add logging docs and fix some LOG_INFO->LOG_JUST_PRINT
* update clang formatting
---------
Co-authored-by: Jean Luca Bez <jlbez@lbl.gov>
* Malloc correct size for pdc_obj_metadata_pkg (#237)
Co-authored-by: Jean Luca Bez <jlbez@lbl.gov>
* PDCregion_transfer_create validate client buf, local region, and remote regions (#236)
Co-authored-by: Jean Luca Bez <jlbez@lbl.gov>
---------
Co-authored-by: Houjun Tang <htang4@lbl.gov>
Co-authored-by: Noah Lewis <47840925+TheAssembler1@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/readme.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@
68
68
- Input:
69
69
+ pdc_name is the reference for PDC class. Recommended use "pdc"
70
70
- Output:
71
-
+ PDC class ID used for future reference.
71
+
+ PDC class ID used for future reference or 0 on failure.
72
72
- All PDC client applications must call PDCinit before using it. This function will setup connections from clients to servers. A valid PDC server must be running.
printf("total program time is %lf, PDCstart time = %lf, PDCwait time = %lf\n", (timer_class->total_end_time - timer_class->total_start_time) / 1000000.0, timer_class->PDCstart_time / 1000000.0, timer_class->PDCwait_time / 1000000.0);
214
+
LOG_INFO("total program time is %lf, PDCstart time = %lf, PDCwait time = %lf\n", (timer_class->total_end_time - timer_class->total_start_time) / 1000000.0, timer_class->PDCstart_time / 1000000.0, timer_class->PDCwait_time / 1000000.0);
215
215
#else
216
-
printf("total program time is %lf, H5Dwrite time = %lf, H5Dread time = %lf\n", (timer_class->total_end_time - timer_class->total_start_time) / 1000000.0, timer_class->H5Dwrite_time / 1000000.0, timer_class->H5Dread_time / 1000000.0);
LOG_INFO("total program time is %lf, H5Dwrite time = %lf, H5Dread time = %lf\n", (timer_class->total_end_time - timer_class->total_start_time) / 1000000.0, timer_class->H5Dwrite_time / 1000000.0, timer_class->H5Dread_time / 1000000.0);
0 commit comments