Skip to content

Commit f2db0a2

Browse files
committed
Fix
1 parent 31abcb3 commit f2db0a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/intrinsics.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ kernel on the host.
105105
```
106106
As well as the on-device functionality.
107107
"""
108-
struct KIKernel{Backend, BKern}
109-
backend::Backend
110-
kern::BKern
108+
struct KIKernel{B, Kern}
109+
backend::B
110+
kern::Kern
111111
end
112112

113113
"""
@@ -156,5 +156,5 @@ Used for certain algorithm optimizations.
156156
```
157157
As well as the on-device functionality.
158158
"""
159-
multiprocessor_count(::Backend) = 0
159+
multiprocessor_count(_) = 0
160160
end

0 commit comments

Comments
 (0)