main.cpp 4.37 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);
Paul's avatar
Format  
Paul committed
70
71
72
73
74
    rv.disable_test_for("cpu", {
        "test_if_lp", "test_if_param", "test_if_literal", "test_select_module_add",
            "test_select_module_reduce", "test_select_module_conv", "test_split_single_dyn_dim",
            "test_instancenorm_large_3d<migraphx::shape::float_type>",
            "test_instancenorm_large_3d<migraphx::shape::half_type>",
Umang Yadav's avatar
Umang Yadav committed
75
76
77
78
79
80
81
82
        // these tests are disabled due issue of lossy downcast, see issue#2517
#if defined(__GNUC__) and !defined(__clang__)
            "batch_quant_dot_1<migraphx::fp8::float8<migraphx::fp8::f8_type::fp8, true>, float>",
            "quant_dot_3args_4<migraphx::fp8::float8<migraphx::fp8::f8_type::fp8, true>, float>",
            "quant_dot_3args_5<migraphx::fp8::float8<migraphx::fp8::f8_type::fp8, true>, float>",
#else
                "batch_quant_dot_1<migraphx::fp8::fp8e4m3fnuz, float>",
                "quant_dot_3args_4<migraphx::fp8::fp8e4m3fnuz, float>",
Paul's avatar
Merge  
Paul committed
83
                "quant_dot_3args_5<migraphx::fp8::fp8e4m3fnuz, float>",
Umang Yadav's avatar
Umang Yadav committed
84
#endif
Paul's avatar
Format  
Paul committed
85
86
87
88
89
90
91
92
93
94
95
            "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>",
    });
Umang Yadav's avatar
Umang Yadav committed
96
97
98
99
100
    rv.disable_test_for("gpu",
                        {// These passes on MI300 but fails on others, same issue as CPU.
                         "batch_quant_dot_1<migraphx::fp8::fp8e4m3fnuz, float>",
                         "quant_dot_3args_4<migraphx::fp8::fp8e4m3fnuz, float>",
                         "quant_dot_3args_5<migraphx::fp8::fp8e4m3fnuz, float>"});
101
102
    rv.run(argc, argv);
}