From a01a40cf223e57ea86f461c6ebaeaf317c9bf77a Mon Sep 17 00:00:00 2001 From: Tim <43156029+AtlantaPepsi@users.noreply.github.com> Date: Wed, 15 Jul 2026 14:22:32 -0500 Subject: [PATCH 1/4] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d745b00..2ae8df5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,12 @@ Documentation for TransferBench is available at [https://rocm.docs.amd.com/projects/TransferBench](https://rocm.docs.amd.com/projects/TransferBench). ## v1.69.00 +### Added +- Added -1 option for `ALWAYS_VALIDATE` to disable validation ### Fixed - Fix for non-zero byte offsets used with DMA executor +- Explicit copy back to host for GPU subExecParam on platforms without large BAR +- Missing device synchronization after hipMemcpy in `RunTransfers()` ## v1.68.00 ### Fixed From fa4e4ac4459f783f1b6ad9f6b6066fd6183f59d2 Mon Sep 17 00:00:00 2001 From: Tim <43156029+AtlantaPepsi@users.noreply.github.com> Date: Wed, 15 Jul 2026 14:41:54 -0500 Subject: [PATCH 2/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ae8df5e..9bf7d494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Documentation for TransferBench is available at ### Fixed - Fix for non-zero byte offsets used with DMA executor - Explicit copy back to host for GPU subExecParam on platforms without large BAR -- Missing device synchronization after hipMemcpy in `RunTransfers()` +- Add missing device synchronization after `hipMemcpy` in `RunTransfers()` ## v1.68.00 ### Fixed From 093293af7e771b51f614aedbaf49e80e738b71f2 Mon Sep 17 00:00:00 2001 From: Tim <43156029+AtlantaPepsi@users.noreply.github.com> Date: Wed, 15 Jul 2026 14:42:07 -0500 Subject: [PATCH 3/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bf7d494..eeb5507f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Documentation for TransferBench is available at ## v1.69.00 ### Added -- Added -1 option for `ALWAYS_VALIDATE` to disable validation +- Added support for `ALWAYS_VALIDATE=-1` to disable validation ### Fixed - Fix for non-zero byte offsets used with DMA executor - Explicit copy back to host for GPU subExecParam on platforms without large BAR From 84259657f122e60960331304353b5078dc99d958 Mon Sep 17 00:00:00 2001 From: Tim <43156029+AtlantaPepsi@users.noreply.github.com> Date: Wed, 15 Jul 2026 17:18:06 -0500 Subject: [PATCH 4/4] Update Client.cpp --- src/client/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/Client.cpp b/src/client/Client.cpp index 95a0f9a5..3074f3b1 100644 --- a/src/client/Client.cpp +++ b/src/client/Client.cpp @@ -259,7 +259,7 @@ void DisplayVersion() #ifndef TB_GIT_COMMIT #define TB_GIT_COMMIT "unknown" #endif - Print("TransferBench v%s.%sC (%s:%s)%s%s\n", VERSION, CLIENT_VERSION, TB_GIT_BRANCH, TB_GIT_COMMIT, support.c_str(), multiNodeMode.c_str()); + Print("TransferBench v%s.%s (%s:%s)%s%s\n", VERSION, CLIENT_VERSION, TB_GIT_BRANCH, TB_GIT_COMMIT, support.c_str(), multiNodeMode.c_str()); Print("=============================================================================================================\n"); }