Skip to content
This repository was archived by the owner on Mar 30, 2022. It is now read-only.

Commit 0cc0bf1

Browse files
authored
Update ⊗ to matmul to reflect an API change.
1 parent 9f12351 commit 0cc0bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import TensorFlow
2121
var x = Tensor<Float>([[1, 2], [3, 4]])
2222

2323
for i in 1...5 {
24-
x += x x
24+
x += matmul(x, x)
2525
}
2626

2727
print(x)

0 commit comments

Comments
 (0)