summaryrefslogtreecommitdiff
path: root/dev-util/rocm_bandwidth_test/files/4.3.0-use-proper-delete-operator.patch
blob: d5a2998b3979ee9c8b8905c2f55d9054eb550123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 {