Skip to content

Commit

Permalink
rename copy! to copyto! in README (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
AStupidBear authored Jun 10, 2020
1 parent 52c873a commit 8308915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ julia> @mpi_do man println(r[2][1:5])
```jl
@mpi_do man A = Elemental.DistMatrix(Float32)
@mpi_do man B = Elemental.DistMatrix(Float32)
@mpi_do man copy!(A, Float32[2 1; 1 2])
@mpi_do man copy!(B, Float32[4, 5])
@mpi_do man copyto!(A, Float32[2 1; 1 2])
@mpi_do man copyto!(B, Float32[4, 5])
```

Run distributed ridge regression ` ½|A*X-B|₂² + λ|X|₂²`
Expand Down

0 comments on commit 8308915

Please sign in to comment.