Skip to content

Commit fa9042d

Browse files
committed
TEST: Fixing blas test
1 parent 1f75d5f commit fa9042d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/simple_blas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
af.print_array(af.matmul(a,b,af.AF_MAT_NONE, af.AF_MAT_TRANS))
1919

2020
b = af.randu(5,1)
21-
af.print_array(af.dot(a,b))
21+
af.print_array(af.dot(b,b))
2222

2323
af.print_array(af.transpose(a))
2424

0 commit comments

Comments
 (0)