Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task/2025 3 27 1428 path enhancements rollup issue fmt path strings #1496

Open
wants to merge 24 commits into
base: develop
Choose a base branch
from

Conversation

emily-howell
Copy link
Member

No description provided.

@emily-howell emily-howell requested a review from cyrush March 28, 2025 20:42
@emily-howell emily-howell linked an issue Mar 28, 2025 that may be closed by this pull request
Copy link
Member

@cyrush cyrush left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great!

Can we add some tests for path gen strings in:

https://github.com/Alpine-DAV/ascent/blob/develop/src/tests/ascent/t_ascent_utils.cpp

There we can try for various patterns without a full ascent pipeline execution.
We can also test what happens with mangled pattern (which folks will give us)

A new place where we need path expansion in the legacy vtk extract:

For the family case, we should think about how to handle if the file exists on disk.
That is the case we want to check only with rank 0.

I think s_file_family_map will be the same on all tasks for our use cases.

std::smatch match;
std::string result_string = path_string;

std::regex valid_int_format(R"(^\d*d$)");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these look good to me, as a gift to our future selves, can you add a comment about the types of patterns these will catch?

@cyrush cyrush mentioned this pull request Mar 31, 2025
@emily-howell
Copy link
Member Author

@cyrush I think I have addressed all your feedback but this is still a WIP:

  • Added a bunch of tests to t_ascent_utils.cpp
  • Added path expansion to legacy vtk extract
  • Checking if the file pattern exists already in the directory and determine the family value from that
  • Added some comments about what the regular expressions do

Outstanding:

  • Some tests are failing still so I will have to hunt down what is happening in each of them

@emily-howell emily-howell self-assigned this Apr 1, 2025
Copy link
Member

@cyrush cyrush left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good thanks for all the new tests!
Some suggestions about how to support the mpi case.

std::regex search_pattern(search_pattern_str);

// Checking the directory contents for any filenames that match
std::vector<std::string> contents;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we only want to check the dir contents on rank 0

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I opted to protect that entire chunk where contents is used for just rank 0 and then afterwords I broadcast the updated family value. Alternatively, I could set the contents variable and then pass that into a conduit node and broadcast that node. Let me know if you want me to make that change :)

return result_string;
}

int check_directory_for_family_value(const std::string& path_string, int family_value) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should pass int mpi_comm_id id here.

We can use a strategy like this to handle mpi vs non mpi:

#ifdef ASCENT_MPI_ENABLED

}

std::string expand_path_special_variables(const std::string &path_string,
int counter,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we may have to pass mpi comm here as well

Copy link
Member

@cyrush cyrush left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, thanks for the adjustments.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

path enhancements rollup issue
2 participants