Skip to content

Commit 1f498ba

Browse files
auto-fixes for EOF foes (#419)
1 parent d97594a commit 1f498ba

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ BraceWrapping:
2222
SplitEmptyFunction: true
2323
SplitEmptyRecord: true
2424
SplitEmptyNamespace: true
25-
25+

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ dpctl/_sycl_device.h
9595
dpctl/_sycl_event.h
9696
dpctl/_sycl_queue.h
9797
dpctl/_sycl_queue_manager.h
98-
dpctl/memory/_memory.h
98+
dpctl/memory/_memory.h

docs/doc_versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
0.6.1
2-
latest
2+
latest

docs/docfiles/dpctl.memory_api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ DeviceBuffer provides ``__reduce__`` method to support pickling (which works by
4141
- ``copy_from_host(host_buf_obf)`` to copy content of the host buffer into memory of underlying device_buffer
4242
- ``copy_from_device(cuda_ary_obj)`` to copy device memory underlying cuda_ary_obj Python object implementing ``__cuda_array_interface__`` to the memory underlying DeviceBuffer instance.
4343

44-
RMM's methods are declared nogil.
44+
RMM's methods are declared nogil.

examples/cython/sycl_buffer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ Running on: Intel(R) Gen9 HD Graphics NEO
7777
[ 0.27170187 -23.36798583 7.31326489 -1.95121928]
7878
Running on: Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz
7979
[ 0.27170187 -23.36798583 7.31326489 -1.95121928]
80-
```
80+
```

examples/cython/sycl_direct_linkage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ Times for NumPy
5454
```
5555

5656
So the overhead of ``sycl::queue`` creation per call is roughly comparable with the time to
57-
execute the actual computation.
57+
execute the actual computation.

examples/cython/usm_memory/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Using : Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz
2626
Elapsed: 0.9255791641771793
2727
Using : Intel(R) Gen9
2828
Elapsed: 0.32811625860631466
29-
```
29+
```

0 commit comments

Comments
 (0)