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 d280393 commit 3e92e68Copy full SHA for 3e92e68
conda-recipe/run_test.sh
@@ -37,4 +37,5 @@ set -e
37
38
$PYTHON -c "import dpnp; print(dpnp.__version__)"
39
$PYTHON -m dpctl -f
40
-$PYTHON -m pytest -ra -sv --pyargs dpnp
+# $PYTHON -m pytest -ra -sv --pyargs dpnp
41
+timeout --signal=SIGINT 30m gdb --batch -ex "run" --ex "thread apply all bt" --ex "quit" --args "$PYTHON" -m pytest -ra -sv --pyargs dpnp
dpnp/__init__.py
@@ -30,7 +30,7 @@
30
mypath = os.path.dirname(os.path.realpath(__file__))
31
32
# workaround against hanging in OneMKL calls and in DPCTL
33
-# os.environ.setdefault("SYCL_QUEUE_THREAD_POOL_SIZE", "6")
+os.environ.setdefault("SYCL_QUEUE_THREAD_POOL_SIZE", "6")
34
35
import dpctl
36
0 commit comments