We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45f8c6 commit e401e1aCopy full SHA for e401e1a
2 files changed
.github/workflows/conda-package.yml
@@ -509,7 +509,7 @@ jobs:
509
runs-on: ${{ matrix.runner }}
510
strategy:
511
matrix:
512
- python: ['3.11']
+ python: ['3.14']
513
experimental: [false]
514
runner: [ubuntu-22.04]
515
continue-on-error: ${{ matrix.experimental }}
examples/python/usm_operations.py
@@ -41,6 +41,7 @@ def usm_allocation():
41
print(f"USM-host buffer allocated with size: {len(mh)}")
42
43
# specify alignment
44
+ # TODO: add alignment check
45
mda = dpmem.MemoryUSMDevice(128, alignment=16)
46
print(f"16-byte aligned USM-device buffer allocated with size: {len(mda)}")
47
0 commit comments