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 946bab9 commit 194ab2dCopy full SHA for 194ab2d
.github/workflows/conda-package.yml
@@ -162,6 +162,14 @@ jobs:
162
. $CONDA/etc/profile.d/conda.sh
163
conda activate test_dpctl
164
python -c "import dpctl; dpctl.lsplatform(verbosity=2)"
165
+ - name: Install gdb
166
+ run: |
167
+ sudo apt-get install -y gdb
168
+ - name: Run test_elementwise under gdb
169
170
+ . $CONDA/etc/profile.d/conda.sh
171
+ conda activate test_dpctl
172
+ gdb --batch -ex r -ex 'info sharedlibrary' -ex 'set print elements 1000' -ex bt --args ${PYTHON} -m pytest -q -ra --disable-warnings --pyargs dpctl.tests.test_tensor_elementwise::test_cos_order -vv
173
- name: Run tests
174
run: |
175
0 commit comments