Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 2bc4ee9

Browse files
committed
Removed changes unrelated to PR
Signed-off-by: Rauf, Rana <[email protected]>
1 parent c4b2eb6 commit 2bc4ee9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

SYCL/ESIMD/api/simd_any_all.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ template <typename T, int N, int Op> bool test_impl(queue q) {
112112
}
113113
T gold = Gold[Op * num_vals + i];
114114
T val = res[i];
115-
std::cout << " " << ops[Op] << "("
116-
<< (std::string)((simd<ValTy, N>)test_vals_arr[i])
115+
std::cout << " " << ops[Op] << "(" << (simd<ValTy, N>)test_vals_arr[i]
117116
<< ") = " << (ValTy)val;
118117

119118
if (val != gold) {

SYCL/Regression/device_num.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ void PrintSystemConfiguration() {
6969
auto PlatformName = Platform.get_info<info::platform::name>();
7070
const auto &Devices = Platform.get_devices();
7171
for (const auto &Device : Devices) {
72-
std::cout << backend_to_string(Backend) << ":"
73-
<< getDeviceTypeName(Device) << ":" << DeviceNums[Backend]
74-
<< std::endl;
72+
std::cout << Backend << ":" << getDeviceTypeName(Device) << ":"
73+
<< DeviceNums[Backend] << std::endl;
7574
++DeviceNums[Backend];
7675
}
7776
}

0 commit comments

Comments
 (0)