|
| template<typename T> |
| std::optional< T > | read_env (std::string_view varname) |
| | Wrapper arround get_env to get optional envariable.
|
| template<typename T> |
| T | read_env_or (std::string_view varname, T vdefault) |
| | Wrapper arround get_env to get envariable with fallback to default.
|
| template<typename T> |
| bool | set_local_env (std::string_view varname, T val) |
| | Wrapper arround set_env.
|
| template<typename FunctorType, typename Tag = int> |
| Kokkos::TeamPolicy< ComputeSpace, Tag > | get_policy (const FunctorType &f, std::size_t range, bool reduce=false) |
| template<typename Tag = int> |
| Kokkos::TeamPolicy< ComputeSpace, Tag > | get_policy (std::size_t range, bool reduce=false) |
| template<typename Tag = void> |
| Kokkos::TeamPolicy< ComputeSpace, Tag > | get_policy_team (std::size_t league_size=1) |
| template<> |
| bool | read_env_or (std::string_view varname, bool vdefault) |
| template<> |
| bool | set_local_env< std::string > (std::string_view varname, std::string val) |
| template<> |
| bool | set_local_env< bool > (std::string_view varname, bool val) |