mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 21:21:22 +00:00
Extend permute scale support up to 6D (#1168)
* Extend permute scale support up to 6D * Fixes * Fixes * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> * Update profiler/README.md Co-authored-by: Lisa <lisajdelaney@gmail.com> --------- Co-authored-by: Lisa <lisajdelaney@gmail.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
||||
// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -322,6 +322,19 @@ struct DeviceElementwiseImpl : public DeviceElementwise<InDataTypeTuple,
|
||||
{
|
||||
return std::make_unique<Invoker>();
|
||||
};
|
||||
|
||||
std::string GetTypeString() const override
|
||||
{
|
||||
auto str = std::stringstream();
|
||||
|
||||
// clang-format off
|
||||
str << "DeviceElementwiseNormalizationImpl<";
|
||||
str << NumDim << ", ";
|
||||
str << MPerThread << ">";
|
||||
// clang-format on
|
||||
|
||||
return str.str();
|
||||
}
|
||||
}; // namespace device
|
||||
|
||||
} // namespace device
|
||||
|
||||
Reference in New Issue
Block a user