Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
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
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
### Fixed
- Primal: Fixes signs of `compute_moments` to match orientation convention in `primal::evaluate_area_integral`
- Quest: Improves error handling/reporting when loading an invalid c2c contour
- Quest: Sampling-based MFEM shaping now falls back to chunked local mass assembly/solve for large
meshes instead of overflowing `mfem::DenseTensor` size calculations when caching full
`dofs x dofs x NE` tensors.
- Primal: Improves reproducibility of 3D GWN methods by removing some sources of randomness
- Core: ArrayView assigments/copies now copy the stride
- Core: Array construction from strided ArrayView now correctly copies the strided elements
Expand Down
3 changes: 2 additions & 1 deletion src/axom/quest/SamplingShaper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,8 @@ void SamplingShaper::computeVolumeFractionsForMaterial(const std::string& matFie
matField,
m_volfracOrder,
m_samplingResolution,
m_quadratureType);
m_quadratureType,
m_execPolicy);
return;
}
#endif
Expand Down
Loading
Loading