Utils

Utility functions that do not need any mirheo coordinator. Most of these functions are wrapped by the __main__.py file and can be called directly from the command line:

python -m mirheo --help

Summary

get_all_compile_options() Return all compile time options used in the current installation in the form of a dictionary.
get_compile_option(key) Fetch a given compile time option currently in use.

Details

get_all_compile_options() → Dict[str, str]

Return all compile time options used in the current installation in the form of a dictionary.

get_compile_option(key: str) → str

Fetch a given compile time option currently in use. :param key: the option name.

Available names can be found from the get_all_compile_options command.