Skip to content

Commit d0fa7da

Browse files
committed
Address review comments
Signed-off-by: Ettore Tiotto <[email protected]>
1 parent ae056a1 commit d0fa7da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/intel/backend/arch_parser.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ extern "C" EXPORT_FUNC const char *parse_device_arch(uint64_t dev_arch) {
5252
break;
5353
#endif
5454
case sycl::ext::oneapi::experimental::architecture::unknown:
55-
std::cerr << "unknown" << std::endl;
55+
arch = "unknown";
5656
break;
5757
default:
58-
std::cerr << "sycl_arch not recognized: " << (uint64_t)sycl_arch
58+
std::cerr << "device architecture not recognized: " << (uint64_t)sycl_arch
5959
<< std::endl;
6060
}
6161

0 commit comments

Comments
 (0)