literal.cpp 2 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.
 */
Paul's avatar
Paul committed
24
25
#include <test.hpp>
#include <basic_ops.hpp>
Paul's avatar
Paul committed
26
27
28
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/generate.hpp>
29
#include <migraphx/register_target.hpp>
Paul's avatar
Paul committed
30
31
#include <migraphx/gpu/target.hpp>
#include <migraphx/gpu/hip.hpp>
Paul's avatar
Paul committed
32

Paul's avatar
Paul committed
33
void gpu_literal_test()
Paul's avatar
Paul committed
34
{
Paul's avatar
Paul committed
35
    migraphx::program p;
36
    auto* mm = p.get_main_module();
Paul's avatar
Paul committed
37
    auto lit = generate_literal(migraphx::shape{migraphx::shape::float_type, {4, 3, 3, 3}});
38
    mm->add_literal(lit);
39
    p.compile(migraphx::make_target("gpu"));
40
    auto scratch = p.get_parameter("scratch");
Shucai Xiao's avatar
Shucai Xiao committed
41
    if(scratch == mm->end())
Paul's avatar
Paul committed
42
    {
43
        auto result = p.eval({}).back();
Paul's avatar
Paul committed
44
        EXPECT(lit == migraphx::gpu::from_gpu(result));
Paul's avatar
Paul committed
45
46
47
    }
    else
    {
48
49
        EXPECT(scratch->get_shape().bytes() == lit.get_shape().bytes());
    }
Paul's avatar
Paul committed
50
51
}

52
int main() { gpu_literal_test(); } // NOLINT (bugprone-exception-escape)