register_target.cpp 2.76 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
#include <string>
25
#include <unordered_map>
26
#include <migraphx/register_target.hpp>
27
28
#include <migraphx/ranges.hpp>
#include <migraphx/dynamic_loader.hpp>
29
30
31
32

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

33
34
35
36
37
38
void store_target_lib(const dynamic_loader& lib)
{
    static std::vector<dynamic_loader> target_loader;
    target_loader.emplace_back(lib);
}

39
40
std::unordered_map<std::string, target>& target_map()
{
41
    static std::unordered_map<std::string, target> m; // NOLINT
42
43
44
    return m;
}

45
46
47
48
49
50
51
52
void register_target_init() { (void)target_map(); }

void unregister_target(const std::string& name)
{
    assert(target_map().count(name));
    target_map().erase(name);
}

53
void register_target(const target& t) { target_map()[t.name()] = t; }
54
55
56

target make_target(const std::string& name)
{
57
58
    if(not contains(target_map(), name))
    {
59
60
61
#ifdef _WIN32
        std::string target_name = "migraphx_" + name + ".dll";
#else
62
        std::string target_name = "libmigraphx_" + name + ".so";
63
#endif
64
65
        store_target_lib(dynamic_loader(target_name));
    }
66
67
68
    const auto it = target_map().find(name);
    if(it == target_map().end())
    {
69
        MIGRAPHX_THROW("Requested target '" + name + "' is not loaded or not supported");
70
71
72
73
    }
    return it->second;
}

74
75
76
77
78
79
80
81
82
83
84
85
86
std::vector<std::string> get_targets()
{
    std::vector<std::string> result;
    std::transform(target_map().begin(),
                   target_map().end(),
                   std::back_inserter(result),
                   [&](auto&& p) { return p.first; });
    std::sort(result.begin(), result.end());
    return result;
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx