Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3646b49
feat: add a simple ArrayView
joshessman-llnl Oct 13, 2021
09ca230
cleanup: remove Array external data constructors
joshessman-llnl Oct 13, 2021
b912a67
cleanup: remove remaining external storage stuff from Array
joshessman-llnl Oct 13, 2021
80d075d
examples: fix containers example to use ArrayView
joshessman-llnl Oct 13, 2021
eb70b51
docs: update release notes
joshessman-llnl Oct 14, 2021
6f61aa4
cleanup: move array classes into their own files
joshessman-llnl Oct 14, 2021
ca1f6cb
Merge branch 'refactor/essman/reorg_array' into feature/essman/arrayview
joshessman-llnl Oct 14, 2021
d223791
fix: add temporary getAllocID to ArrayView
joshessman-llnl Oct 14, 2021
a253a9c
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 14, 2021
6371cb6
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 14, 2021
94655b2
cleanup: update array documentation, remove duplicated nonmember ops
joshessman-llnl Oct 20, 2021
d75eedc
examples: further demonstrate iteration in core_containers_ex
joshessman-llnl Oct 20, 2021
ef5a4c4
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 20, 2021
41357ff
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 25, 2021
9e47e2d
cleanup: remove dead code
joshessman-llnl Oct 25, 2021
b38b4f1
Merge branch 'feature/essman/arrayview' of github.com:LLNL/axom into …
joshessman-llnl Oct 25, 2021
674b51e
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 25, 2021
76fd218
Merge branch 'develop' into feature/essman/arrayview
joshessman-llnl Oct 26, 2021
f9e8219
ci: no-op commit to retrigger CI
joshessman-llnl Oct 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
This capability uses a RAJA policy operate on various execution spaces (host, openmp, device).
- Quest: Adds a "shaping" example for embedding a klee specification onto an MFEM mesh
- Added Sidre function `View::clear()`.
- Core now provides an `axom::ArrayView` that provides view/indexing semantics over a raw pointer.
This replaces the external buffer logic previously provided by `axom::Array`.

### Changed
- `MFEMSidreDataCollection` now reuses FESpace/QSpace objects with the same basis
Expand Down
Loading