1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/*******************************************************************************
*
* MIT License
*
* Copyright (C) 2023 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 <gtest/gtest.h>
#include <Tensile/ContractionProblemPredicates.hpp>
TEST(Predicates, ArithmeticIntensity)
{
using namespace Tensile;
ContractionProblem a = ContractionProblem::GEMM(
false, true, 1000, 1500, 500, 2000, 2000, 2000, 3.0, false, 1); // 88.4
ContractionProblem b = ContractionProblem::GEMM(
false, true, 500, 1000, 1000, 2000, 2000, 2000, 0.0, false, 5); // 125
ContractionProblem c = ContractionProblem::GEMM(
false, true, 2000, 100, 2000, 2000, 2000, 2000, 1.0, false, 10); // 43.5
ContractionProblem d = ContractionProblem::GEMM(
false, true, 2000, 2000, 450, 2000, 2000, 2000, 2.0, false, 1); // 92.04
auto pg1 = std::make_shared<Predicates::Contraction::AIGreaterThanEqual>(100);
auto pg2 = std::make_shared<Predicates::Contraction::AIGreaterThanEqual>(75);
auto pl1 = std::make_shared<Predicates::Contraction::AILessThanEqual>(100);
auto pl2 = std::make_shared<Predicates::Contraction::AILessThanEqual>(75);
EXPECT_EQ(false, (*pg1)(a));
EXPECT_EQ(true, (*pg2)(a));
EXPECT_EQ(true, (*pl1)(a));
EXPECT_EQ(false, (*pl2)(a));
EXPECT_EQ(true, (*pg1)(b));
EXPECT_EQ(true, (*pg2)(b));
EXPECT_EQ(false, (*pl1)(b));
EXPECT_EQ(false, (*pl2)(b));
EXPECT_EQ(false, (*pg1)(c));
EXPECT_EQ(false, (*pg2)(c));
EXPECT_EQ(true, (*pl1)(c));
EXPECT_EQ(true, (*pl2)(c));
EXPECT_EQ(false, (*pg1)(d));
EXPECT_EQ(true, (*pg2)(d));
EXPECT_EQ(true, (*pl1)(d));
EXPECT_EQ(false, (*pl2)(d));
}
|