spla
Loading...
Searching...
No Matches
cpu_algo_callback.hpp
Go to the documentation of this file.
1/**********************************************************************************/
2/* This file is part of spla project */
3/* https://github.com/SparseLinearAlgebra/spla */
4/**********************************************************************************/
5/* MIT License */
6/* */
7/* Copyright (c) 2023 SparseLinearAlgebra */
8/* */
9/* Permission is hereby granted, free of charge, to any person obtaining a copy */
10/* of this software and associated documentation files (the "Software"), to deal */
11/* in the Software without restriction, including without limitation the rights */
12/* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell */
13/* copies of the Software, and to permit persons to whom the Software is */
14/* furnished to do so, subject to the following conditions: */
15/* */
16/* The above copyright notice and this permission notice shall be included in all */
17/* copies or substantial portions of the Software. */
18/* */
19/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR */
20/* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, */
21/* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE */
22/* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER */
23/* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, */
24/* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE */
25/* SOFTWARE. */
26/**********************************************************************************/
27
28#ifndef SPLA_CPU_ALGO_CALLBACK_HPP
29#define SPLA_CPU_ALGO_CALLBACK_HPP
30
31#include <core/dispatcher.hpp>
32#include <core/registry.hpp>
34
35namespace spla {
36
37 class Algo_callback_cpu final : public RegistryAlgo {
38 public:
39 ~Algo_callback_cpu() override = default;
40 std::string get_name() override {
41 return "callback";
42 }
43 std::string get_description() override {
44 return "call user callback function on cpu";
45 }
46 Status execute(const DispatchContext& ctx) override {
47 auto* task = dynamic_cast<ScheduleTask_callback*>(ctx.task.get());
48
49 if (task->callback) {
50 // Invoke callback if present
51 task->callback();
52 }
53
54 return Status::Ok;
55 }
56 };
57
58}// namespace spla
59
60#endif//SPLA_CPU_ALGO_CALLBACK_HPP
Status of library operation execution.
Definition cpu_algo_callback.hpp:37
~Algo_callback_cpu() override=default
std::string get_name() override
Definition cpu_algo_callback.hpp:40
std::string get_description() override
Definition cpu_algo_callback.hpp:43
Status execute(const DispatchContext &ctx) override
Definition cpu_algo_callback.hpp:46
Algorithm suitable to process schedule task based on task string key.
Definition registry.hpp:66
Callback task.
Definition schedule_tasks.hpp:64
Definition algorithm.hpp:37
Execution context of a single task.
Definition dispatcher.hpp:46
ref_ptr< ScheduleTask > task
Definition dispatcher.hpp:48