Skip to content

Commit 0d48e0b

Browse files
committed
add print
1 parent 4b83ead commit 0d48e0b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/sycl/extensions.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
#include <numa.h>
2929
#endif
3030

31+
#include <iostream>
32+
33+
3134
BOOST_FIXTURE_TEST_SUITE(extension_tests, reset_device_fixture)
3235

3336
#ifdef ACPP_EXT_AUTO_PLACEHOLDER_REQUIRE
@@ -1279,6 +1282,9 @@ BOOST_AUTO_TEST_CASE(target_numa_node_property) {
12791282

12801283
q.wait();
12811284

1285+
std::cout << "numa_available " << numa_available() << std::endl;
1286+
std::cout << "numa_num_configured_nodes " << numa_num_configured_nodes() << std::endl;
1287+
12821288
//AdaptiveCpp_target_numa_node is only availble on the OpenMP backend.
12831289
//Using the property with any other backend should have no effect.
12841290
//Verify with numa_available() that the NUMA node are accessible,

0 commit comments

Comments
 (0)