marker.cpp 1.68 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <migraphx/program.hpp>
#include <migraphx/ref/target.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/marker.hpp>
#include <migraphx/instruction.hpp>

#include "test.hpp"

struct mock_marker
{
    std::shared_ptr<std::stringstream> ss = std::make_shared<std::stringstream>();

    void mark_start(migraphx::instruction_ref ins_ref)
    {
        std::string text = "Mock marker instruction start:" + ins_ref->name();
        (*ss) << text;
    }
    void mark_stop(migraphx::instruction_ref)
    {
        std::string text = "Mock marker instruction stop.";
        (*ss) << text;
    }
    void mark_start(const migraphx::program&)
    {
        std::string text = "Mock marker program start.";
        (*ss) << text;
    }
    void mark_stop(const migraphx::program&)
    {
        std::string text = "Mock marker program stop.";
        (*ss) << text;
    }
};

TEST_CASE(marker)
{
    migraphx::program p;
    auto* mm = p.get_main_module();

    auto one = mm->add_literal(1);
    auto two = mm->add_literal(2);
    mm->add_instruction(migraphx::make_op("add"), one, two);
    p.compile(migraphx::ref::target{});

    mock_marker temp_marker;
    p.mark({}, temp_marker);

    std::string output = temp_marker.ss->str();
    EXPECT(migraphx::contains(output, "Mock marker instruction start:@literal"));
    EXPECT(migraphx::contains(output, "Mock marker instruction start:ref::op"));
    EXPECT(migraphx::contains(output, "Mock marker instruction stop."));
    EXPECT(migraphx::contains(output, "Mock marker program start."));
    EXPECT(migraphx::contains(output, "Mock marker program stop."));
}

int main(int argc, const char* argv[]) { test::run(argc, argv); }