Skip to content

Commit

Permalink
ins
Browse files Browse the repository at this point in the history
  • Loading branch information
Bittens authored and Bittens committed Feb 20, 2023
1 parent 3f5d388 commit 32a6df2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ There are many mathematical operations executed which allocate memory while eval
```julia
import LinearAlgebra, AltInplaceOpsInterface

LinearAlgebra.mul!(a::T, b::Float64)
LinearAlgebra.mul!(a:T, b::T, c::Float64)
AltInplaceOpsInterface.add!(a::T, b::T)
AltInplaceOpsInterface.add!(a::T, b::Float64)
AltInplaceOpsInterface.minus!(a::T, b::Float64)
AltInplaceOpsInterface.minus!(a::T, b::T)
AltInplaceOpsInterface.pow!(a::T, b::Float64)
LinearAlgebra.mul!(a::T, b::Float64)
LinearAlgebra.mul!(a:T, b::T, c::Float64)
AltInplaceOpsInterface.pow!(a::T, b::Float64)
```

For Matrix{Float64} this interface is already implemented.
Expand Down

0 comments on commit 32a6df2

Please sign in to comment.