Skip to content

Commit

Permalink
Log an explanatory message for quest_point_in_cell_mfem (#1250)
Browse files Browse the repository at this point in the history
* Update to December 12 release of vcpkg

* Log problem size parameters before and after the quest_point_in_cell_mfem test
  • Loading branch information
agcapps committed Dec 21, 2023
1 parent e648b86 commit ede5e02
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .uberenv_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"spack_packages_path": ["scripts/spack/radiuss-spack-configs/packages", "scripts/spack/packages"],
"spack_concretizer": "clingo",
"vcpkg_url": "https://github.com/microsoft/vcpkg",
"vcpkg_commit": "6f7ffeb18f99796233b958aaaf14ec7bd4fb64b2",
"vcpkg_commit": "c8696863d371ab7f46e213d8f5ca923c4aef2a00",
"vcpkg_triplet": "x64-windows",
"vcpkg_ports_path": "scripts/vcpkg_ports"
}
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
- quest's `SamplingShaper` now properly handles material names containing underscores
- quest's `SamplingShaper` can now be used with an mfem that is configured for (GPU) devices
- primal's `Polygon` area computation in 3D previously only worked when the polygon was aligned with the XY-plane. It now works for arbitrary polygons.
- Upgrades our `vcpkg` usage for automated Windows builds of our TPLs to its [2023.12.12 release](https://github.com/microsoft/vcpkg/releases/tag/2023.12.12)

## [Version 0.8.1] - Release date 2023-08-16

Expand Down
19 changes: 19 additions & 0 deletions src/axom/quest/tests/quest_point_in_cell_mfem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1676,6 +1676,22 @@ TYPED_TEST(PointInCell3DTest, pic_curved_refined_hex_jittered)
this->testIsoGridPointsOnMesh(meshTypeStr);
}

void printSummary()
{
#ifdef AXOM_DEBUG
const std::string buildtype {"DEBUG"};
#else
const std::string buildtype {"RELEASE"};
#endif
SLIC_INFO(
axom::fmt::format("{} build; running {} test points with {} refinements; "
"grid resolution factor {}",
buildtype,
NUM_TEST_PTS,
NREFINE,
TEST_GRID_RES));
}

int main(int argc, char* argv[])
{
int result = 0;
Expand All @@ -1685,6 +1701,9 @@ int main(int argc, char* argv[])

std::srand(SRAND_SEED);

printSummary();
result = RUN_ALL_TESTS();
printSummary();

return result;
}

0 comments on commit ede5e02

Please sign in to comment.