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

ParmParse: pretty_print_table #417

Merged
merged 1 commit into from
Mar 5, 2025

Conversation

ax3l
Copy link
Member

@ax3l ax3l commented Mar 4, 2025

Print to python output.

Print to python output.
@ax3l ax3l added the enhancement New feature or request label Mar 4, 2025
@ax3l ax3l requested review from atmyers and WeiqunZhang March 4, 2025 23:18
@ax3l
Copy link
Member Author

ax3l commented Mar 4, 2025

@WeiqunZhang @atmyers it would also be nice to implement a .to_dict() method for ParmParse, but I do not know how to automatically find out if something is a float/int/str attribute. Any idea how we could systematically guess scalar/array float/int/str type of each PP_Entry of ParmParse?
Do we store type hints once a user/program adds a value into ParmParse?

@ax3l ax3l requested a review from EZoni March 4, 2025 23:28
@WeiqunZhang
Copy link
Member

The values in PP_Entry are strings. A value of say 3 can be interpreted as either bool, int, long, float, or double, as long as it's convertible.

@ax3l
Copy link
Member Author

ax3l commented Mar 4, 2025

Yep, I wouldn't know if there is a sensible order (hierarchy) to cast them. Could we simply store a type hint as well? Whenever a value gets added in the first place we know the type, don't we?

Update: ah no, not if we get it from CLI or a text file of course 😅 But for anything programmatically added (i.e., C++ & Python added) we could actually store a hint with.

@ax3l ax3l merged commit ff2bce8 into AMReX-Codes:development Mar 5, 2025
8 checks passed
@ax3l ax3l deleted the topic-pp-pretty-print branch March 5, 2025 00:22
@ax3l ax3l mentioned this pull request Mar 5, 2025
5 tasks
WeiqunZhang pushed a commit to AMReX-Codes/amrex that referenced this pull request Mar 20, 2025
## Summary

Today, we use the `ParmParse` object not only anymore to read text-based
key-value pairs from input files and CLI options, but additionally and
sometimes exclusively populate it heavily from the C++ and Python APIs
directly.

This proposes a concept to store the type of the latest `add` with each
entry, which can help to expose `ParmParse` options, e.g., when
exporting them to Python dictionaries and other file formats (YAML,
TOML, JSON, XML, etc.). When a typehint is found, we can cast to the
correct type automatically for the value, instead of returning a string.

## Additional background

AMReX-Codes/pyamrex#417 (comment)

## Checklist

The proposed changes:
- [ ] fix a bug or incorrect behavior in AMReX
- [x] add new capabilities to AMReX
- [ ] changes answers in the test suite to more than roundoff level
- [ ] are likely to significantly affect the results of downstream AMReX
users
- [ ] include documentation in the code and/or rst files, if appropriate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants