Skip to content

Commit f349c19

Browse files
boileauminducer
authored andcommitted
Fix typo in check_transpose (#890)
1 parent 0d6aa3d commit f349c19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/transpose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def check_transpose():
147147

148148
rng = np.random.default_rng()
149149
source = rng.random((size, size), dtype=np.float32)
150-
result = transpose_using_cl(ctx, queue, source, NaiveTranspose)
150+
result = transpose_using_cl(ctx, queue, source, cls)
151151

152152
err = source.T - result
153153
err_norm = la.norm(err)

0 commit comments

Comments
 (0)