summaryrefslogtreecommitdiff
path: root/dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch')
-rw-r--r--dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch b/dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch
deleted file mode 100644
index d5a2998b3979..000000000000
--- a/dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 964e03c013c6827cfa3f6ca0bed81b77d1884b40 Mon Sep 17 00:00:00 2001
-From: Michael Klemm <michael.klemm@amd.com>
-Date: Mon, 7 Jun 2021 16:55:46 +0200
-Subject: [PATCH] Fix issue #73 by using the proper delete[] operator
-
----
- rocm_bandwidth_test_report.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/rocm_bandwidth_test_report.cpp b/rocm_bandwidth_test_report.cpp
-index 8895705..d4a0f60 100755
---- a/rocm_bandwidth_test_report.cpp
-+++ b/rocm_bandwidth_test_report.cpp
-@@ -341,7 +341,7 @@ void RocmBandwidthTest::DisplayCopyTimeMatrix(bool peak) const {
- double* perf_matrix = new double[agent_index_ * agent_index_]();
- PopulatePerfMatrix(peak, perf_matrix);
- PrintPerfMatrix(false, peak, perf_matrix);
-- free(perf_matrix);
-+ delete[] perf_matrix;
- }
-
- void RocmBandwidthTest::DisplayValidationMatrix() const {
-@@ -349,7 +349,7 @@ void RocmBandwidthTest::DisplayValidationMatrix() const {
- double* perf_matrix = new double[agent_index_ * agent_index_]();
- PopulatePerfMatrix(true, perf_matrix);
- PrintPerfMatrix(true, true, perf_matrix);
-- free(perf_matrix);
-+ delete[] perf_matrix;
- }
-
- void RocmBandwidthTest::DisplayDevInfo() const {