forked from codeplaysoftware/cutlass-fork
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PVC benchmark (codeplaysoftware#76)
Add a benchmark for GEMM on intel PVC
- Loading branch information
1 parent
e27c4a2
commit de6b145
Showing
4 changed files
with
173 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) 2024 - 2024 Codeplay Software Ltd. All rights reserved. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
|
||
cutlass_benchmark_add_executable( | ||
bench_pvc_gemm_bf16_bf16_fp32_dpas_fp32 | ||
bench_pvc_gemm_bf16_bf16_fp32_dpas_fp32.cpp | ||
) |
136 changes: 136 additions & 0 deletions
136
benchmarks/pvc/bench_pvc_gemm_bf16_bf16_fp32_dpas_fp32.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/*************************************************************************************************** | ||
* Copyright (c) 2024 - 2024 Codeplay Software Ltd. All rights reserved. | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright notice, this | ||
* list of conditions and the following disclaimer. | ||
* | ||
* 2. Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* | ||
* 3. Neither the name of the copyright holder nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
**************************************************************************************************/ | ||
|
||
#include "../common/benchmark_runner.hpp" | ||
|
||
using namespace cute; | ||
|
||
/////////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
int main(int argc, const char** argv) | ||
{ | ||
// | ||
// Parse options | ||
// | ||
|
||
Options options; | ||
|
||
options.parse(argc, argv); | ||
|
||
if (options.help) { | ||
options.print_usage(std::cout) << std::endl; | ||
return 0; | ||
} | ||
|
||
if (options.error) { | ||
std::cerr << "Aborting execution." << std::endl; | ||
return -1; | ||
} | ||
|
||
// | ||
// Run examples | ||
// | ||
|
||
// The KernelHardwareInfo struct holds the number of EUs on the GPU with a given device ID. This | ||
// information is used by the underlying kernel. | ||
cutlass::KernelHardwareInfo hw_info; | ||
|
||
// Change device_id to another value if you are running on a machine with multiple GPUs and wish | ||
// to use a GPU other than that with device ID 0. | ||
hw_info.sm_count = cutlass::KernelHardwareInfo::query_device_multiprocessor_count(hw_info.device_id); | ||
|
||
bool passed; | ||
|
||
// The code section below describes datatype for input, output matrices and computation between | ||
// elements in input matrices. | ||
using ElementAccumulator = float; // <- data type of accumulator | ||
using ElementComputeEpilogue = float; // <- data type of epilogue operations | ||
using ElementInputA = bfloat16_t; // <- data type of elements in input matrix A | ||
using ElementInputB = bfloat16_t; // <- data type of elements in input matrix B | ||
using ElementOutput = float; // <- data type of elements in output matrix D | ||
|
||
using LayoutA = cutlass::layout::RowMajor; | ||
using LayoutB = cutlass::layout::RowMajor; | ||
using LayoutC = cutlass::layout::RowMajor; | ||
using LayoutD = cutlass::layout::RowMajor; | ||
|
||
using GmemTiledCopyA = XE_2D_U16x8x16x4x2_LD_N; | ||
using GmemTiledCopyB = XE_2D_U16x16x16x2x1_LD_N; | ||
|
||
using TileShape = Shape<_32, _64, _32>; | ||
|
||
using TiledMma = TiledMMA<MMA_Atom<XE_8x16x16_BF16BF16F32F32_NN>, | ||
Layout<Shape<_8,_16,_1>>>; | ||
|
||
using DispatchPolicy = cutlass::gemm::MainloopIntelPVCUnpredicated; | ||
|
||
using EpilogueOp = cutlass::epilogue::thread::LinearCombination< | ||
ElementOutput, // <- data type of output matrix | ||
128 / cutlass::sizeof_bits<ElementOutput>::value, // <- the number of elements per vectorized | ||
// memory access. For a byte, it's 16 | ||
// elements. This becomes the vector width of | ||
// math instructions in the epilogue too | ||
ElementAccumulator, // <- data type of accumulator | ||
ElementComputeEpilogue>; // <- data type for alpha/beta in linear combination function | ||
|
||
using CollectiveEpilogue = cutlass::epilogue::collective::DefaultEpilogue< | ||
cutlass::gemm::TagToStrideC_t<LayoutC>, | ||
cutlass::gemm::TagToStrideC_t<LayoutD>, | ||
EpilogueOp, | ||
cutlass::gemm::EpilogueDefault>; | ||
|
||
// Mainloop | ||
using CollectiveMainloop = cutlass::gemm::collective::CollectiveMma< | ||
DispatchPolicy, | ||
TileShape, | ||
ElementInputA, | ||
cutlass::gemm::TagToStrideA_t<LayoutA>, | ||
ElementInputB, | ||
cutlass::gemm::TagToStrideB_t<LayoutB>, | ||
TiledMma, | ||
GmemTiledCopyA, void, void, cute::identity, // A | ||
GmemTiledCopyB, void, void, cute::identity // B | ||
>; | ||
|
||
using GemmKernel = cutlass::gemm::kernel::GemmUniversal< | ||
Shape<int, int, int, int>, | ||
CollectiveMainloop, | ||
CollectiveEpilogue | ||
>; | ||
|
||
using Gemm = cutlass::gemm::device::GemmUniversalAdapter<GemmKernel>; | ||
|
||
PvcBenchmarkRunner<Gemm> runner; | ||
|
||
runner.run(options, hw_info); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters