We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b83ead commit 0d48e0bCopy full SHA for 0d48e0b
1 file changed
tests/sycl/extensions.cpp
@@ -28,6 +28,9 @@
28
#include <numa.h>
29
#endif
30
31
+#include <iostream>
32
+
33
34
BOOST_FIXTURE_TEST_SUITE(extension_tests, reset_device_fixture)
35
36
#ifdef ACPP_EXT_AUTO_PLACEHOLDER_REQUIRE
@@ -1279,6 +1282,9 @@ BOOST_AUTO_TEST_CASE(target_numa_node_property) {
1279
1282
1280
1283
q.wait();
1281
1284
1285
+ std::cout << "numa_available " << numa_available() << std::endl;
1286
+ std::cout << "numa_num_configured_nodes " << numa_num_configured_nodes() << std::endl;
1287
1288
//AdaptiveCpp_target_numa_node is only availble on the OpenMP backend.
1289
//Using the property with any other backend should have no effect.
1290
//Verify with numa_available() that the NUMA node are accessible,
0 commit comments