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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
/*******************************************************************************
*
* MIT License
*
* Copyright (C) 2019-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.
*
*******************************************************************************/
#ifndef GEMM_KERNEL_TEST_HPP
#define GEMM_KERNEL_TEST_HPP
#include <Tensile/ContractionProblem.hpp>
#include <Tensile/ContractionSolution.hpp>
#include <Tensile/SolutionLibrary.hpp>
#include <Tensile/Tensile.hpp>
#include "TestData.hpp"
#include "TestUtils.hpp"
#include <iostream>
#include <unordered_map>
using namespace Tensile;
/* Test interface:
* This is the driving interface
* for setting up and invoking
* Tensile GEMM type problems on a
* particular device backend.
* E.g. HIP
*/
template <typename DeviceBackend>
struct GEMMKernelTest
{
/* Setup test component types that will
* stay constant for each Device Backend.
*/
template <typename T>
using BufferObj = typename DeviceBackend::template BufferObj<T>;
using ContractionProblem = ::ContractionProblem;
using ContractionSolution = typename ContractionProblem::Solution;
enum class MemoryPageAlignment : int
{
BEGIN = 0,
END = 1
};
using SolutionAdapter = typename DeviceBackend::SolutionAdapter;
using SolutionLibrary = ::SolutionLibrary<ContractionProblem, ContractionSolution>;
using ProblemParams = std::tuple<bool, // transA
bool, // transB
size_t, // m
size_t, // n
size_t, // k
size_t, // lda
size_t, // ldb
size_t, // ldc
double, // beta
size_t>; // batchCount
using SolutionParams = std::tuple<std::shared_ptr<SolutionLibrary>,
std::shared_ptr<SolutionAdapter>,
bool>; // is a solution required?
static constexpr ProblemParams RandomGEMMParams
= std::make_tuple(false, false, -1, -1, -1, -1, -1, -1, -1.0, -1);
virtual void SetUp(ProblemParams const&, SolutionParams const&, MemoryPageAlignment const&) = 0;
virtual void TestBestSolution() = 0;
virtual void TestAllSolutions() = 0;
virtual void TearDown() = 0;
virtual void OverrideAlpha(double) = 0;
virtual void NullifyAPtr() = 0;
virtual void NullifyBPtr() = 0;
virtual std::string ToString() const = 0;
virtual ~GEMMKernelTest() {}
};
template <typename DeviceBackend>
inline std::ostream& operator<<(std::ostream& stream,
std::shared_ptr<GEMMKernelTest<DeviceBackend>> const& ptr);
/* Typed test implementation:
* Setup and invocation of Tensile GEMM problems with
* specific controls for input generation
* on different device backends.
*/
template <typename TypedInputs, typename DeviceBackend>
struct TypedGEMMKernelTest : public GEMMKernelTest<DeviceBackend>
{
// Extract base component configuration
using Base = GEMMKernelTest<DeviceBackend>;
template <typename T>
using BufferObj = typename Base::template BufferObj<T>;
using ContractionProblem = typename Base::ContractionProblem;
using ContractionSolution = typename Base::ContractionSolution;
using MemoryPageAlignment = typename Base::MemoryPageAlignment;
using SolutionAdapter = typename Base::SolutionAdapter;
using SolutionLibrary = typename Base::SolutionLibrary;
// Extract testing params
using SolutionParams = typename Base::SolutionParams;
using ProblemParams = typename Base::ProblemParams;
// Extract input types
using AType = typename TypedInputs::AType;
using BType = typename TypedInputs::BType;
using CType = typename TypedInputs::CType;
using DType = typename TypedInputs::DType;
using AlphaType = typename TypedInputs::AlphaType;
using BetaType = typename TypedInputs::BetaType;
// Host data buffers
std::vector<AType> a_h;
std::vector<BType> b_h;
std::vector<CType> c_h;
std::vector<DType> d_h;
std::vector<DType> d_in_h;
std::vector<DType> d_ref_h;
// Device data buffers
BufferObj<AType> a_d_alloc = nullptr;
BufferObj<BType> b_d_alloc = nullptr;
BufferObj<CType> c_d_alloc = nullptr;
BufferObj<DType> d_d_alloc = nullptr;
std::array<size_t, 4> bufferOffsets = {0, 0, 0, 0};
TypedInputs inputs_h;
TypedInputs inputs_d;
std::shared_ptr<Hardware> hardware;
// Testing components
ContractionProblem problem;
std::shared_ptr<SolutionLibrary> library;
std::shared_ptr<SolutionAdapter> adapter;
std::shared_ptr<ContractionSolution> solution;
bool requiredMatch;
MemoryPageAlignment memoryAlignment;
static std::unordered_map<size_t, std::vector<DType>> referenceCache;
static ContractionProblem createProblem(ProblemParams const& props);
void SetUp(ProblemParams const& probParams,
SolutionParams const& solParams,
MemoryPageAlignment const& alignment) override;
void OverrideAlpha(double val) override;
void NullifyAPtr() override;
void NullifyBPtr() override;
void calcCPU();
void calcGPU();
void TestBestSolution() override;
void TestAllSolutions() override;
void TearDown() override;
inline std::string ToString() const override;
};
#include "GEMMKernelTest_impl.hpp"
#endif // GEMM_KERNEL_TEST_HPP
|