jit.cpp 3.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
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
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
#include <migraphx/compile_src.hpp>
#include <migraphx/dynamic_loader.hpp>
#include <migraphx/cpp_generator.hpp>
#include <migraphx/module.hpp>
#include <migraphx/make_op.hpp>
#include <test.hpp>

// NOLINTNEXTLINE
const std::string add_42_src = R"migraphx(
extern "C" int add(int x)
{
    return x+42;
}
)migraphx";

// NOLINTNEXTLINE
const std::string preamble = R"migraphx(
#include <cmath>
)migraphx";

template <class F>
std::function<F>
compile_function(const std::string& src, const std::string& flags, const std::string& fname)
{
    migraphx::src_compiler compiler;
49
50
51
52
    compiler.flags = flags + "-std=c++14 -fPIC -shared";
#ifdef _WIN32
    compiler.output = "simple.dll";
#else
53
    compiler.output = "libsimple.so";
54
#endif
55
    migraphx::src_file f{"main.cpp", src};
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
    auto image = compiler.compile({f});
    return migraphx::dynamic_loader{image}.get_function<F>(fname);
}

template <class F>
std::function<F> compile_module(const migraphx::module& m, const std::string& flags = "")
{
    migraphx::cpp_generator g;
    g.fmap([](auto&& name) { return "std::" + name; });
    g.create_function(g.generate_module(m).set_attributes({"extern \"C\""}));

    return compile_function<F>(preamble + g.str(), flags, m.name());
}

TEST_CASE(simple_run)
{
    auto f = compile_function<int(int)>(add_42_src, "", "add");
    EXPECT(f(8) == 50);
    EXPECT(f(10) == 52);
}

TEST_CASE(generate_module)
{
    migraphx::module m("foo");
    auto x   = m.add_parameter("x", migraphx::shape::float_type);
    auto y   = m.add_parameter("y", migraphx::shape::float_type);
    auto sum = m.add_instruction(migraphx::make_op("add"), x, y);
    m.add_instruction(migraphx::make_op("sqrt"), sum);

    auto f = compile_module<float(float, float)>(m);

87
88
89
    EXPECT(test::within_abs(f(2, 2), 2));
    EXPECT(test::within_abs(f(10, 6), 4));
    EXPECT(test::within_abs(f(1, 2), std::sqrt(3)));
90
91
92
93
94
95
96
97
98
99
100
101
102
103
}

TEST_CASE(generate_module_with_literals)
{
    migraphx::module m("foo");
    auto x    = m.add_parameter("x", migraphx::shape::float_type);
    auto y    = m.add_parameter("y", migraphx::shape::float_type);
    auto z    = m.add_literal(1.f);
    auto sum1 = m.add_instruction(migraphx::make_op("add"), x, z);
    auto sum2 = m.add_instruction(migraphx::make_op("add"), sum1, y);
    m.add_instruction(migraphx::make_op("sqrt"), sum2);

    auto f = compile_module<float(float, float)>(m);

104
105
106
    EXPECT(test::within_abs(f(1, 2), 2));
    EXPECT(test::within_abs(f(9, 6), 4));
    EXPECT(test::within_abs(f(0, 2), std::sqrt(3)));
107
108
109
}

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