Skip to content

Commit d8ed713

Browse files
committed
misc fixes
1 parent cfdfd8c commit d8ed713

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cuda_bindings/docs/build_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fi
1717
# version selector or directory structure.
1818
if [[ -z "${SPHINX_CUDA_BINDINGS_VER}" ]]; then
1919
export SPHINX_CUDA_BINDINGS_VER=$(python -c "from importlib.metadata import version; \
20-
ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
20+
ver = '.'.join(str(version('cuda-bindings')).split('.')[:3]); \
2121
print(ver)" \
2222
| awk -F'+' '{print $1}')
2323
fi

cuda_bindings/docs/source/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ argument on either host or device. Since we already prepared each of our argumen
205205
construction of our final contiguous array is done by retrieving the `XX.ctypes.data`
206206
of each kernel argument.
207207

208-
```{code-cell} python
208+
```python
209209
args = [a, dX, dY, dOut, n]
210210
args = np.array([arg.ctypes.data for arg in args], dtype=np.uint64)
211211
```

0 commit comments

Comments
 (0)