"vscode:/vscode.git/clone" did not exist on "a350dcc2587d91d572dc10592fc6865e5729b597"
main.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
#include "run_verify.hpp"
#include <migraphx/ranges.hpp>
#include <test.hpp>

#ifdef HAVE_GPU
#include <migraphx/gpu/analyze_streams.hpp>
Paul Fultz II's avatar
Paul Fultz II committed
30
31
32
33
#include <migraphx/gpu/target.hpp>
#endif
#ifdef HAVE_CPU
#include <migraphx/cpu/target.hpp>
34
35
36
37
38
#endif

inline void check_gpu_streams(const migraphx::program& p)
{
#ifdef HAVE_GPU
39
40
    const auto* mm = p.get_main_module();
    auto races     = migraphx::gpu::analyze_streams(*mm);
41
42
43
44
    for(auto&& race : races)
    {
        std::cout << "FAILED: " << std::endl;
        std::cout << "Race condition detected for: ";
Shucai Xiao's avatar
Shucai Xiao committed
45
        mm->debug_print(race.ins);
46
        std::cout << "Should happen after: ";
Shucai Xiao's avatar
Shucai Xiao committed
47
        mm->debug_print(race.before);
48
49
50
51
52
53
    }
#else
    (void)p;
#endif
}

54
void validate_gpu(const migraphx::program& p, const migraphx::parameter_map& m)
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
    check_gpu_streams(p);

    // Ensure the program doesn't modify the context in a dry run
    auto ctx = p.get_context();
    assert(&ctx != &p.get_context());
    EXPECT(is_shared(ctx, p.get_context()));
    p.dry_run(m);
    EXPECT(is_shared(ctx, p.get_context()));
}

int main(int argc, const char* argv[])
{
    run_verify rv;
    rv.add_validation_for("gpu", &validate_gpu);
Charlie Lin's avatar
Charlie Lin committed
70
71
72
73
74
75
    rv.disable_test_for("cpu",
                        {"test_if_lp",
                         "test_if_param",
                         "test_if_literal",
                         "test_select_module_add",
                         "test_select_module_reduce",
76
                         "test_select_module_conv",
77
78
                         "test_split_single_dyn_dim",
                         "test_instancenorm_large_3d<migraphx::shape::float_type>",
Paul's avatar
Paul committed
79
80
81
82
83
84
85
86
87
88
89
90
                         "test_instancenorm_large_3d<migraphx::shape::half_type>",
                        "test_block_reduce_small<3, migraphx::shape::int8_type>",
                        "test_block_reduce_small<4, migraphx::shape::int8_type>",
                        "test_block_reduce_small<8, migraphx::shape::int8_type>",
                        "test_block_reduce_small<16, migraphx::shape::int8_type>",
                        "test_block_reduce_small<25, migraphx::shape::int8_type>",
                        "test_block_reduce_small<32, migraphx::shape::int8_type>",
                        "test_block_reduce_small<64, migraphx::shape::int8_type>",
                        "test_block_reduce_small<67, migraphx::shape::int8_type>",
                        "test_block_reduce_small<128, migraphx::shape::int8_type>",
                        "test_block_reduce_small<129, migraphx::shape::int8_type>",
                     });
91
92
    rv.run(argc, argv);
}