mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
Fix argument order for calls to profile_batched_gemm_impl() (#2277)
* Fix argument order for calls to profile_batched_gemm_impl() * Revert previous and swap the order of the profile_batched_gemm_impl() function arguments instead. * Revert copyright years for unchanged files. * Remove test_batched_gemm from REGRESSION_TESTS since it no longer takes more than 30 seconds to run. --------- Co-authored-by: Kiefer van Teutem <kiefer.van.teutem@streamhpc.com>
This commit is contained in:
committed by
GitHub
parent
cd606f72c1
commit
c7c6a0ccb3
@@ -1,5 +1,5 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
||||
// Copyright (c) 2018-2025, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -41,12 +41,12 @@ bool profile_batched_gemm_impl(int do_verification,
|
||||
int M,
|
||||
int N,
|
||||
int K,
|
||||
int BatchStrideA,
|
||||
int BatchStrideB,
|
||||
int BatchStrideC,
|
||||
int StrideA,
|
||||
int StrideB,
|
||||
int StrideC,
|
||||
int BatchStrideA,
|
||||
int BatchStrideB,
|
||||
int BatchStrideC,
|
||||
int BatchCount)
|
||||
{
|
||||
bool pass = true;
|
||||
|
||||
Reference in New Issue
Block a user