Skip to content

Commit

Permalink
Another set of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
againull committed Nov 22, 2024
1 parent d8a622c commit 6317bc1
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/dpas/dpas_bf16.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
int main(int argc, const char *argv[]) {
queue Q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());
auto Dev = Q.get_device();
std::cout << "Running on " << Dev.get_info<info::device::name>() << std::endl;
std::cout << "Running on " << Dev.get_info<sycl::info::device::name>()
<< std::endl;

bool Print = argc > 1 && std::string(argv[1]) == "-debug";
bool Passed = true;
Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/dpas/dpas_fp16.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
int main(int argc, const char *argv[]) {
queue Q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());
auto Dev = Q.get_device();
std::cout << "Running on " << Dev.get_info<info::device::name>() << std::endl;
std::cout << "Running on " << Dev.get_info<sycl::info::device::name>()
<< std::endl;

bool Print = argc > 1 && std::string(argv[1]) == "-debug";
bool Passed = true;
Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/dpas/dpas_int.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
int main(int argc, const char *argv[]) {
queue Q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());
auto Dev = Q.get_device();
std::cout << "Running on " << Dev.get_info<info::device::name>() << std::endl;
std::cout << "Running on " << Dev.get_info<sycl::info::device::name>()
<< std::endl;

bool Print = argc > 1 && std::string(argv[1]) == "-debug";
bool Passed = true;
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/ESIMD/lsc/lsc_argument_type_deduction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ int main() {

queue q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());
auto device = q.get_device();
std::cout << "Device name: " << device.get_info<info::device::name>()
std::cout << "Device name: " << device.get_info<sycl::info::device::name>()
<< std::endl;

int error = testUSM<8>(q);
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/ESIMD/lsc/lsc_predicate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ int main() {
auto q =
queue{esimd_test::ESIMDSelector, esimd_test::createExceptionHandler()};
auto device = q.get_device();
std::cout << "Device name: " << device.get_info<info::device::name>()
std::cout << "Device name: " << device.get_info<sycl::info::device::name>()
<< std::endl;

int error = testUSM<8>(q);
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/ESIMD/lsc/lsc_predicate_stateless.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int main() {
auto q =
queue{esimd_test::ESIMDSelector, esimd_test::createExceptionHandler()};
auto device = q.get_device();
std::cout << "Device name: " << device.get_info<info::device::name>()
std::cout << "Device name: " << device.get_info<sycl::info::device::name>()
<< std::endl;

int error = testAccessor<8>(q);
Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/lsc/lsc_slm_atomic_smoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ int main(void) {
queue q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());

auto dev = q.get_device();
std::cout << "Running on " << dev.get_info<info::device::name>() << "\n";
std::cout << "Running on " << dev.get_info<sycl::info::device::name>()
<< "\n";

bool passed = true;
#ifndef CMPXCHG_TEST
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ int main(void) {
queue q(esimd_test::ESIMDSelector, esimd_test::createExceptionHandler());

auto dev = q.get_device();
std::cout << "Running on " << dev.get_info<info::device::name>() << "\n";
std::cout << "Running on " << dev.get_info<sycl::info::device::name>()
<< "\n";

bool passed = true;

Expand Down

0 comments on commit 6317bc1

Please sign in to comment.