 |
Ginkgo
Generated from pipelines/2171896597 branch based on develop. Ginkgo version 1.11.0
A numerical linear algebra library targeting many-core architectures
|
5 #ifndef GKO_PUBLIC_CORE_LOG_PAPI_HPP_
6 #define GKO_PUBLIC_CORE_LOG_PAPI_HPP_
9 #include <ginkgo/config.hpp>
22 #include <ginkgo/core/base/polymorphic_object.hpp>
23 #include <ginkgo/core/log/logger.hpp>
31 static std::mutex papi_count_mutex;
58 template <
typename ValueType = default_precision>
60 GKO_ASSERT_SUPPORTED_VALUE_TYPE;
65 const size_type& num_bytes)
const override;
69 const uintptr& location)
const override;
72 const uintptr& location)
const override;
75 const uintptr& location)
const override;
80 const size_type& num_bytes)
const override;
85 const size_type& num_bytes)
const override;
123 const LinOp* x)
const override;
126 const LinOp* x)
const override;
130 const LinOp* x)
const override;
134 const LinOp* x)
const override;
138 const LinOp* input)
const override;
142 const LinOp* output)
const override;
146 const LinOp* residual,
const LinOp* residual_norm,
147 const LinOp* solution,
const uint8& stopping_id,
149 const bool& one_changed,
const bool& all_converged)
const override;
154 const LinOp* residual,
155 const LinOp* residual_norm,
156 const LinOp* implicit_resnorm_sq,
158 bool stopped)
const override;
161 "Please use the version with the additional stopping "
166 const LinOp* residual_norm)
const override;
169 "Please use the version with the additional stopping "
174 const LinOp* residual_norm,
175 const LinOp* implicit_sq_residual_norm)
const override;
182 GKO_DEPRECATED(
"use single-parameter create")
198 return std::shared_ptr<Papi>(
new Papi(enabled_events), [](
auto logger) {
201 papi_sde_shutdown(handle);
218 const papi_handle_t
get_handle()
const {
return papi_handle; }
221 GKO_DEPRECATED(
"use single-parameter constructor")
225 :
Papi(enabled_events)
230 : Logger(enabled_events)
232 std::ostringstream os;
234 std::lock_guard<std::mutex> guard(papi_count_mutex);
235 os <<
"ginkgo" << papi_logger_count;
237 papi_handle = papi_sde_init(name.c_str());
242 template <
typename Po
interType>
245 papi_queue(papi_handle_t* handle,
const char* counter_name)
246 : handle{handle}, counter_name{counter_name}
251 for (
auto e : data) {
252 std::ostringstream oss;
253 oss << counter_name <<
"::" << e.first;
254 papi_sde_unregister_counter(*handle, oss.str().c_str());
259 size_type& get_counter(
const PointerType* ptr)
261 const auto tmp = reinterpret_cast<uintptr>(ptr);
262 if (data.find(tmp) == data.end()) {
265 auto& value = data[tmp];
267 std::ostringstream oss;
268 oss << counter_name <<
"::" << tmp;
269 papi_sde_register_counter(*handle, oss.str().c_str(),
270 PAPI_SDE_RO | PAPI_SDE_INSTANT,
271 PAPI_SDE_long_long, &value);
277 papi_handle_t* handle;
278 const char* counter_name;
279 std::map<std::uintptr_t, size_type> data;
283 mutable papi_queue<Executor> allocation_started{&papi_handle,
284 "allocation_started"};
285 mutable papi_queue<Executor> allocation_completed{&papi_handle,
286 "allocation_completed"};
287 mutable papi_queue<Executor> free_started{&papi_handle,
"free_started"};
288 mutable papi_queue<Executor> free_completed{&papi_handle,
"free_completed"};
289 mutable papi_queue<Executor> copy_started_from{&papi_handle,
290 "copy_started_from"};
291 mutable papi_queue<Executor> copy_started_to{&papi_handle,
293 mutable papi_queue<Executor> copy_completed_from{&papi_handle,
294 "copy_completed_from"};
295 mutable papi_queue<Executor> copy_completed_to{&papi_handle,
296 "copy_completed_to"};
298 mutable papi_queue<Executor> operation_launched{&papi_handle,
299 "operation_launched"};
300 mutable papi_queue<Executor> operation_completed{&papi_handle,
301 "operation_completed"};
303 mutable papi_queue<Executor> polymorphic_object_create_started{
304 &papi_handle,
"polymorphic_object_create_started"};
305 mutable papi_queue<Executor> polymorphic_object_create_completed{
306 &papi_handle,
"polymorphic_object_create_completed"};
307 mutable papi_queue<Executor> polymorphic_object_copy_started{
308 &papi_handle,
"polymorphic_object_copy_started"};
309 mutable papi_queue<Executor> polymorphic_object_copy_completed{
310 &papi_handle,
"polymorphic_object_copy_completed"};
311 mutable papi_queue<Executor> polymorphic_object_move_started{
312 &papi_handle,
"polymorphic_object_move_started"};
313 mutable papi_queue<Executor> polymorphic_object_move_completed{
314 &papi_handle,
"polymorphic_object_move_completed"};
315 mutable papi_queue<Executor> polymorphic_object_deleted{
316 &papi_handle,
"polymorphic_object_deleted"};
318 mutable papi_queue<LinOpFactory> linop_factory_generate_started{
319 &papi_handle,
"linop_factory_generate_started"};
320 mutable papi_queue<LinOpFactory> linop_factory_generate_completed{
321 &papi_handle,
"linop_factory_generate_completed"};
323 mutable papi_queue<LinOp> linop_apply_started{&papi_handle,
324 "linop_apply_started"};
325 mutable papi_queue<LinOp> linop_apply_completed{&papi_handle,
326 "linop_apply_completed"};
327 mutable papi_queue<LinOp> linop_advanced_apply_started{
328 &papi_handle,
"linop_advanced_apply_started"};
329 mutable papi_queue<LinOp> linop_advanced_apply_completed{
330 &papi_handle,
"linop_advanced_apply_completed"};
332 mutable std::map<std::uintptr_t, void*> criterion_check_completed;
334 mutable papi_queue<LinOp> iteration_complete{&papi_handle,
335 "iteration_complete"};
338 std::string name{
"ginkgo"};
339 papi_handle_t papi_handle;
347 #endif // GKO_HAVE_PAPI_SDE
348 #endif // GKO_PUBLIC_CORE_LOG_PAPI_HPP_
void on_iteration_complete(const LinOp *solver, const LinOp *b, const LinOp *x, const size_type &num_iterations, const LinOp *residual, const LinOp *residual_norm, const LinOp *implicit_resnorm_sq, const array< stopping_status > *status, bool stopped) const override
Register the iteration_complete event which logs every completed iterations.
std::uint8_t uint8
8-bit unsigned integral type.
Definition: types.hpp:119
void on_linop_advanced_apply_completed(const LinOp *A, const LinOp *alpha, const LinOp *b, const LinOp *beta, const LinOp *x) const override
LinOp's advanced apply completed event.
Definition: lin_op.hpp:117
void on_operation_completed(const Executor *exec, const Operation *operation) const override
Executor's operation completed event (method run).
void on_operation_launched(const Executor *exec, const Operation *operation) const override
Executor's operation launched event (method run).
A PolymorphicObject is the abstract base for all "heavy" objects in Ginkgo that behave polymorphicall...
Definition: polymorphic_object.hpp:52
void on_polymorphic_object_create_started(const Executor *, const PolymorphicObject *po) const override
PolymorphicObject's create started event.
void on_allocation_completed(const Executor *exec, const size_type &num_bytes, const uintptr &location) const override
Executor's allocation completed event.
void on_linop_factory_generate_started(const LinOpFactory *factory, const LinOp *input) const override
LinOp Factory's generate started event.
Stopping criterion events.
std::uintptr_t uintptr
Unsigned integer type capable of holding a pointer to void.
Definition: types.hpp:142
void on_polymorphic_object_move_completed(const Executor *exec, const PolymorphicObject *from, const PolymorphicObject *to) const override
PolymorphicObject's move completed event.
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:90
void on_polymorphic_object_copy_started(const Executor *exec, const PolymorphicObject *from, const PolymorphicObject *to) const override
PolymorphicObject's copy started event.
static std::shared_ptr< Papi > create(std::shared_ptr< const gko::Executor >, const Logger::mask_type &enabled_events=Logger::all_events_mask)
Creates a Papi Logger.
Definition: papi.hpp:183
void on_copy_completed(const Executor *from, const Executor *to, const uintptr &location_from, const uintptr &location_to, const size_type &num_bytes) const override
Executor's copy completed event.
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
const std::string get_handle_name() const
Returns the unique name of this logger, which can be used in the PAPI_read() call.
Definition: papi.hpp:211
static std::shared_ptr< Papi > create(const Logger::mask_type &enabled_events=Logger::all_events_mask)
Creates a Papi Logger.
Definition: papi.hpp:195
An array is a container which encapsulates fixed-sized arrays, stored on the Executor tied to the arr...
Definition: array.hpp:26
void on_copy_started(const Executor *from, const Executor *to, const uintptr &location_from, const uintptr &location_to, const size_type &num_bytes) const override
Executor's copy started event.
static constexpr mask_type all_events_mask
Bitset Mask which activates all events.
Definition: logger.hpp:87
void on_polymorphic_object_copy_completed(const Executor *exec, const PolymorphicObject *from, const PolymorphicObject *to) const override
PolymorphicObject's copy completed event.
const papi_handle_t get_handle() const
Returns the corresponding papi_handle_t for this logger.
Definition: papi.hpp:218
void on_linop_advanced_apply_started(const LinOp *A, const LinOp *alpha, const LinOp *b, const LinOp *beta, const LinOp *x) const override
LinOp's advanced apply started event.
Definition: logger.hpp:74
void on_linop_factory_generate_completed(const LinOpFactory *factory, const LinOp *input, const LinOp *output) const override
LinOp Factory's generate completed event.
Papi is a Logger which logs every event to the PAPI software.
Definition: papi.hpp:59
void on_polymorphic_object_move_started(const Executor *exec, const PolymorphicObject *from, const PolymorphicObject *to) const override
PolymorphicObject's move started event.
The Criterion class is a base class for all stopping criteria.
Definition: criterion.hpp:36
void on_polymorphic_object_deleted(const Executor *exec, const PolymorphicObject *po) const override
PolymorphicObject's deleted event.
void on_allocation_started(const Executor *exec, const size_type &num_bytes) const override
Executor's allocation started event.
void on_criterion_check_completed(const stop::Criterion *criterion, const size_type &num_iterations, const LinOp *residual, const LinOp *residual_norm, const LinOp *solution, const uint8 &stopping_id, const bool &set_finalized, const array< stopping_status > *status, const bool &one_changed, const bool &all_converged) const override
stop::Criterion's check completed event.
void on_polymorphic_object_create_completed(const Executor *exec, const PolymorphicObject *input, const PolymorphicObject *output) const override
PolymorphicObject's create completed event.
Kernel execution and data movement.
The first step in using the Ginkgo library consists of creating an executor.
Definition: executor.hpp:615
void on_free_started(const Executor *exec, const uintptr &location) const override
Executor's free started event.
void on_linop_apply_completed(const LinOp *A, const LinOp *b, const LinOp *x) const override
LinOp's apply completed event.
A LinOpFactory represents a higher order mapping which transforms one linear operator into another.
Definition: lin_op.hpp:384
void on_linop_apply_started(const LinOp *A, const LinOp *b, const LinOp *x) const override
LinOp's apply started event.
Operations can be used to define functionalities whose implementations differ among devices.
Definition: executor.hpp:258
void on_free_completed(const Executor *exec, const uintptr &location) const override
Executor's free completed event.