Skip to content

Commit 6184ca5

Browse files
committed
Small updates
1 parent 6d3a22d commit 6184ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensors/linalg.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ function exp!(t::TensorMap)
431431
domain(t) == codomain(t) ||
432432
error("Exponential of a tensor only exist when domain == codomain.")
433433
for (c, b) in blocks(t)
434-
copy!(b, exp!(b))
434+
copy!(b, LinearAlgebra.exp!(b))
435435
end
436436
return t
437437
end

0 commit comments

Comments
 (0)