From c0be98c7e7f71c79c10566760d7c29974206f97d Mon Sep 17 00:00:00 2001 From: Tuowen Zhao Date: Fri, 6 Nov 2020 01:09:24 -0700 Subject: update for beta10 --- main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 6b1fc89..095bbed 100644 --- a/main.cpp +++ b/main.cpp @@ -38,7 +38,7 @@ public: [[intel::reqd_sub_group_size(16)]] void operator()(nd_item<1> NdItem) const { - intel::sub_group SG = NdItem.get_sub_group(); + ONEAPI::sub_group SG = NdItem.get_sub_group(); uint32_t wggid = NdItem.get_global_id(0); uint32_t sgid = SG.get_local_id().get(0); if (wggid == 0) @@ -186,7 +186,7 @@ int main() { const std::string DeviceName = Device.get_info(); const std::string DeviceVendor = Device.get_info(); - return Device.is_gpu() && DeviceName.find("HD Graphics NEO") ? 1 : -1; + return Device.is_gpu() && DeviceName.find("Gen11") ? 1 : -1; } }; @@ -199,10 +199,10 @@ int main() { const std::string DeviceName = Device.get_info(); - std::cout << "Device [" << DeviceNumber << "]:" << std::endl; + std::cout << "Device [" << DeviceNumber << "]:" << DeviceName << std::endl; try { - printInfo(Device); - if (Device.is_gpu() && (DeviceName.find("HD Graphics NEO") != std::string::npos)) { + if (Device.is_gpu() && (DeviceName.find("Gen11") != std::string::npos)) { + printInfo(Device); run27pt(Device); runSubgroups(Device); } else { -- cgit v1.2.3-70-g09d2