"src/targets/gpu/vscode:/vscode.git/clone" did not exist on "0e17a72403fe899b0c0c40dc1fe625c416d45ca1"
schedule_model.hpp 1.57 KB
Newer Older
Paul's avatar
Paul committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MIGRAPHX_GUARD_SCHEDULE_MODEL_HPP
#define MIGRAPHX_GUARD_SCHEDULE_MODEL_HPP

#include <cassert>
#include <string>
#include <functional>
#include <memory>
#include <type_traits>
#include <utility>

#include <migraphx/config.hpp>
#include <migraphx/instruction_ref.hpp>
#include <vector>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

struct program;
19
using module = program;
Paul's avatar
Paul committed
20
21
22
23
24
25
26
27
28
29
struct operation;

#ifdef DOXYGEN

/// An interface for target-dependent model for the scheduler
struct schedule_model
{
    /// Get the number of concurrent instruction allowed
    std::size_t concurrency() const;
    /// Schedule a concurrent instruction
30
    void sched(module& p, instruction_ref ins, std::size_t n) const;
Paul's avatar
Paul committed
31
    // Insert necessary waits before an instruction
32
    void wait(module& p, instruction_ref ins, std::size_t wait_id) const;
Paul's avatar
Paul committed
33
    // Insert necessary records after an instruction
34
    void record(module& p, instruction_ref ins, std::size_t wait_id) const;
Paul's avatar
Paul committed
35
36
37
38
39
40
41
42
43
    /// Compute weights for an operation
    std::size_t weight(const operation& op) const;
};

#else

<%
interface('schedule_model',
    virtual('concurrency', returns='std::size_t', const=True),
44
45
46
    virtual('sched', p='module&', ins='instruction_ref', n='std::size_t', const=True),
    virtual('wait', p='module&', ins='instruction_ref', wait_id='std::size_t', const=True),
    virtual('record', p='module&', ins='instruction_ref', wait_id='std::size_t', const=True),
Paul's avatar
Paul committed
47
48
49
50
51
52
53
54
55
56
    virtual('weight', returns='std::size_t', op='const operation&', const=True)
)
%>

#endif

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx

#endif