We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392c11d commit 2060c9dCopy full SHA for 2060c9d
2 files changed
.github/workflows/conda-package.yml
@@ -495,7 +495,7 @@ jobs:
495
runs-on: ${{ matrix.runner }}
496
strategy:
497
matrix:
498
- python: ['3.11']
+ python: ['3.14']
499
experimental: [false]
500
runner: [ubuntu-latest]
501
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