We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2968c21 commit ffb3b04Copy full SHA for ffb3b04
tests/conftest.py
@@ -54,8 +54,8 @@ def pytest_collection_modifyitems(config, items):
54
current_queue_is_cpu = dpnp.dpnp_queue_is_cpu()
55
print("")
56
print(f"DPNP current queue is CPU: {current_queue_is_cpu}")
57
- print(f"DPNP version: {dpnp.__version__}")
58
- print(f"NumPy version: {numpy.__version__}")
+ print(f"DPNP version: {dpnp.__version__}, location: {dpnp}")
+ print(f"NumPy version: {numpy.__version__}, location: {numpy}")
59
print(f"Python version: {sys.version}")
60
61
if not current_queue_is_cpu or os.getenv('DPNP_QUEUE_GPU') == '1':
0 commit comments