From 56ee9b3766ca7617d2174ef0011f4aef27dec7e8 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 3 May 2024 17:23:20 -0700 Subject: [PATCH] Add test --- test/verify/test_step_dot.cpp | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 test/verify/test_step_dot.cpp diff --git a/test/verify/test_step_dot.cpp b/test/verify/test_step_dot.cpp new file mode 100644 index 00000000000..7b80a6b522a --- /dev/null +++ b/test/verify/test_step_dot.cpp @@ -0,0 +1,47 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2015-2024 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. + */ + +#include "verify_program.hpp" +#include +#include +#include +#include + +struct test_step_dot : verify_program +{ + migraphx::program create_program() const + { + migraphx::program p; + auto* mm = p.get_main_module(); + migraphx::shape as{migraphx::shape::float_type, {128, 4, 64, 196}}; + migraphx::shape bs{migraphx::shape::float_type, {128, 4, 196, 196}}; + auto a = mm->add_parameter("input", as); + auto b = mm->add_literal(migraphx::generate_literal(bs)); + auto step = mm->add_instruction(migraphx::make_op("step", {{"axes", {2}}, {"steps", {2}}}), a); + auto dot = mm->add_instruction(migraphx::make_op("dot"), step, b); + mm->add_return({dot}); + return p; + } + std::string section() const { return "gemm"; } +};