Skip to content

Commit

Permalink
add ranks filter
Browse files Browse the repository at this point in the history
(cherry picked from commit dd72250)
  • Loading branch information
nicolemarsaglia authored and cyrush committed Aug 3, 2024
1 parent fa9bc6f commit 95995ab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1222,6 +1222,7 @@ VTKHAddRanks::verify_params(const conduit::Node &params,
std::vector<std::string> valid_paths;
valid_paths.push_back("output");
valid_paths.push_back("topology");

std::string surprises = surprise_check(valid_paths, params);

if(surprises != "")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ class ASCENT_API VTKHAddDomains : public ::flow::Filter
VTKHAddDomains();
virtual ~VTKHAddDomains();


virtual void declare_interface(conduit::Node &i);
virtual bool verify_params(const conduit::Node &params,
conduit::Node &info);
Expand Down
6 changes: 3 additions & 3 deletions src/tests/ascent/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ set(BASIC_TESTS t_ascent_smoke
t_ascent_triggers
t_ascent_blueprint_reductions
t_ascent_sampling
t_ascent_uniform_grid
t_ascent_mir
t_ascent_uniform_grid
t_ascent_mir
t_ascent_hola)

set(DEVICE_TESTS t_ascent_execution_policies
Expand Down Expand Up @@ -99,7 +99,7 @@ set(MPI_TESTS t_ascent_mpi_smoke
t_ascent_mpi_slice
t_ascent_mpi_uniform_grid
t_ascent_mpi_vtk_file_extract
t_ascent_mpi_add_ranks
t_ascent_mpi_add_ranks
t_ascent_mpi_unique_ids)

# t_ascent_hola_mpi uses 8 mpi tasks, so its added manually
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ascent/t_ascent_mpi_add_ranks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ using namespace ascent;
int NUM_DOMAINS = 8;

//-----------------------------------------------------------------------------
TEST(ascent_mpi_add_mpi_ranks_2d, test_mpi_add_mpi_ranks_2d)
TEST(ascent_mpi_add_mpi_ranks, test_mpi_add_mpi_ranks)
{
//
//Set Up MPI
Expand Down

0 comments on commit 95995ab

Please sign in to comment.