48#if defined(TIMEMORY_USER_BUNDLE_SOURCE)
53#if defined(TIMEMORY_USER_BUNDLE_SOURCE)
57# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS)
58# define TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS(NAME, VAL) \
59 TIMEMORY_INSTANTIATE_EXTERN_OPERATIONS(NAME, VAL)
62# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_STORAGE)
63# define TIMEMORY_EXTERN_USER_BUNDLE_STORAGE(...) \
64 TIMEMORY_INSTANTIATE_EXTERN_STORAGE(__VA_ARGS__)
67# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE)
68# define TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE(...) template __VA_ARGS__;
73#elif defined(TIMEMORY_USE_USER_BUNDLE_EXTERN)
77# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS)
78# define TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS(NAME, VAL) \
79 TIMEMORY_DECLARE_EXTERN_OPERATIONS(NAME, VAL)
82# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_STORAGE)
83# define TIMEMORY_EXTERN_USER_BUNDLE_STORAGE(...) \
84 TIMEMORY_DECLARE_EXTERN_STORAGE(__VA_ARGS__)
87# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE)
88# define TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE(...) extern template __VA_ARGS__;
97# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS)
98# define TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS(...)
101# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_STORAGE)
102# define TIMEMORY_EXTERN_USER_BUNDLE_STORAGE(...)
105# if !defined(TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE)
106# define TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE(...)
110#if !defined(TIMEMORY_EXTERN_USER_BUNDLE)
111# define TIMEMORY_EXTERN_USER_BUNDLE(NAME) \
112 TIMEMORY_EXTERN_USER_BUNDLE_TEMPLATE( \
113 struct tim::component::base<TIMEMORY_ESC(tim::component::NAME), void>) \
114 TIMEMORY_EXTERN_USER_BUNDLE_OPERATIONS(TIMEMORY_ESC(component::NAME), false) \
115 TIMEMORY_EXTERN_USER_BUNDLE_STORAGE(TIMEMORY_ESC(component::NAME))
118TIMEMORY_EXTERN_USER_BUNDLE(user_global_bundle)
119TIMEMORY_EXTERN_USER_BUNDLE(user_ompt_bundle)
120TIMEMORY_EXTERN_USER_BUNDLE(user_mpip_bundle)
121TIMEMORY_EXTERN_USER_BUNDLE(user_ncclp_bundle)
122TIMEMORY_EXTERN_USER_BUNDLE(user_trace_bundle)
123TIMEMORY_EXTERN_USER_BUNDLE(user_profiler_bundle)
124TIMEMORY_EXTERN_USER_BUNDLE(user_kokkosp_bundle)
126#if defined(TIMEMORY_USE_USER_BUNDLE_EXTERN)
131extern template struct user_bundle<global_bundle_idx, project::timemory>;
132extern template struct user_bundle<ompt_bundle_idx, project::timemory>;
133extern template struct user_bundle<mpip_bundle_idx, project::timemory>;
134extern template struct user_bundle<ncclp_bundle_idx, project::timemory>;
135extern template struct user_bundle<trace_bundle_idx, project::timemory>;
136extern template struct user_bundle<profiler_bundle_idx, project::timemory>;
137extern template struct user_bundle<kokkosp_bundle_idx, project::kokkosp>;
Implementation of the user_bundle component(s)
Forward declaration of user_bundle components. User-bundles are similar to the classical profiling in...
The definitions for the types in operations.
The declaration for the types for storage without definitions.