Skip to content

Commit

Permalink
updated readme (#12)
Browse files Browse the repository at this point in the history
- bumped version to 0.0.3
  • Loading branch information
jrmadsen authored May 12, 2021
1 parent cff2ca4 commit 4fe4421
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ with numpy and cupy arrays:
import kokkos
import numpy as np

view = kokkos.view([2, 2], dtype=kokkos.double, space=kokkos.CudaUVMSpace,
layout=Kokkos.LayoutRight, trait=kokkos.RandomAccess,
dynamic=False)
view = kokkos.array([2, 2], dtype=kokkos.double, space=kokkos.CudaUVMSpace,
layout=Kokkos.LayoutRight, trait=kokkos.RandomAccess,
dynamic=False)

arr = np.array(view, copy=False)
```
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2
0.0.3

0 comments on commit 4fe4421

Please sign in to comment.