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

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

34
35
36
void store_target_lib(const dynamic_loader& lib)
{
    static std::vector<dynamic_loader> target_loader;
37
38
39
    std::mutex mutex;
    std::unique_lock<std::mutex> lock(mutex);

40
41
42
    target_loader.emplace_back(lib);
}

43
44
std::unordered_map<std::string, target>& target_map()
{
45
    static std::unordered_map<std::string, target> m; // NOLINT
46
47
48
    return m;
}

49
50
51
52
void register_target_init() { (void)target_map(); }

void unregister_target(const std::string& name)
{
53
54
    std::mutex mutex;
    std::unique_lock<std::mutex> lock(mutex);
55
56
57
58
    assert(target_map().count(name));
    target_map().erase(name);
}

59
60
61
62
63
64
65
void register_target(const target& t)
{
    std::mutex mutex;
    std::unique_lock<std::mutex> lock(mutex);

    target_map()[t.name()] = t;
}
66
67
68

target make_target(const std::string& name)
{
69
70
71
72
73
74
    // debug
    for(auto pp : target_map())
        std::cout << pp.first << "\n";

    std::mutex mutex;
    std::unique_lock<std::mutex> lock(mutex);
75
76
77
78
79
    if(not contains(target_map(), name))
    {
        std::string target_name = "libmigraphx_" + name + ".so";
        store_target_lib(dynamic_loader(target_name));
    }
80
81
82
    const auto it = target_map().find(name);
    if(it == target_map().end())
    {
83
        MIGRAPHX_THROW("Requested target '" + name + "' is not loaded or not supported");
84
85
86
87
    }
    return it->second;
}

88
89
90
91
92
93
94
95
96
97
98
99
100
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