mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-19 20:40:07 +00:00
Reorganize project folders (#6)
This commit is contained in:
484
include/ck/wrapper/layout.hpp
Normal file
484
include/ck/wrapper/layout.hpp
Normal file
@@ -0,0 +1,484 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/wrapper/utils/layout_utils.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Layout wrapper that performs the tensor descriptor logic.
|
||||
*
|
||||
* \tparam Shape Tuple of Number<> (for compile-time layout) or index_t
|
||||
* (dynamic layout). It is possible to pass nested shapes
|
||||
* (e.g. ((4, 2), 2)), nested dimensions are merged.
|
||||
* \tparam UnrolledDescriptorType Tensor descriptor for unnested shape dims.
|
||||
*/
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
struct Layout
|
||||
{
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
private:
|
||||
static constexpr auto I0 = Number<0>{};
|
||||
static constexpr auto I1 = Number<1>{};
|
||||
|
||||
/**
|
||||
* \brief Generate default indices tuple (idx with all merged nested shapes)
|
||||
*
|
||||
* \param shape Shape to align.
|
||||
* \return Multi idx tuple with zeros.
|
||||
*/
|
||||
template <typename... Ts>
|
||||
__host__ __device__ constexpr static auto
|
||||
GenerateDefaultIdxsTuple([[maybe_unused]] const Tuple<Ts...>& shape)
|
||||
{
|
||||
return generate_tuple(
|
||||
[&](auto) {
|
||||
if constexpr(!remove_cvref_t<UnrolledDescriptorType>::IsKnownAtCompileTime())
|
||||
{
|
||||
// runtime layout
|
||||
return index_t(0);
|
||||
}
|
||||
else
|
||||
{
|
||||
// compiletime layout
|
||||
return I0;
|
||||
}
|
||||
},
|
||||
Number<Tuple<Ts...>::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Generate lower dims in compile-time for the Merge transform using
|
||||
* provided type. If element of nested Tuple<Ts...> is also a tuple, then
|
||||
* merge (generate sequence for merge). If tuple is element, then pass
|
||||
* through (sequence with one element).
|
||||
*
|
||||
* \param shape Shape to align.
|
||||
* \return LowerDims for MergeTrasform.
|
||||
*/
|
||||
template <typename Idx, typename... Ts>
|
||||
__host__ __device__ constexpr static auto
|
||||
GenerateLowerDim([[maybe_unused]] const Tuple<Ts...>& shape)
|
||||
{
|
||||
if constexpr(Idx::value == 0)
|
||||
{
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<Idx::value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
// Return Sequence for the first tuple
|
||||
constexpr index_t merge_nelems = decltype(UnrollNestedTuple(
|
||||
tuple_element_t<Idx::value, Tuple<Ts...>>{}))::Size();
|
||||
using LowerDimsSequence =
|
||||
typename arithmetic_sequence_gen<0, merge_nelems, 1>::type;
|
||||
return LowerDimsSequence::Reverse();
|
||||
}
|
||||
else
|
||||
{
|
||||
// Return first element
|
||||
return Sequence<0>{};
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Get previous element using recurence (in compile-time)
|
||||
using PreviousSeqT = decltype(GenerateLowerDim<Number<Idx::value - 1>>(Tuple<Ts...>{}));
|
||||
const auto next_seq_val = PreviousSeqT::At(I0) + 1;
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<Idx::value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
constexpr index_t merge_nelems = decltype(UnrollNestedTuple(
|
||||
tuple_element_t<Idx::value, Tuple<Ts...>>{}))::Size();
|
||||
using LowerDimsSequence =
|
||||
typename arithmetic_sequence_gen<next_seq_val, next_seq_val + merge_nelems, 1>::
|
||||
type;
|
||||
return LowerDimsSequence::Reverse();
|
||||
}
|
||||
else
|
||||
{
|
||||
return Sequence<next_seq_val>{};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Iterate over the nested tuples in the shape.
|
||||
* Unroll nested tuples to align Tuple<ShapeDims...> to Tuple<IdxDims...>
|
||||
* Example idx: (1, 1), 1, 1
|
||||
* Example shape: (2, (2, 2)), 2, (2, 2)
|
||||
* Unrolled shape: 2, (2, 2), 2, (2, 2)
|
||||
*
|
||||
* \param shape Layout shape.
|
||||
* \param idx Idx to align.
|
||||
* \return Algined shape.
|
||||
*/
|
||||
template <typename... ShapeDims, typename... IdxDims>
|
||||
__host__ __device__ constexpr static auto AlignShapeToIdx(const Tuple<ShapeDims...>& shape,
|
||||
const Tuple<IdxDims...>& idx)
|
||||
{
|
||||
if constexpr(!IsNestedTuple(Tuple<IdxDims...>{}))
|
||||
{
|
||||
// Index unrolled to flatten, return shape
|
||||
return shape;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Iterate over shape tuple elements:
|
||||
// 1. If corresponding idx element is tuple then return (will be unrolled)
|
||||
// 2. If no, pack in tuple. It will be restored during unroll.
|
||||
auto aligned_shape = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(is_detected<is_tuple,
|
||||
tuple_element_t<i, Tuple<IdxDims...>>>::value)
|
||||
{
|
||||
return shape.At(i);
|
||||
}
|
||||
else
|
||||
{
|
||||
return make_tuple(shape.At(i));
|
||||
}
|
||||
},
|
||||
Number<Tuple<IdxDims...>::Size()>{});
|
||||
|
||||
// Unroll and process next step
|
||||
return AlignShapeToIdx(UnrollNestedTuple<0, 1>(aligned_shape),
|
||||
UnrollNestedTuple<0, 1>(idx));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Merge descriptor to 1D.
|
||||
*
|
||||
* \param shape Layout shape.
|
||||
* \param desc Descriptor to merge.
|
||||
* \return 1D descriptor.
|
||||
*/
|
||||
template <typename... ShapeDims, typename DescriptorToMerge>
|
||||
__host__ __device__ constexpr static auto MakeMerge1d(const Tuple<ShapeDims...>& shape,
|
||||
const DescriptorToMerge& desc)
|
||||
{
|
||||
// Reverse each element in tuple
|
||||
const auto merge_elems = TupleReverse(UnrollNestedTuple(shape));
|
||||
// Generate reverted indexes (column major traverse)
|
||||
using MergeElemsSequence = typename arithmetic_sequence_gen<0, merge_elems.Size(), 1>::type;
|
||||
const auto lower_dims = make_tuple(MergeElemsSequence::Reverse());
|
||||
const auto upper_dims = make_tuple(Sequence<0>{});
|
||||
// Merge to 1d
|
||||
if constexpr(!remove_cvref_t<UnrolledDescriptorType>::IsKnownAtCompileTime())
|
||||
{
|
||||
return transform_tensor_descriptor(
|
||||
desc, make_tuple(make_merge_transform(merge_elems)), lower_dims, upper_dims);
|
||||
}
|
||||
else
|
||||
{
|
||||
// If the descriptor is known at the compilation time,
|
||||
// use `make_merge_transform_v1_carry_check` because it doesn't use
|
||||
// memcpy.
|
||||
return transform_tensor_descriptor(
|
||||
desc,
|
||||
make_tuple(make_merge_transform_v1_carry_check(merge_elems)),
|
||||
lower_dims,
|
||||
upper_dims);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Merge nested shape dims when corresponding index is also merged.
|
||||
* Input desc shape: 2, 2, 2, 2, 2, 2
|
||||
* Example idx: 1, 1, 1, (1, 1)
|
||||
* Example shape: 2, (2, 2), 2, (2, 2)
|
||||
* Merged shape: 2, 4, 2, 2, 2
|
||||
*
|
||||
* \param shape Layout shape.
|
||||
* \param idxs Indexes to align descriptor.
|
||||
* \param desc Descriptor to merge.
|
||||
* \return Aligned descriptor to idx.
|
||||
*/
|
||||
template <typename... ShapeDims, typename... IdxDims, typename DescriptorToMerge>
|
||||
__host__ __device__ constexpr static auto
|
||||
CreateMergedDescriptor(const Tuple<ShapeDims...>& shape,
|
||||
[[maybe_unused]] const Tuple<IdxDims...>& idxs,
|
||||
DescriptorToMerge& desc)
|
||||
{
|
||||
const auto transforms = generate_tuple(
|
||||
[&](auto i) {
|
||||
// Compare Idx with shape
|
||||
if constexpr(is_detected<is_tuple,
|
||||
tuple_element_t<i, Tuple<ShapeDims...>>>::value &&
|
||||
!is_detected<is_tuple, tuple_element_t<i, Tuple<IdxDims...>>>::value)
|
||||
{
|
||||
// If shape element is tuple and idx element is Number, then merge
|
||||
// Unroll and reverse tuple to traverse column-major
|
||||
const auto merge_elems = TupleReverse(UnrollNestedTuple(shape.At(i)));
|
||||
if constexpr(!remove_cvref_t<UnrolledDescriptorType>::IsKnownAtCompileTime())
|
||||
{
|
||||
return make_merge_transform(merge_elems);
|
||||
}
|
||||
else
|
||||
{
|
||||
// If the descriptor is known at the compilation time,
|
||||
// use `make_merge_transform_v1_carry_check` because
|
||||
// it doesn't use memcpy.
|
||||
return make_merge_transform_v1_carry_check(merge_elems);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// If shape element is integer and idx element is tuple, passed idx is wrong
|
||||
static_assert(
|
||||
!(!is_detected<is_tuple, tuple_element_t<i, Tuple<ShapeDims...>>>::value &&
|
||||
is_detected<is_tuple, tuple_element_t<i, Tuple<IdxDims...>>>::value),
|
||||
"Wrong Idx for layout()");
|
||||
// If shape element has the same type as idx element, then pass through
|
||||
return make_pass_through_transform(shape.At(i));
|
||||
}
|
||||
},
|
||||
Number<Tuple<ShapeDims...>::Size()>{});
|
||||
|
||||
const auto lower_dims =
|
||||
generate_tuple([&](auto i) { return GenerateLowerDim<Number<i>>(shape); },
|
||||
Number<Tuple<ShapeDims...>::Size()>{});
|
||||
const auto upper_dims = generate_tuple([&](auto i) { return Sequence<i.value>{}; },
|
||||
Number<Tuple<ShapeDims...>::Size()>{});
|
||||
|
||||
return transform_tensor_descriptor(desc, transforms, lower_dims, upper_dims);
|
||||
}
|
||||
|
||||
using Descriptor1dType =
|
||||
remove_cvref_t<decltype(MakeMerge1d(Shape{}, UnrolledDescriptorType{}))>;
|
||||
using DefaultIdxsTupleType = remove_cvref_t<decltype(GenerateDefaultIdxsTuple(Shape{}))>;
|
||||
/// @endcond
|
||||
|
||||
public:
|
||||
using LayoutShape = Shape;
|
||||
using LayoutUnrolledDescriptorType = UnrolledDescriptorType;
|
||||
|
||||
/**
|
||||
* \brief Transform descriptor to align to passed indexes.
|
||||
*
|
||||
* \param shape Layout shape.
|
||||
* \param idxs Indexes to align descriptor.
|
||||
* \param naive_descriptor Descriptor to merge.
|
||||
* \return Aligned descriptor to idx.
|
||||
*/
|
||||
template <typename... ShapeDims, typename... IdxDims>
|
||||
__host__ __device__ constexpr static auto
|
||||
TransformDesc(const Tuple<ShapeDims...>& shape,
|
||||
const Tuple<IdxDims...>& idxs,
|
||||
const UnrolledDescriptorType& naive_descriptor)
|
||||
{
|
||||
if constexpr(Tuple<IdxDims...>::Size() == I1)
|
||||
{
|
||||
// 1d idx path
|
||||
return MakeMerge1d(shape, naive_descriptor);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Merge nested shape dims
|
||||
// Example idx: (1, 1), 1, 1
|
||||
// Example shape: (2, (2, 2)), 2, (2, 2)
|
||||
// Merged shape: (2, 4), 2, 4
|
||||
static_assert(Tuple<ShapeDims...>::Size() == Tuple<IdxDims...>::Size(),
|
||||
"Idx rank and Shape rank must be the same (except 1d).");
|
||||
// Unroll while IdxDims is nested
|
||||
const auto aligned_shape = AlignShapeToIdx(shape, idxs);
|
||||
// Transform correct form of shape
|
||||
return CreateMergedDescriptor(aligned_shape, UnrollNestedTuple(idxs), naive_descriptor);
|
||||
}
|
||||
}
|
||||
|
||||
using MergedNestsDescriptorType = remove_cvref_t<decltype(TransformDesc(
|
||||
Shape{}, DefaultIdxsTupleType{}, UnrolledDescriptorType{}))>;
|
||||
|
||||
__host__ __device__ constexpr auto GetElementSpaceSize() const
|
||||
{
|
||||
return unrolled_descriptor_.GetElementSpaceSize();
|
||||
}
|
||||
|
||||
__host__ __device__ Layout() = delete;
|
||||
|
||||
/**
|
||||
* \brief Layout constructor.
|
||||
*
|
||||
* \param shape Shape for layout.
|
||||
* \param unnested_descriptor Descriptor
|
||||
*/
|
||||
__host__ __device__ constexpr Layout(const Shape& shape,
|
||||
const UnrolledDescriptorType& unnested_descriptor)
|
||||
: unrolled_descriptor_(unnested_descriptor), shape_(shape)
|
||||
{
|
||||
// Construct if runtime mode
|
||||
if constexpr(!remove_cvref_t<UnrolledDescriptorType>::IsKnownAtCompileTime())
|
||||
{
|
||||
descriptor_1d_ = MakeMerge1d(shape_, unrolled_descriptor_);
|
||||
merged_nests_descriptor_ =
|
||||
TransformDesc(shape_, DefaultIdxsTupleType{}, unrolled_descriptor_);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Returns real offset to element in runtime.
|
||||
*
|
||||
* \tparam Idxs Tuple of indexes.
|
||||
* \return Calculated offset.
|
||||
*/
|
||||
template <typename Idxs>
|
||||
__host__ __device__ constexpr index_t operator()() const
|
||||
{
|
||||
static_assert(remove_cvref_t<UnrolledDescriptorType>::IsKnownAtCompileTime(),
|
||||
"Compiletime operator used on runtime layout.");
|
||||
using TransformedDesc = decltype(TransformDesc(Shape{}, Idxs{}, UnrolledDescriptorType{}));
|
||||
using UnrolledIdx = decltype(UnrollNestedTuple(Idxs{}));
|
||||
return TransformedDesc{}.CalculateOffset(UnrolledIdx{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Returns real offset to element in compile time.
|
||||
*
|
||||
* \param Idx Tuple of indexes.
|
||||
* \return Calculated offset.
|
||||
*/
|
||||
template <typename... Ts>
|
||||
__host__ __device__ index_t operator()(const Tuple<Ts...>& Idx) const
|
||||
{
|
||||
if constexpr(!IsNestedTuple(Tuple<Ts...>{}) && Tuple<Ts...>::Size() == 1)
|
||||
{
|
||||
// if 1d access
|
||||
return descriptor_1d_.CalculateOffset(Idx);
|
||||
}
|
||||
else if constexpr(!IsNestedTuple(Tuple<Ts...>{}) && Tuple<Ts...>::Size() == Shape::Size())
|
||||
{
|
||||
// if Shape::Size() access (merged nested shapes)
|
||||
return merged_nests_descriptor_.CalculateOffset(UnrollNestedTuple(Idx));
|
||||
}
|
||||
else
|
||||
{
|
||||
// Custom index, need to transform descriptor
|
||||
const auto transformed_desc = TransformDesc(shape_, Idx, unrolled_descriptor_);
|
||||
return transformed_desc.CalculateOffset(UnrollNestedTuple(Idx));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Length getter (product if tuple).
|
||||
*
|
||||
* \tparam IDim Tuple of indexes or index.
|
||||
* \return Calculated size.
|
||||
*/
|
||||
template <index_t IDim>
|
||||
__host__ __device__ constexpr auto GetLength() const
|
||||
{
|
||||
const auto elem = shape_.At(Number<IDim>{});
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<IDim, Shape>>::value)
|
||||
{
|
||||
const auto unrolled_element = UnrollNestedTuple(elem);
|
||||
return TupleReduce<I0.value, unrolled_element.Size()>(
|
||||
[](auto x, auto y) { return x * y; }, unrolled_element);
|
||||
}
|
||||
else
|
||||
{
|
||||
return elem;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Layout size getter (product of shape).
|
||||
*
|
||||
* \return Calculated size.
|
||||
*/
|
||||
__host__ __device__ constexpr auto GetLengths() const
|
||||
{
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape_);
|
||||
return TupleReduce<I0.value, unrolled_shape.Size()>([](auto x, auto y) { return x * y; },
|
||||
unrolled_shape);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Shape getter.
|
||||
*
|
||||
* \return Shape.
|
||||
*/
|
||||
__host__ __device__ constexpr const Shape& GetShape() const { return shape_; }
|
||||
|
||||
/**
|
||||
* \brief Get default lengths (tuple filled with Shape length elements).
|
||||
*
|
||||
* \return Default lengths.
|
||||
*/
|
||||
__host__ __device__ constexpr auto GetDefaultLengthsTuple() const
|
||||
{
|
||||
return generate_tuple([&](auto i) { return GetLength<i>(); }, Number<Shape::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get default start idx (tuple filled with 0s of the same size as Shape).
|
||||
*
|
||||
* \return Default start idx.
|
||||
*/
|
||||
__host__ __device__ constexpr auto GetDefaultStartIdxs() const
|
||||
{
|
||||
return GenerateDefaultIdxsTuple(shape_);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get descriptor with all nested dimensions merged.
|
||||
* Example, shape: ((2, 2), 2)
|
||||
* Descriptor lengths: (4, 2)
|
||||
*
|
||||
* \note The size of merged descriptor is the same as Layout's shape.
|
||||
*
|
||||
* \return Merged nests descriptor.
|
||||
*/
|
||||
__host__ __device__ constexpr const MergedNestsDescriptorType&
|
||||
GetMergedNestingDescriptor() const
|
||||
{
|
||||
return merged_nests_descriptor_;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get descriptor with all dimensions are merged (1D).
|
||||
* Example, shape: ((2, 2), 2)
|
||||
* Descriptor lengths: (8)
|
||||
*
|
||||
* \return 1D descriptor.
|
||||
*/
|
||||
__host__ __device__ constexpr const Descriptor1dType& Get1DDescriptor() const
|
||||
{
|
||||
return descriptor_1d_;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get unnested descriptor (with unrolled dims)
|
||||
* Example, shape: ((2, 2), 2)
|
||||
* Descriptor lengths: (2, 2, 2)
|
||||
*
|
||||
* \return Flattened descriptor.
|
||||
*/
|
||||
__host__ __device__ constexpr const UnrolledDescriptorType& GetUnrolledDescriptor() const
|
||||
{
|
||||
return unrolled_descriptor_;
|
||||
}
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
private:
|
||||
// All dimensions are unrolled
|
||||
UnrolledDescriptorType unrolled_descriptor_;
|
||||
// 1D descriptor
|
||||
Descriptor1dType descriptor_1d_;
|
||||
// All nesting are merged
|
||||
MergedNestsDescriptorType merged_nests_descriptor_;
|
||||
// Example, shape: ((2, 2), 2)
|
||||
// UnrolledDescriptorType lengths: (2, 2, 2)
|
||||
// Descriptor1dType lengths: (8)
|
||||
// MergedNestsDescriptorType lengths: (4, 2)
|
||||
const Shape shape_;
|
||||
/// @endcond
|
||||
};
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
231
include/ck/wrapper/operations/copy.hpp
Normal file
231
include/ck/wrapper/operations/copy.hpp
Normal file
@@ -0,0 +1,231 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/wrapper/utils/tensor_utils.hpp"
|
||||
|
||||
#include "ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp"
|
||||
#include "ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7.hpp"
|
||||
#include "ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v4r1.hpp"
|
||||
#include "ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7.hpp"
|
||||
#include "ck/tensor_operation/gpu/element/element_wise_operation.hpp"
|
||||
#include "ck/tensor_description/tensor_space_filling_curve.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Perform optimized copy between two tensors partitions (threadwise copy).
|
||||
* Tensors must have the same size.
|
||||
*
|
||||
* \tparam DimAccessOrderTuple Tuple with dimension access order.
|
||||
* \tparam VectorDim Dimension for vectorized read and write.
|
||||
* \tparam ScalarPerVector Number of scalar per vectorized read and write.
|
||||
* \param src_tensor Source tensor.
|
||||
* \param dst_tensor Destination tensor.
|
||||
*/
|
||||
template <typename DimAccessOrderTuple,
|
||||
index_t VectorDim,
|
||||
index_t ScalarPerVector,
|
||||
typename SrcTensorType,
|
||||
typename DstTensorType>
|
||||
__device__ void copy(const SrcTensorType& src_tensor, DstTensorType& dst_tensor)
|
||||
{
|
||||
static_assert(is_detected<is_tuple, DimAccessOrderTuple>::value);
|
||||
constexpr auto I0 = Number<0>{};
|
||||
constexpr auto I1 = Number<1>{};
|
||||
|
||||
const auto& in_grid_desc = layout(src_tensor).GetUnrolledDescriptor();
|
||||
const auto& out_grid_desc = layout(dst_tensor).GetUnrolledDescriptor();
|
||||
|
||||
using SrcShapeType = remove_cvref_t<decltype(shape(src_tensor))>;
|
||||
constexpr index_t num_dims = SrcShapeType::Size();
|
||||
|
||||
constexpr auto thread_slice_lengths =
|
||||
generate_sequence_v2([](auto I) { return size(SrcShapeType{}.At(I)); }, Number<num_dims>{});
|
||||
constexpr auto dim_access_order = generate_sequence_v2(
|
||||
[](auto I) { return DimAccessOrderTuple{}.At(I); }, Number<num_dims>{});
|
||||
|
||||
if constexpr(SrcTensorType::IsDynamicBuffer && DstTensorType::IsDynamicBuffer)
|
||||
{
|
||||
// Perform a copy between DynamicBuffers
|
||||
auto transfer = ThreadwiseTensorSliceTransfer_v7<
|
||||
Tuple<typename SrcTensorType::TensorElementType>,
|
||||
Tuple<typename DstTensorType::TensorElementType>,
|
||||
decltype(tie(in_grid_desc)),
|
||||
decltype(tie(out_grid_desc)),
|
||||
tensor_operation::element_wise::PassThrough,
|
||||
Sequence<static_cast<index_t>(InMemoryDataOperationEnum::Set)>,
|
||||
decltype(thread_slice_lengths),
|
||||
decltype(dim_access_order),
|
||||
VectorDim,
|
||||
ScalarPerVector,
|
||||
Sequence<true>,
|
||||
Sequence<true>>{in_grid_desc,
|
||||
make_tuple(src_tensor.GetMultiIdxOffsets()),
|
||||
out_grid_desc,
|
||||
make_tuple(dst_tensor.GetMultiIdxOffsets()),
|
||||
tensor_operation::element_wise::PassThrough{}};
|
||||
|
||||
transfer.Run(tie(in_grid_desc),
|
||||
tie(src_tensor.GetBuffer()),
|
||||
tie(out_grid_desc),
|
||||
tie(dst_tensor.GetBuffer()));
|
||||
}
|
||||
else if constexpr(!SrcTensorType::IsDynamicBuffer && DstTensorType::IsDynamicBuffer)
|
||||
{
|
||||
// Perform copy from StaticBuffer to DynamicBuffer
|
||||
const auto src_slice_origin_idxs =
|
||||
generate_tuple([&](auto) { return I0; }, Number<num_dims>{});
|
||||
|
||||
auto transfer =
|
||||
ThreadwiseTensorSliceTransfer_v1r3<typename SrcTensorType::TensorElementType,
|
||||
typename DstTensorType::TensorElementType,
|
||||
remove_cvref_t<decltype(in_grid_desc)>,
|
||||
remove_cvref_t<decltype(out_grid_desc)>,
|
||||
tensor_operation::element_wise::PassThrough,
|
||||
decltype(thread_slice_lengths),
|
||||
decltype(dim_access_order),
|
||||
VectorDim,
|
||||
ScalarPerVector,
|
||||
InMemoryDataOperationEnum::Set,
|
||||
I1,
|
||||
true>{out_grid_desc,
|
||||
dst_tensor.GetMultiIdxOffsets(),
|
||||
tensor_operation::element_wise::PassThrough{}};
|
||||
|
||||
transfer.Run(in_grid_desc,
|
||||
src_slice_origin_idxs,
|
||||
src_tensor.GetBuffer(),
|
||||
out_grid_desc,
|
||||
dst_tensor.GetBuffer());
|
||||
}
|
||||
else if constexpr(SrcTensorType::IsDynamicBuffer && !DstTensorType::IsDynamicBuffer)
|
||||
{
|
||||
// Perform copy from DynamicBuffer to StaticBuffer
|
||||
const auto dst_slice_origin_idxs =
|
||||
generate_tuple([&](auto) { return I0; }, Number<num_dims>{});
|
||||
auto transfer = ThreadwiseTensorSliceTransfer_v2<
|
||||
std::remove_const_t<typename SrcTensorType::TensorElementType>,
|
||||
std::remove_const_t<typename DstTensorType::TensorElementType>,
|
||||
remove_cvref_t<decltype(in_grid_desc)>,
|
||||
remove_cvref_t<decltype(out_grid_desc)>,
|
||||
decltype(thread_slice_lengths),
|
||||
decltype(dim_access_order),
|
||||
VectorDim,
|
||||
ScalarPerVector,
|
||||
I1,
|
||||
false,
|
||||
false>{in_grid_desc, src_tensor.GetMultiIdxOffsets()};
|
||||
|
||||
transfer.Run(in_grid_desc,
|
||||
src_tensor.GetBuffer(),
|
||||
out_grid_desc,
|
||||
dst_slice_origin_idxs,
|
||||
dst_tensor.GetBuffer());
|
||||
}
|
||||
else
|
||||
{
|
||||
// Perform copy between StaticBuffers
|
||||
static_for<0, SrcShapeType::Size(), 1>{}([&](auto i) { dst_tensor(i) = src_tensor(i); });
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Perform generic copy between two tensors partitions (threadwise copy).
|
||||
* Tensors must have the same size.
|
||||
*
|
||||
* \param src_tensor Source tensor.
|
||||
* \param dst_tensor Destination tensor.
|
||||
*/
|
||||
template <typename SrcTensorType, typename DstTensorType>
|
||||
__host__ __device__ void copy(const SrcTensorType& src_tensor, DstTensorType& dst_tensor)
|
||||
{
|
||||
// Generate default params
|
||||
using SrcShapeType = remove_cvref_t<decltype(shape(src_tensor))>;
|
||||
constexpr index_t num_dims = SrcShapeType::Size();
|
||||
// Incrementing dims 0, 1, 2 ... num_dims - 1
|
||||
constexpr auto dim_access_order_tuple =
|
||||
generate_tuple([](auto i) { return Number<i>{}; }, Number<num_dims>{});
|
||||
constexpr index_t vector_dim = num_dims - 1;
|
||||
constexpr index_t scalar_per_vector = 1;
|
||||
copy<decltype(dim_access_order_tuple), vector_dim, scalar_per_vector>(src_tensor, dst_tensor);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Perform optimized blockwise copy between two tensors. Tensors must have the
|
||||
* same size.
|
||||
*
|
||||
* \note At now Vgpr and Sgpr are not supported.
|
||||
*
|
||||
* \tparam DimAccessOrderTuple Tuple with dimension access order.
|
||||
* \tparam VectorDim Dimension for vectorize read and write.
|
||||
* \tparam ScalarPerVector Number of scalar per vectorize read and write.
|
||||
* \param src_tensor Source tensor.
|
||||
* \param dst_tensor Destination tensor.
|
||||
* \param thread_layout Thread layout per each dimension for copy.
|
||||
*/
|
||||
template <typename DimAccessOrderTuple,
|
||||
index_t VectorDim,
|
||||
index_t ScalarPerVector,
|
||||
typename SrcTensorType,
|
||||
typename DstTensorType,
|
||||
typename ThreadShape,
|
||||
typename ThreadUnrolledDesc>
|
||||
__device__ void
|
||||
blockwise_copy(const SrcTensorType& src_tensor,
|
||||
DstTensorType& dst_tensor,
|
||||
[[maybe_unused]] const Layout<ThreadShape, ThreadUnrolledDesc>& thread_layout)
|
||||
{
|
||||
static_assert(SrcTensorType::IsDynamicBuffer && DstTensorType::IsDynamicBuffer);
|
||||
static_assert(is_detected<is_tuple, DimAccessOrderTuple>::value);
|
||||
|
||||
const auto& in_grid_desc = layout(src_tensor).GetUnrolledDescriptor();
|
||||
const auto& out_grid_desc = layout(dst_tensor).GetUnrolledDescriptor();
|
||||
|
||||
using SrcShapeType = remove_cvref_t<decltype(shape(src_tensor))>;
|
||||
constexpr index_t num_dims = SrcShapeType::Size();
|
||||
|
||||
constexpr auto tile_lengths_seq =
|
||||
generate_sequence_v2([](auto I) { return size(SrcShapeType{}.At(I)); }, Number<num_dims>{});
|
||||
constexpr auto thread_layout_seq =
|
||||
generate_sequence_v2([](auto I) { return size<I>(ThreadShape{}); }, Number<num_dims>{});
|
||||
constexpr auto dim_access_order = generate_sequence_v2(
|
||||
[](auto I) { return DimAccessOrderTuple{}.At(I); }, Number<num_dims>{});
|
||||
|
||||
using ThisThreadBlock = ThisThreadBlock<size(ThreadShape{})>;
|
||||
|
||||
// Perform copy between DynamicBuffers
|
||||
auto transfer = ThreadGroupTensorSliceTransfer_v7<
|
||||
ThisThreadBlock,
|
||||
Tuple<typename SrcTensorType::TensorElementType>,
|
||||
Tuple<typename DstTensorType::TensorElementType>,
|
||||
decltype(tie(in_grid_desc)),
|
||||
decltype(tie(out_grid_desc)),
|
||||
tensor_operation::element_wise::PassThrough,
|
||||
Sequence<static_cast<index_t>(InMemoryDataOperationEnum::Set)>,
|
||||
std::remove_const_t<decltype(tile_lengths_seq)>,
|
||||
std::remove_const_t<decltype(thread_layout_seq)>,
|
||||
std::remove_const_t<decltype(dim_access_order)>,
|
||||
std::remove_const_t<decltype(dim_access_order)>,
|
||||
VectorDim,
|
||||
ScalarPerVector,
|
||||
Sequence<true>,
|
||||
Sequence<true>>{in_grid_desc,
|
||||
make_tuple(src_tensor.GetMultiIdxOffsets()),
|
||||
out_grid_desc,
|
||||
make_tuple(dst_tensor.GetMultiIdxOffsets()),
|
||||
tensor_operation::element_wise::PassThrough{}};
|
||||
|
||||
transfer.Run(tie(in_grid_desc),
|
||||
tie(src_tensor.GetBuffer()),
|
||||
tie(out_grid_desc),
|
||||
tie(dst_tensor.GetBuffer()));
|
||||
}
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
395
include/ck/wrapper/operations/gemm.hpp
Normal file
395
include/ck/wrapper/operations/gemm.hpp
Normal file
@@ -0,0 +1,395 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/wrapper/utils/tensor_utils.hpp"
|
||||
#include "ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp"
|
||||
|
||||
#include "ck/host_utility/device_prop.hpp"
|
||||
#include "ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace {
|
||||
namespace detail {
|
||||
/**
|
||||
* \brief Create block descriptor (K0, MPerBlock or NPerBlock, K1).
|
||||
*
|
||||
*
|
||||
* \tparam K1 The number of K-dim elements that are packed together as a separate logical dimension.
|
||||
* \tparam TileLayout Tensor data tile layout (M,K) or (N,K).
|
||||
*
|
||||
* \return Block descriptor (K0, MPerBlock or NPerBlock, K1)
|
||||
*/
|
||||
template <index_t K1, typename TileLayout>
|
||||
__device__ constexpr auto GetBlockDescriptor()
|
||||
{
|
||||
using TileLayoutShape = typename TileLayout::LayoutShape;
|
||||
using TileLayoutDescriptor = typename TileLayout::LayoutUnrolledDescriptorType;
|
||||
|
||||
constexpr auto K0PerBlock = Number<size<1>(TileLayoutShape{})>{} / Number<K1>{};
|
||||
// MPerBlock or NPerBlock
|
||||
constexpr auto Dim0 = Number<size<0>(TileLayoutShape{})>{};
|
||||
|
||||
constexpr auto a_block_desc_k0_m_k1 = transform_tensor_descriptor(
|
||||
TileLayoutDescriptor{},
|
||||
make_tuple(make_unmerge_transform(make_tuple(K0PerBlock, Number<K1>{})),
|
||||
make_pass_through_transform(Dim0)),
|
||||
make_tuple(Sequence<1>{}, Sequence<0>{}),
|
||||
make_tuple(Sequence<0, 2>{}, Sequence<1>{}));
|
||||
|
||||
return a_block_desc_k0_m_k1;
|
||||
}
|
||||
|
||||
} // namespace detail
|
||||
} // namespace
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Perform blockwise gemm xdl on tensors stored in lds. Result will be
|
||||
* stored in Vgpr register. A data layout must be (MPerBlock, KPerBlock) or
|
||||
* (K0PerBlock, MPerBlock, K1) and B data layout must be (NPerBlock, KPerBlock)
|
||||
* or (K0PerBlock, NPerBlock, K1).
|
||||
*
|
||||
* \note C output Vgpr register layout (8D):
|
||||
* - MXdlPerWave - The number of MFMA instructions run by single wave in M
|
||||
* dimension per tile.
|
||||
* - NXdlPerWave - The number of MFMA instructions run by single wave in N
|
||||
* dimension per tile.
|
||||
* - MWave - Equals to 1 since this is for single wave.
|
||||
* - NWave - Equals to 1 since this is for single wave.
|
||||
* - NumGroupsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumInputsBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - GroupSize - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumThreadsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
*
|
||||
* \tparam DataType Input data types.
|
||||
* \tparam BlockSize Tensor to pad.
|
||||
* \tparam GemmTraits Traits of gemm xdl operation.
|
||||
* \param a_local_tile_tensor A tensor in LDS memory for blockwise gemm
|
||||
* (MPerBlock, KPerBlock) or (K0PerBlock, MPerBlock, K1) layout.
|
||||
* \param b_local_tile_tensor B tensor in LDS memory for blockwise gemm
|
||||
* (NPerBlock, KPerBlock) or (K0PerBlock, NPerBlock, K1) layout.
|
||||
* \param c_reg_tensor C tensor VGPR memory for blockwise gemm.
|
||||
*/
|
||||
template <typename DataType,
|
||||
index_t BlockSize,
|
||||
typename GemmTraits,
|
||||
typename ATensorType,
|
||||
typename BTensorType,
|
||||
typename CTensorType>
|
||||
__device__ void blockwise_gemm_xdl(const ATensorType& a_local_tile_tensor,
|
||||
const BTensorType& b_local_tile_tensor,
|
||||
CTensorType& c_reg_tensor)
|
||||
{
|
||||
constexpr auto I3 = Number<3>{};
|
||||
|
||||
static_assert(ATensorType::TensorBufferAddressSpace == MemoryTypeEnum::Lds);
|
||||
static_assert(BTensorType::TensorBufferAddressSpace == MemoryTypeEnum::Lds);
|
||||
static_assert(CTensorType::TensorBufferAddressSpace == MemoryTypeEnum::Vgpr);
|
||||
static_assert(is_same_v<DataType, typename ATensorType::TensorElementType>);
|
||||
static_assert(is_same_v<DataType, typename BTensorType::TensorElementType>);
|
||||
|
||||
constexpr bool is_integer =
|
||||
is_same_v<DataType, int8_t> || is_same_v<DataType, int16_t> || is_same_v<DataType, int32_t>;
|
||||
using GemmAccDataType = std::conditional_t<is_integer, int32_t, float>;
|
||||
|
||||
using ATileLayout = remove_cvref_t<decltype(layout(a_local_tile_tensor))>;
|
||||
using BTileLayout = remove_cvref_t<decltype(layout(b_local_tile_tensor))>;
|
||||
|
||||
static_assert(typename ATileLayout::LayoutShape{}.Size() ==
|
||||
typename BTileLayout::LayoutShape{}.Size());
|
||||
constexpr bool is_3d_desc = typename ATileLayout::LayoutShape{}.Size() == I3;
|
||||
|
||||
using ABlockDesc_K0_M_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename ATileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, ATileLayout>())>;
|
||||
using BBlockDesc_K0_N_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename BTileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, BTileLayout>())>;
|
||||
|
||||
BlockwiseGemmXdlops_k0mk1_k0nk1_m0n0m1n1m2m3m4n2_v1<BlockSize,
|
||||
DataType,
|
||||
DataType,
|
||||
GemmAccDataType,
|
||||
ABlockDesc_K0_M_K1_Type,
|
||||
BBlockDesc_K0_N_K1_Type,
|
||||
GemmTraits::MPerXDL,
|
||||
GemmTraits::NPerXDL,
|
||||
GemmTraits::MXdlPerWave,
|
||||
GemmTraits::NXdlPerWave,
|
||||
GemmTraits::K1>
|
||||
blockwise_gemm_xdl_op{};
|
||||
|
||||
blockwise_gemm_xdl_op.Run(
|
||||
a_local_tile_tensor.GetBuffer(), b_local_tile_tensor.GetBuffer(), c_reg_tensor.GetBuffer());
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create local partition per thread for C tensor.
|
||||
*
|
||||
* \note C output global memory layout (8D):
|
||||
* - MXdlPerWave - The number of MFMA instructions run by single wave in M
|
||||
* dimension.
|
||||
* - NXdlPerWave - The number of MFMA instructions run by single wave in N
|
||||
* dimension.
|
||||
* - MWave - The number of waves in single tile M dimension per tile.
|
||||
* - NWave - The number of waves in single tile N dimension per tile.
|
||||
* - NumGroupsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumInputsBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - GroupSize - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumThreadsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
*
|
||||
* \tparam DataType Input data types.
|
||||
* \tparam ATileLayout A tensor layout.
|
||||
* \tparam BTileLayout B tensor layout.
|
||||
* \tparam BlockSize Number of threads in block.
|
||||
* \tparam GemmTraits Traits of gemm xdl operation.
|
||||
* \param c_local_tile_tensor C tensor in LDS memory for blockwise gemm
|
||||
* (MPerBlock, NPerBlock) layout.
|
||||
*
|
||||
* \return Partition c tensor for blockwise gemm.
|
||||
*/
|
||||
template <typename DataType,
|
||||
typename ATileLayout,
|
||||
typename BTileLayout,
|
||||
index_t BlockSize,
|
||||
typename GemmTraits,
|
||||
typename CTensorType>
|
||||
__host__ __device__ constexpr auto
|
||||
make_blockwise_gemm_xdl_c_local_partition(CTensorType& c_local_tile_tensor)
|
||||
{
|
||||
constexpr auto I0 = Number<0>{};
|
||||
constexpr auto I1 = Number<1>{};
|
||||
constexpr auto I2 = Number<2>{};
|
||||
constexpr auto I3 = Number<3>{};
|
||||
constexpr auto I4 = Number<4>{};
|
||||
constexpr auto I5 = Number<5>{};
|
||||
constexpr auto I6 = Number<6>{};
|
||||
constexpr auto I7 = Number<7>{};
|
||||
|
||||
static_assert(typename ATileLayout::LayoutShape{}.Size() ==
|
||||
typename BTileLayout::LayoutShape{}.Size());
|
||||
|
||||
constexpr bool is_integer =
|
||||
is_same_v<DataType, int8_t> || is_same_v<DataType, int16_t> || is_same_v<DataType, int32_t>;
|
||||
using GemmAccDataType = std::conditional_t<is_integer, int32_t, float>;
|
||||
|
||||
constexpr bool is_3d_desc = typename ATileLayout::LayoutShape{}.Size() == I3;
|
||||
using ABlockDesc_K0_M_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename ATileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, ATileLayout>())>;
|
||||
using BBlockDesc_K0_N_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename BTileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, BTileLayout>())>;
|
||||
|
||||
using BlockwiseGemmXdlops =
|
||||
BlockwiseGemmXdlops_k0mk1_k0nk1_m0n0m1n1m2m3m4n2_v1<BlockSize,
|
||||
DataType,
|
||||
DataType,
|
||||
GemmAccDataType,
|
||||
ABlockDesc_K0_M_K1_Type,
|
||||
BBlockDesc_K0_N_K1_Type,
|
||||
GemmTraits::MPerXDL,
|
||||
GemmTraits::NPerXDL,
|
||||
GemmTraits::MXdlPerWave,
|
||||
GemmTraits::NXdlPerWave,
|
||||
GemmTraits::K1>;
|
||||
|
||||
constexpr auto c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2 =
|
||||
BlockwiseGemmXdlops::GetCBlockDescriptor_M0_N0_M1_N1_M2_M3_M4_N2();
|
||||
constexpr auto M0 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I0);
|
||||
constexpr auto N0 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I1);
|
||||
constexpr auto M1 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I2);
|
||||
constexpr auto N1 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I3);
|
||||
constexpr auto M2 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I4);
|
||||
constexpr auto M3 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I5);
|
||||
constexpr auto M4 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I6);
|
||||
constexpr auto N2 = c_block_desc_m0_n0_m1_n1_m2_m3_m4_n2.GetLength(I7);
|
||||
|
||||
// Calculate offset on grid
|
||||
const auto c_thread_mtx_on_block =
|
||||
BlockwiseGemmXdlops::CalculateCThreadOriginDataIndex(I0, I0, I0, I0);
|
||||
|
||||
const index_t m_thread_data_on_grid =
|
||||
c_local_tile_tensor.GetMultiIdxOffsets()[I0] + c_thread_mtx_on_block[I0];
|
||||
|
||||
const index_t n_thread_data_on_grid =
|
||||
c_local_tile_tensor.GetMultiIdxOffsets()[I1] + c_thread_mtx_on_block[I1];
|
||||
|
||||
const auto m_thread_data_on_grid_to_m0_m1_m2_m3_m4_adaptor = make_single_stage_tensor_adaptor(
|
||||
make_tuple(make_merge_transform(make_tuple(M0, M1, M2, M3, M4))),
|
||||
make_tuple(Sequence<0, 1, 2, 3, 4>{}),
|
||||
make_tuple(Sequence<0>{}));
|
||||
|
||||
const auto m_thread_data_on_grid_idx =
|
||||
m_thread_data_on_grid_to_m0_m1_m2_m3_m4_adaptor.CalculateBottomIndex(
|
||||
make_multi_index(m_thread_data_on_grid));
|
||||
|
||||
const auto n_thread_data_on_grid_to_n0_n1_n2_adaptor =
|
||||
make_single_stage_tensor_adaptor(make_tuple(make_merge_transform(make_tuple(N0, N1, N2))),
|
||||
make_tuple(Sequence<0, 1, 2>{}),
|
||||
make_tuple(Sequence<0>{}));
|
||||
|
||||
const auto n_thread_data_on_grid_idx =
|
||||
n_thread_data_on_grid_to_n0_n1_n2_adaptor.CalculateBottomIndex(
|
||||
make_multi_index(n_thread_data_on_grid));
|
||||
// Create partition shape based on descriptor dims.
|
||||
const auto partition_shape = make_tuple(M0, N0, I1, I1, M2, I1, M4, I1);
|
||||
|
||||
const auto partition_desc = BlockwiseGemmXdlops::MakeCGridDescriptor_M0_N0_M1_N1_M2_M3_M4_N2(
|
||||
layout(c_local_tile_tensor).GetUnrolledDescriptor());
|
||||
|
||||
const auto lower_upper_dims =
|
||||
generate_tuple([&](auto i) { return Sequence<i.value>{}; }, Number<8>{});
|
||||
|
||||
auto sliced_desc = transform_tensor_descriptor(
|
||||
partition_desc,
|
||||
make_tuple(
|
||||
make_slice_transform(partition_shape.At(Number<0>{}),
|
||||
m_thread_data_on_grid_idx[I0],
|
||||
partition_shape.At(Number<0>{}) + m_thread_data_on_grid_idx[I0]),
|
||||
make_slice_transform(partition_shape.At(Number<1>{}),
|
||||
n_thread_data_on_grid_idx[I0],
|
||||
partition_shape.At(Number<1>{}) + n_thread_data_on_grid_idx[I0]),
|
||||
make_slice_transform(partition_shape.At(Number<2>{}),
|
||||
m_thread_data_on_grid_idx[I1],
|
||||
partition_shape.At(Number<2>{}) + m_thread_data_on_grid_idx[I1]),
|
||||
make_slice_transform(partition_shape.At(Number<3>{}),
|
||||
n_thread_data_on_grid_idx[I1],
|
||||
partition_shape.At(Number<3>{}) + n_thread_data_on_grid_idx[I1]),
|
||||
make_slice_transform(partition_shape.At(Number<4>{}),
|
||||
m_thread_data_on_grid_idx[I2],
|
||||
partition_shape.At(Number<4>{}) + m_thread_data_on_grid_idx[I2]),
|
||||
make_slice_transform(partition_shape.At(Number<5>{}),
|
||||
m_thread_data_on_grid_idx[I3],
|
||||
partition_shape.At(Number<5>{}) + m_thread_data_on_grid_idx[I3]),
|
||||
make_slice_transform(partition_shape.At(Number<6>{}),
|
||||
m_thread_data_on_grid_idx[I4],
|
||||
partition_shape.At(Number<6>{}) + m_thread_data_on_grid_idx[I4]),
|
||||
make_slice_transform(partition_shape.At(Number<7>{}),
|
||||
n_thread_data_on_grid_idx[I2],
|
||||
partition_shape.At(Number<7>{}) + n_thread_data_on_grid_idx[I2])),
|
||||
lower_upper_dims,
|
||||
lower_upper_dims);
|
||||
|
||||
const auto partition_layout =
|
||||
Layout<remove_reference_t<decltype(partition_shape)>, decltype(sliced_desc)>(
|
||||
partition_shape, sliced_desc);
|
||||
auto partition_tensor = make_tensor<CTensorType::TensorBufferAddressSpace>(
|
||||
c_local_tile_tensor.GetPointer(), partition_layout);
|
||||
return partition_tensor;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create local partition per thread for C tensor.
|
||||
*
|
||||
* \note C output Vgpr register layout (8D):
|
||||
* - MXdlPerWave - The number of MFMA instructions run by single wave in M
|
||||
* dimension per tile.
|
||||
* - NXdlPerWave - The number of MFMA instructions run by single wave in N
|
||||
* dimension per tile.
|
||||
* - MWave - Equals to 1 since this is for single wave.
|
||||
* - NWave - Equals to 1 since this is for single wave.
|
||||
* - NumGroupsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumInputsBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - GroupSize - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
* - NumThreadsPerBlock - Mfma instruction internal layout (depeneds on the
|
||||
* instruction size).
|
||||
*
|
||||
* \tparam DataType Input data types.
|
||||
* \tparam ATileLayout A tensor layout.
|
||||
* \tparam BTileLayout B tensor layout.
|
||||
* \tparam BlockSize Number of threads in block.
|
||||
* \tparam GemmTraits Traits of gemm xdl operation.
|
||||
*
|
||||
* \return Vgpr c tensor for blockwise gemm.
|
||||
*/
|
||||
template <typename DataType,
|
||||
typename ATileLayout,
|
||||
typename BTileLayout,
|
||||
index_t BlockSize,
|
||||
typename GemmTraits>
|
||||
__host__ __device__ constexpr auto make_blockwise_gemm_xdl_c_vgpr()
|
||||
{
|
||||
constexpr auto I0 = Number<0>{};
|
||||
constexpr auto I1 = Number<1>{};
|
||||
constexpr auto I2 = Number<2>{};
|
||||
constexpr auto I3 = Number<3>{};
|
||||
constexpr auto I4 = Number<4>{};
|
||||
constexpr auto I5 = Number<5>{};
|
||||
constexpr auto I6 = Number<6>{};
|
||||
constexpr auto I7 = Number<7>{};
|
||||
|
||||
static_assert(typename ATileLayout::LayoutShape{}.Size() ==
|
||||
typename BTileLayout::LayoutShape{}.Size());
|
||||
|
||||
constexpr bool is_integer =
|
||||
is_same_v<DataType, int8_t> || is_same_v<DataType, int16_t> || is_same_v<DataType, int32_t>;
|
||||
using GemmAccDataType = std::conditional_t<is_integer, int32_t, float>;
|
||||
|
||||
constexpr bool is_3d_desc = typename ATileLayout::LayoutShape{}.Size() == I3;
|
||||
using ABlockDesc_K0_M_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename ATileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, ATileLayout>())>;
|
||||
using BBlockDesc_K0_N_K1_Type =
|
||||
conditional_t<is_3d_desc,
|
||||
typename BTileLayout::LayoutUnrolledDescriptorType,
|
||||
decltype(detail::GetBlockDescriptor<GemmTraits::K1, BTileLayout>())>;
|
||||
|
||||
using BlockwiseGemmXdlops =
|
||||
BlockwiseGemmXdlops_k0mk1_k0nk1_m0n0m1n1m2m3m4n2_v1<BlockSize,
|
||||
DataType,
|
||||
DataType,
|
||||
GemmAccDataType,
|
||||
ABlockDesc_K0_M_K1_Type,
|
||||
BBlockDesc_K0_N_K1_Type,
|
||||
GemmTraits::MPerXDL,
|
||||
GemmTraits::NPerXDL,
|
||||
GemmTraits::MXdlPerWave,
|
||||
GemmTraits::NXdlPerWave,
|
||||
GemmTraits::K1>;
|
||||
// Calcualte descriptor, shape and layout
|
||||
constexpr auto vgpr_desc = BlockwiseGemmXdlops::GetCThreadDescriptor_M0_N0_M1_N1_M2_M3_M4_N2();
|
||||
const auto vgpr_shape = make_tuple(vgpr_desc.GetLengths()[I0],
|
||||
vgpr_desc.GetLengths()[I1],
|
||||
vgpr_desc.GetLengths()[I2],
|
||||
vgpr_desc.GetLengths()[I3],
|
||||
vgpr_desc.GetLengths()[I4],
|
||||
vgpr_desc.GetLengths()[I5],
|
||||
vgpr_desc.GetLengths()[I6],
|
||||
vgpr_desc.GetLengths()[I7]);
|
||||
const auto vgpr_layout = Layout<remove_reference_t<decltype(vgpr_shape)>, decltype(vgpr_desc)>(
|
||||
vgpr_shape, vgpr_desc);
|
||||
// Get vector type for Vgpr
|
||||
constexpr index_t ScalarPerVector = BlockwiseGemmXdlops::xdlops_gemm.GetRegSizePerXdlops();
|
||||
using VgprVectorType = typename vector_type<GemmAccDataType, ScalarPerVector>::type;
|
||||
return ck::wrapper::make_register_tensor<ck::wrapper::MemoryTypeEnum::Vgpr, VgprVectorType>(
|
||||
vgpr_layout);
|
||||
}
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
443
include/ck/wrapper/tensor.hpp
Normal file
443
include/ck/wrapper/tensor.hpp
Normal file
@@ -0,0 +1,443 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "utils/tensor_utils.hpp"
|
||||
#include "utils/tensor_partition.hpp"
|
||||
#include "utils/layout_utils.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace {
|
||||
namespace detail {
|
||||
/**
|
||||
* \brief Check if Tuple contains Slice object
|
||||
*
|
||||
* \return True if tuple contains Slice object.
|
||||
*/
|
||||
template <typename T>
|
||||
__host__ __device__ constexpr bool HasSlice(T&&)
|
||||
{
|
||||
return is_detected<is_slice, T>::value;
|
||||
}
|
||||
template <typename... Ts>
|
||||
__host__ __device__ constexpr bool HasSlice(Tuple<Ts...>&&)
|
||||
{
|
||||
return (HasSlice(Ts{}) || ...);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate new shape after slice from parent shape.
|
||||
*
|
||||
* \param idxs Tuple of indexes defining slice ranges.
|
||||
* \param shape Shape which will be sliced.
|
||||
* \return New tensor shape.
|
||||
*/
|
||||
template <typename... Ts, typename SlicedShape>
|
||||
__host__ __device__ constexpr auto GetSlicedShape(const Tuple<Ts...>& idxs,
|
||||
const SlicedShape& shape)
|
||||
{
|
||||
// Pack each value in tuple to remove empty tuples after generation
|
||||
auto new_shape = generate_tuple(
|
||||
[&](auto i) {
|
||||
constexpr auto num_i = Number<i>{};
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<i.value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
if constexpr(!detail::HasSlice(tuple_element_t<i.value, Tuple<Ts...>>{}))
|
||||
{
|
||||
// if tuple does not have any slice then we can remove dimension
|
||||
return Tuple<>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
// if tuple then recurrence
|
||||
return make_tuple(GetSlicedShape(idxs.At(num_i), shape.At(num_i)));
|
||||
}
|
||||
}
|
||||
else if constexpr(is_detected<is_slice, tuple_element_t<i.value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
// calculate new dimension
|
||||
const auto& dim = size(shape.At(num_i));
|
||||
const auto val = idxs.At(num_i).range(dim);
|
||||
return make_tuple(val);
|
||||
}
|
||||
else
|
||||
{
|
||||
// remove dimension for just value
|
||||
return Tuple<>{};
|
||||
}
|
||||
},
|
||||
Number<Tuple<Ts...>::Size()>{});
|
||||
// Remove empty tuples (deleted elements) and return
|
||||
return UnrollNestedTuple<0, 1>(new_shape);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Generate Freeze for each of nested shape.
|
||||
*
|
||||
* \param idx Tuple of start indices for slice.
|
||||
* \param shape Shape which will be freezed.
|
||||
* \return Generated freeze transforms.
|
||||
*/
|
||||
template <typename T, typename Shape>
|
||||
__host__ __device__ constexpr auto GenerateMultipleFreeze(T idx, const Shape& shape)
|
||||
{
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape);
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
// dimension offset from idx
|
||||
const auto dim = unrolled_shape.At(Number<i>{});
|
||||
const auto dim_idx = idx % dim;
|
||||
idx /= dim;
|
||||
return make_freeze_transform(dim_idx);
|
||||
},
|
||||
Number<decltype(unrolled_shape)::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Generate transforms for slice tensor.
|
||||
*
|
||||
* \param idx Tuple of start indices for slice.
|
||||
* \param shape Shape which will be sliced.
|
||||
* \return Generated transforms.
|
||||
*/
|
||||
template <typename... Ts, typename Shape>
|
||||
__host__ __device__ constexpr auto GenerateSliceTransforms(const Tuple<Ts...>& idx,
|
||||
const Shape& shape)
|
||||
{
|
||||
// Pack each value in tuple to remove empty tuples after generation
|
||||
auto transforms = generate_tuple(
|
||||
[&](auto i) {
|
||||
constexpr auto num_i = Number<i>{};
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<i.value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
return GenerateSliceTransforms(idx.At(num_i), shape.At(num_i));
|
||||
}
|
||||
else if constexpr(is_detected<is_slice, tuple_element_t<i.value, Tuple<Ts...>>>::value)
|
||||
{
|
||||
|
||||
const auto from = idx.At(num_i).from_;
|
||||
const auto dim = size<num_i>(shape);
|
||||
const auto range = idx.At(num_i).range(dim);
|
||||
return make_slice_transform(range, from, from + range);
|
||||
}
|
||||
else
|
||||
{
|
||||
// remove dimension for just value
|
||||
return GenerateMultipleFreeze(idx.At(num_i), shape.At(num_i));
|
||||
}
|
||||
},
|
||||
Number<Tuple<Ts...>::Size()>{});
|
||||
// Remove empty tuples (deleted elements) and return
|
||||
return UnrollNestedTuple(transforms);
|
||||
}
|
||||
|
||||
template <index_t i, typename LowerIndex>
|
||||
__host__ __device__ constexpr auto GetSequenceVal(const ck::Freeze<LowerIndex>&)
|
||||
{
|
||||
// There is no output for Freeze transform
|
||||
return Sequence<>{};
|
||||
}
|
||||
|
||||
template <index_t i, typename LowLength, typename SliceBegin, typename SliceEnd>
|
||||
__host__ __device__ constexpr auto GetSequenceVal(const ck::Slice<LowLength, SliceBegin, SliceEnd>&)
|
||||
{
|
||||
return Sequence<i>{};
|
||||
}
|
||||
|
||||
template <index_t i>
|
||||
__host__ __device__ constexpr auto GenerateUpperDims(const Tuple<>&)
|
||||
{
|
||||
return Tuple<>{};
|
||||
}
|
||||
|
||||
template <index_t i, typename... Transforms>
|
||||
__host__ __device__ constexpr auto GenerateUpperDims(const Tuple<Transforms...>& transforms)
|
||||
{
|
||||
constexpr auto num_transforms = Tuple<Transforms...>::Size();
|
||||
// Deduce Sequence element for specific transform
|
||||
const auto current_elem = GetSequenceVal<i>(transforms.At(Number<0>{}));
|
||||
if constexpr(is_same_v<decltype(current_elem), const Sequence<>>)
|
||||
{
|
||||
const auto next_tuple = GenerateUpperDims<i>(TupleSlice<1, num_transforms>(transforms));
|
||||
return concat_tuple(make_tuple(current_elem), next_tuple);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Increase i if current_elem is Slice transform
|
||||
const auto next_tuple = GenerateUpperDims<i + 1>(TupleSlice<1, num_transforms>(transforms));
|
||||
return concat_tuple(make_tuple(current_elem), next_tuple);
|
||||
}
|
||||
}
|
||||
|
||||
template <typename... Ts, typename Shape, typename UnrolledDescriptor>
|
||||
__host__ __device__ constexpr auto GenerateSlicedDescriptor(const Tuple<Ts...>& idx,
|
||||
const Shape& shape,
|
||||
const UnrolledDescriptor& flatten_desc)
|
||||
{
|
||||
constexpr auto old_shape_dims = decltype(UnrollNestedTuple(shape))::Size();
|
||||
|
||||
const auto transforms = GenerateSliceTransforms(idx, shape);
|
||||
using TransformsTupleType = decltype(transforms);
|
||||
|
||||
const auto lower_dims =
|
||||
generate_tuple([&](auto i) { return Sequence<i.value>{}; }, Number<old_shape_dims>{});
|
||||
const auto upper_dims = decltype(GenerateUpperDims<0>(TransformsTupleType{})){};
|
||||
return transform_tensor_descriptor(flatten_desc, transforms, lower_dims, upper_dims);
|
||||
}
|
||||
} // namespace detail
|
||||
} // namespace
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Tensor wrapper that performs static and dynamic buffer logic.
|
||||
* The tensor is based on a descriptor stored in the Layout. Additionally,
|
||||
* tensor can be sliced or shifted using multi-index offset.
|
||||
*
|
||||
* \tparam BufferAddressSpace Memory type (Generic, Global, LDS, VGPR, SGPR).
|
||||
* \tparam ElementType Element data type.
|
||||
* \tparam Shape Tensor shape (layout component).
|
||||
* \tparam UnrolledDescriptorType Flatten descriptor (layout component).
|
||||
*/
|
||||
template <MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
struct Tensor
|
||||
{
|
||||
public:
|
||||
using ElementSpaceSize = decltype(Layout<Shape, UnrolledDescriptorType>{
|
||||
Shape{}, UnrolledDescriptorType{}}.GetElementSpaceSize()); // SpaceSize type for buffer
|
||||
using TensorElementType = std::conditional_t<
|
||||
is_scalar_type<ElementType>::value,
|
||||
ElementType,
|
||||
typename scalar_type<std::remove_const_t<ElementType>>::type>; // DataType
|
||||
|
||||
static constexpr MemoryTypeEnum TensorBufferAddressSpace = BufferAddressSpace;
|
||||
static constexpr bool IsDynamicBuffer = !(BufferAddressSpace == MemoryTypeEnum ::Sgpr ||
|
||||
BufferAddressSpace == MemoryTypeEnum ::Vgpr);
|
||||
|
||||
__host__ __device__ Tensor() = delete;
|
||||
__host__ __device__ constexpr Tensor(ElementType* pointer,
|
||||
const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
: layout_(layout),
|
||||
buffer_(make_dynamic_buffer<BufferAddressSpace>(pointer, layout.GetElementSpaceSize())),
|
||||
multi_idx_offset_(make_zero_multi_index<Shape::Size()>()),
|
||||
base_offset_(0)
|
||||
{
|
||||
static_assert(IsDynamicBuffer, "Wrong BufferAddressSpace for register.");
|
||||
}
|
||||
|
||||
__host__ __device__ constexpr Tensor(const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
: layout_(layout),
|
||||
multi_idx_offset_(make_zero_multi_index<Shape::Size()>()),
|
||||
base_offset_(0)
|
||||
{
|
||||
static_assert(!IsDynamicBuffer, "Wrong BufferAddressSpace for register.");
|
||||
}
|
||||
|
||||
__host__ __device__ constexpr const Layout<Shape, UnrolledDescriptorType>& GetLayout() const
|
||||
{
|
||||
return layout_;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get the new sliced tensor.
|
||||
*
|
||||
* \param idx Tuple of indices: slice(from,to) or scalar.
|
||||
* \return Sliced tensor.
|
||||
*/
|
||||
template <typename... Ts, enable_if_t<detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ auto operator[](const Tuple<Ts...>& idx)
|
||||
{
|
||||
static_assert(IsDynamicBuffer, "Register slice is not supported");
|
||||
const auto& shape = layout_.GetShape();
|
||||
auto new_shape = detail::GetSlicedShape(idx, shape);
|
||||
|
||||
const auto& flatten_desc = layout_.GetUnrolledDescriptor();
|
||||
auto new_desc = detail::GenerateSlicedDescriptor(idx, shape, flatten_desc);
|
||||
const auto new_layout =
|
||||
Layout<decltype(new_shape), decltype(new_desc)>(new_shape, new_desc);
|
||||
// Update embed offset
|
||||
base_offset_ -= new_layout(make_tuple(Number<0>{}));
|
||||
return make_tensor<BufferAddressSpace>(buffer_.p_data_, new_layout);
|
||||
}
|
||||
|
||||
template <typename... Ts, enable_if_t<detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ auto operator()(const Tuple<Ts...>& idx)
|
||||
{
|
||||
return this->operator[](idx);
|
||||
}
|
||||
|
||||
template <typename... Idxs, enable_if_t<detail::HasSlice(Tuple<Idxs...>{}), bool> = false>
|
||||
__host__ __device__ auto operator()(Idxs... idxs)
|
||||
{
|
||||
return this->operator[](make_tuple(idxs...));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Getter of the tensor's const value reference.
|
||||
*
|
||||
* \param idx Tuple of indices.
|
||||
* \return Requested value.
|
||||
*/
|
||||
template <typename... Ts, enable_if_t<!detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ const TensorElementType& operator[](const Tuple<Ts...>& idx) const
|
||||
{
|
||||
if constexpr(IsDynamicBuffer)
|
||||
{
|
||||
const index_t offset = layout_(idx) + base_offset_;
|
||||
return buffer_[offset];
|
||||
}
|
||||
else
|
||||
{
|
||||
constexpr index_t index_offset = Layout<Shape, UnrolledDescriptorType>{
|
||||
Shape{},
|
||||
UnrolledDescriptorType{}}.template operator()<Tuple<Ts...>>();
|
||||
// Calculate and apply base offset in compile-time
|
||||
constexpr index_t base_offset = Layout<Shape, UnrolledDescriptorType>{
|
||||
Shape{},
|
||||
UnrolledDescriptorType{}}.template operator()<MultiIndex<Shape::Size()>>();
|
||||
return buffer_[Number<index_offset + base_offset>{}];
|
||||
}
|
||||
}
|
||||
|
||||
template <typename... Ts, enable_if_t<!detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ const TensorElementType& operator()(const Tuple<Ts...>& idx) const
|
||||
{
|
||||
return this->operator[](idx);
|
||||
}
|
||||
|
||||
template <typename... Idxs, enable_if_t<!detail::HasSlice(Tuple<Idxs...>{}), bool> = false>
|
||||
__host__ __device__ const TensorElementType& operator()(Idxs... idxs) const
|
||||
{
|
||||
return this->operator[](make_tuple(idxs...));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Getter of tensor value reference.
|
||||
*
|
||||
* \param idx Tuple of indices.
|
||||
* \return Requested value.
|
||||
*/
|
||||
template <typename... Ts, enable_if_t<!detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ TensorElementType& operator[](const Tuple<Ts...>& idx)
|
||||
{
|
||||
if constexpr(IsDynamicBuffer)
|
||||
{
|
||||
const index_t offset = layout_(idx) + base_offset_;
|
||||
return buffer_(offset);
|
||||
}
|
||||
else
|
||||
{
|
||||
constexpr index_t index_offset = Layout<Shape, UnrolledDescriptorType>{
|
||||
Shape{},
|
||||
UnrolledDescriptorType{}}.template operator()<Tuple<Ts...>>();
|
||||
// Apply embed offset (calculate in compiletime)
|
||||
constexpr index_t base_offset = Layout<Shape, UnrolledDescriptorType>{
|
||||
Shape{},
|
||||
UnrolledDescriptorType{}}.template operator()<MultiIndex<Shape::Size()>>();
|
||||
return buffer_(Number<index_offset + base_offset>{});
|
||||
}
|
||||
}
|
||||
|
||||
template <typename... Ts, enable_if_t<!detail::HasSlice(Tuple<Ts...>{}), bool> = false>
|
||||
__host__ __device__ TensorElementType& operator()(const Tuple<Ts...>& idx)
|
||||
{
|
||||
return this->operator[](idx);
|
||||
}
|
||||
|
||||
template <typename... Idxs, enable_if_t<!detail::HasSlice(Tuple<Idxs...>{}), bool> = false>
|
||||
__host__ __device__ TensorElementType& operator()(Idxs... idxs)
|
||||
{
|
||||
return this->operator[](make_tuple(idxs...));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get descriptor with all nested dimensions merged.
|
||||
*
|
||||
* \return Merged nests descriptor.
|
||||
*/
|
||||
__host__ __device__ constexpr auto GetMergedNestingDescriptor()
|
||||
{
|
||||
return layout_.GetMergedNestingDescriptor();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get pointer to the data.
|
||||
*
|
||||
* \return Pointer.
|
||||
*/
|
||||
__host__ __device__ TensorElementType* GetPointer() const { return buffer_.p_data_; }
|
||||
|
||||
__host__ __device__ constexpr auto& GetBuffer() { return buffer_; }
|
||||
__host__ __device__ constexpr auto& GetBuffer() const { return buffer_; }
|
||||
|
||||
/**
|
||||
* \brief Get multi index offset to the data.
|
||||
*
|
||||
* \return Multi index offset.
|
||||
*/
|
||||
__host__ __device__ constexpr auto& GetMultiIdxOffsets() const { return multi_idx_offset_; }
|
||||
|
||||
/**
|
||||
* \brief Apply multi index offset on the tensor.
|
||||
*
|
||||
* \param multi_idx_offset Multi index offset.
|
||||
*/
|
||||
template <typename MultiIdxOffsets>
|
||||
__host__ __device__ constexpr void SetMultiIdxOffset(const MultiIdxOffsets multi_idx_offset)
|
||||
{
|
||||
multi_idx_offset_ = multi_idx_offset;
|
||||
base_offset_ += layout_(multi_idx_offset);
|
||||
}
|
||||
|
||||
private:
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
using DynamicBufferType = DynamicBuffer<BufferAddressSpace,
|
||||
ElementType,
|
||||
ElementSpaceSize,
|
||||
true /*InvalidElementUseNumericalZeroValue*/>;
|
||||
using StaticBufferType = std::conditional_t<
|
||||
is_scalar_type<ElementType>::value,
|
||||
StaticBuffer<BufferAddressSpace,
|
||||
ElementType,
|
||||
size(Shape{}),
|
||||
true /*InvalidElementUseNumericalZeroValue*/>,
|
||||
StaticBufferTupleOfVector<BufferAddressSpace,
|
||||
TensorElementType,
|
||||
size(Shape{}) /
|
||||
scalar_type<std::remove_const_t<ElementType>>::vector_size,
|
||||
scalar_type<std::remove_const_t<ElementType>>::vector_size,
|
||||
true /*InvalidElementUseNumericalZeroValue*/>>;
|
||||
// If register use static buffer, else use dynamic buffer
|
||||
using Buffer = std::conditional_t<IsDynamicBuffer, DynamicBufferType, StaticBufferType>;
|
||||
|
||||
const Layout<Shape, UnrolledDescriptorType> layout_;
|
||||
Buffer buffer_;
|
||||
// We use multi_idx_offset_ to enable the creation of a descriptor in
|
||||
// compile time for partitions or tiles if tile shape and thread layout
|
||||
// is known at compile time (We can use the same descriptor for each
|
||||
// thread). Additionally, the copy between the static and dynamic buffer
|
||||
// requires a descriptor known at compile time, so we can shift data using
|
||||
// such multi_idx_offset_.
|
||||
MultiIndex<Shape::Size()> multi_idx_offset_;
|
||||
// Base offset and multi index offset are corresponding to exactly the
|
||||
// same element in tensor ( and in physical memory ). Multi index offset
|
||||
// is multi dimensional index. However base offset is calculated using
|
||||
// tensor descriptor (thus all it's transforms) and is linear (1D).
|
||||
// We store base_offset_ to avoid multiple recalculations.
|
||||
index_t base_offset_;
|
||||
/// @endcond
|
||||
};
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
81
include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp
Normal file
81
include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp
Normal file
@@ -0,0 +1,81 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/ck.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Traits for blockwise gemm xdl.
|
||||
*
|
||||
* \tparam MPerXDLValue The MFMA instruction size in M dimension.
|
||||
* \tparam NPerXDLValue The MFMA instruction size in N dimension.
|
||||
* \tparam MXdlPerWaveValue The number of MFMA instructions run by single
|
||||
* wave in M dimension.
|
||||
* \tparam NXdlPerWaveValue The number of MFMA instructions run by single
|
||||
* wave in N dimension.
|
||||
* \tparam K1Value The number of K-dim elements that are packed together as
|
||||
* a separate logical dimension. Usually aligns with vector load size.
|
||||
*/
|
||||
template <typename MPerXDLValue,
|
||||
typename NPerXDLValue,
|
||||
typename MXdlPerWaveValue,
|
||||
typename NXdlPerWaveValue,
|
||||
typename K1Value>
|
||||
struct BlockwisGemmXdlTraits
|
||||
{
|
||||
static constexpr auto MPerXDL = MPerXDLValue{};
|
||||
static constexpr auto NPerXDL = NPerXDLValue{};
|
||||
static constexpr auto MXdlPerWave = MXdlPerWaveValue{};
|
||||
static constexpr auto NXdlPerWave = NXdlPerWaveValue{};
|
||||
static constexpr auto K1 = K1Value{};
|
||||
};
|
||||
|
||||
// K1 = 4
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_4x2XdlPerWave_4K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<4>, Number<2>, Number<4>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x4XdlPerWave_4K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<4>, Number<4>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x2XdlPerWave_4K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<2>, Number<4>>
|
||||
{
|
||||
};
|
||||
// K1 = 8
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_4x2XdlPerWave_8K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<4>, Number<2>, Number<8>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x4XdlPerWave_8K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<4>, Number<8>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x2XdlPerWave_8K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<2>, Number<8>>
|
||||
{
|
||||
};
|
||||
// K1 = 16
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_4x2XdlPerWave_16K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<4>, Number<2>, Number<16>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x4XdlPerWave_16K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<4>, Number<16>>
|
||||
{
|
||||
};
|
||||
struct BlockwisGemmXdlTraits_32x32Xdl_2x2XdlPerWave_16K1
|
||||
: BlockwisGemmXdlTraits<Number<32>, Number<32>, Number<2>, Number<2>, Number<16>>
|
||||
{
|
||||
};
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
17
include/ck/wrapper/utils/kernel_utils.hpp
Normal file
17
include/ck/wrapper/utils/kernel_utils.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/ck.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
#define __CK_WRAPPER_LAUNCH_BOUNDS__ __launch_bounds__(CK_MAX_THREAD_PER_BLOCK, CK_MIN_BLOCK_PER_CU)
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
523
include/ck/wrapper/utils/layout_utils.hpp
Normal file
523
include/ck/wrapper/utils/layout_utils.hpp
Normal file
@@ -0,0 +1,523 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/ck.hpp"
|
||||
|
||||
#include "ck/utility/number.hpp"
|
||||
#include "ck/utility/tuple.hpp"
|
||||
#include "ck/utility/tuple_helper.hpp"
|
||||
#include "ck/utility/sequence.hpp"
|
||||
#include "ck/utility/sequence_helper.hpp"
|
||||
#include "ck/utility/is_detected.hpp"
|
||||
|
||||
#include "ck/tensor_description/tensor_descriptor.hpp"
|
||||
#include "ck/tensor_description/tensor_descriptor_helper.hpp"
|
||||
#include "ck/tensor_description/multi_index_transform_helper.hpp"
|
||||
#include "ck/tensor_operation/gpu/device/matrix_padder.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
// forward declaration
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
struct Layout;
|
||||
|
||||
template <typename T>
|
||||
using is_tuple = decltype(std::declval<T&>().IsTuple());
|
||||
|
||||
namespace {
|
||||
namespace detail {
|
||||
/**
|
||||
* \brief Generate packed (column-major) strides if not passed
|
||||
*
|
||||
* \param shape Tensor shape.
|
||||
* \return Generated column-major strides.
|
||||
*/
|
||||
template <typename... Ts>
|
||||
__host__ __device__ constexpr static auto
|
||||
GenerateColumnMajorPackedStrides(const Tuple<Ts...>& shape)
|
||||
{
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape);
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(i.value == 0)
|
||||
{
|
||||
return Number<1>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
return TupleReduce<Number<0>{}.value, i.value>([](auto x, auto y) { return x * y; },
|
||||
unrolled_shape);
|
||||
}
|
||||
},
|
||||
Number<decltype(unrolled_shape)::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create naive tensor descriptor from nested shape.
|
||||
*
|
||||
* \param shape Tensor shape.
|
||||
* \param strides Tensor strides.
|
||||
* \return Unrolled descriptor
|
||||
*/
|
||||
template <typename LayoutShape, typename LayoutStrides>
|
||||
__host__ __device__ constexpr auto MakeUnrolledDescriptor(const LayoutShape& shape,
|
||||
const LayoutStrides& strides)
|
||||
{
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape);
|
||||
if constexpr(is_same_v<LayoutStrides, Tuple<>>)
|
||||
{
|
||||
// if not passed, then generate
|
||||
const auto unrolled_strides = GenerateColumnMajorPackedStrides(unrolled_shape);
|
||||
static_assert(unrolled_shape.Size() == unrolled_strides.Size(),
|
||||
"Size of strides and shape are not consistent.");
|
||||
return make_naive_tensor_descriptor(unrolled_shape, unrolled_strides);
|
||||
}
|
||||
else
|
||||
{
|
||||
const auto unrolled_strides = UnrollNestedTuple(strides);
|
||||
static_assert(unrolled_shape.Size() == unrolled_strides.Size(),
|
||||
"Size of strides and shape are not consistent.");
|
||||
return make_naive_tensor_descriptor(unrolled_shape, unrolled_strides);
|
||||
}
|
||||
}
|
||||
} // namespace detail
|
||||
} // namespace
|
||||
|
||||
/// @endcond
|
||||
|
||||
// make_*
|
||||
/**
|
||||
* \brief Make layout function.
|
||||
*
|
||||
* \tparam Shape Shape for layout.
|
||||
* \tparam Strides Strides for layout.
|
||||
* \return Constructed layout.
|
||||
*/
|
||||
template <typename Shape, typename Strides>
|
||||
__host__ __device__ constexpr auto make_layout(const Shape& shape, const Strides& strides)
|
||||
{
|
||||
using UnrolledDescriptorType = decltype(detail::MakeUnrolledDescriptor(Shape{}, Strides{}));
|
||||
return Layout<Shape, UnrolledDescriptorType>(shape,
|
||||
detail::MakeUnrolledDescriptor(shape, strides));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Make layout function with packed strides
|
||||
* (column-major).
|
||||
*
|
||||
* \tparam Shape Shape for layout.
|
||||
* \return Constructed layout.
|
||||
*/
|
||||
template <typename Shape>
|
||||
__host__ __device__ constexpr auto make_layout(const Shape& shape)
|
||||
{
|
||||
using UnrolledDescriptorType = decltype(detail::MakeUnrolledDescriptor(Shape{}, Tuple<>{}));
|
||||
return Layout<Shape, UnrolledDescriptorType>(shape,
|
||||
detail::MakeUnrolledDescriptor(shape, Tuple<>{}));
|
||||
}
|
||||
// Layout helpers
|
||||
// get
|
||||
/**
|
||||
* \private
|
||||
* \brief Get dim.
|
||||
*
|
||||
* \param dim Dimension.
|
||||
* \return Returned the same dimension.
|
||||
*/
|
||||
template <typename T>
|
||||
__host__ __device__ T constexpr get(const T& dim)
|
||||
{
|
||||
return dim;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get element from tuple (Shape/Strides/Idxs).
|
||||
*
|
||||
* \tparam idx Index to lookup.
|
||||
* \param tuple Tuple to lookup.
|
||||
* \return Requsted element.
|
||||
*/
|
||||
template <index_t idx, typename... Dims>
|
||||
__host__ __device__ constexpr auto get(const Tuple<Dims...>& tuple)
|
||||
{
|
||||
return tuple.At(Number<idx>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get sub layout.
|
||||
*
|
||||
* \tparam idx Index to lookup.
|
||||
* \param layout Layout to create sub layout.
|
||||
* \return Requsted sub layout.
|
||||
*/
|
||||
template <index_t idx, typename Shape, typename UnrolledDesc>
|
||||
__host__ __device__ constexpr auto get(const Layout<Shape, UnrolledDesc>& layout)
|
||||
{
|
||||
const auto& shape = layout.GetShape();
|
||||
const auto new_shape = get<idx>(shape);
|
||||
static_assert(is_detected<is_tuple, decltype(new_shape)>::value,
|
||||
"Shape of sub layout must be tuple");
|
||||
|
||||
constexpr auto old_shape_dims = decltype(UnrollNestedTuple(shape))::Size();
|
||||
constexpr auto new_shape_dims = decltype(UnrollNestedTuple(new_shape))::Size();
|
||||
constexpr auto shape_offset = decltype(UnrollNestedTuple(TupleSlice<0, idx>(shape)))::Size();
|
||||
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape);
|
||||
const auto transforms = generate_tuple(
|
||||
[&](auto i) {
|
||||
// Compare Idx with shape
|
||||
if constexpr(i < shape_offset || i >= shape_offset + new_shape_dims)
|
||||
{
|
||||
// Remove dimension
|
||||
return make_freeze_transform(Number<0>{});
|
||||
}
|
||||
else
|
||||
{
|
||||
return make_pass_through_transform(unrolled_shape.At(i));
|
||||
}
|
||||
},
|
||||
Number<old_shape_dims>{});
|
||||
|
||||
const auto lower_dims =
|
||||
generate_tuple([&](auto i) { return Sequence<i.value>{}; }, Number<old_shape_dims>{});
|
||||
const auto upper_dims = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(i < shape_offset || i >= shape_offset + new_shape_dims)
|
||||
return Sequence<>{};
|
||||
|
||||
else
|
||||
{
|
||||
return Sequence<i.value - shape_offset>{};
|
||||
}
|
||||
},
|
||||
Number<old_shape_dims>{});
|
||||
|
||||
const auto& flatten_desc = layout.GetUnrolledDescriptor();
|
||||
auto new_desc = transform_tensor_descriptor(flatten_desc, transforms, lower_dims, upper_dims);
|
||||
return Layout<decltype(new_shape), decltype(new_desc)>(new_shape, new_desc);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Hierarchical get.
|
||||
*
|
||||
* \tparam Idxs Indexes to lookup.
|
||||
* \param elem Element to lookup.
|
||||
* \return Requsted element.
|
||||
*/
|
||||
template <index_t Idx, index_t... Idxs, typename T>
|
||||
__host__ __device__ constexpr auto get(const T& elem)
|
||||
{
|
||||
return get<Idxs...>(get<Idx>(elem));
|
||||
}
|
||||
|
||||
// size
|
||||
/**
|
||||
* \private
|
||||
* \brief Get size.
|
||||
*
|
||||
* \param dim Size.
|
||||
* \return Returned the same size.
|
||||
*/
|
||||
template <typename T>
|
||||
__host__ __device__ T constexpr size(const T& dim)
|
||||
{
|
||||
return dim;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Length get (product if tuple).
|
||||
*
|
||||
* \tparam idx Index to lookup.
|
||||
* \param layout Layout to get Shape of.
|
||||
* \return Requsted length.
|
||||
*/
|
||||
template <index_t idx, typename Shape, typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto size(const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
return layout.template GetLength<idx>();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Shape size (product of dims).
|
||||
*
|
||||
* \param shape Shape to lookup.
|
||||
* \return Requsted size.
|
||||
*/
|
||||
template <typename... ShapeDims>
|
||||
__host__ __device__ constexpr auto size(const Tuple<ShapeDims...>& shape)
|
||||
{
|
||||
const auto unrolled_shape = UnrollNestedTuple(shape);
|
||||
return TupleReduce<0, unrolled_shape.Size()>([](auto x, auto y) { return x * y; },
|
||||
unrolled_shape);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Layout size (product of dims).
|
||||
*
|
||||
* \param layout Layout to calculate shape size.
|
||||
* \return Requsted size.
|
||||
*/
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto size(const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
return layout.GetLengths();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Length get from tuple (product if tuple).
|
||||
*
|
||||
* \tparam idx Index to lookup.
|
||||
* \param tuple Tuple to lookup.
|
||||
* \return Requsted length.
|
||||
*/
|
||||
template <index_t idx, typename... Ts>
|
||||
__host__ __device__ constexpr auto size(const Tuple<Ts...>& tuple)
|
||||
{
|
||||
return size(tuple.At(Number<idx>{}));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Hierarchical size.
|
||||
*
|
||||
* \tparam Idx First index to lookup (to avoid empty Idxs).
|
||||
* \tparam Idxs Next indexes to lookup.
|
||||
* \param elem Element to lookup.
|
||||
* \return Requsted element.
|
||||
*/
|
||||
template <index_t Idx, index_t... Idxs, typename T>
|
||||
__host__ __device__ constexpr auto size(const T& elem)
|
||||
{
|
||||
return size(get<Idx, Idxs...>(elem));
|
||||
}
|
||||
|
||||
// rank
|
||||
/**
|
||||
* \brief Get layout rank (num elements in shape).
|
||||
*
|
||||
* \param layout Layout to calculate rank.
|
||||
* \return Requsted rank.
|
||||
*/
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto
|
||||
rank([[maybe_unused]] const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
return Shape::Size();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get tuple rank (num elements in tuple).
|
||||
* Return 1 if scalar passed.
|
||||
*
|
||||
* \param tuple Tuple to calculate rank.
|
||||
* \return Requsted rank.
|
||||
*/
|
||||
template <typename... Dims>
|
||||
__host__ __device__ constexpr auto rank([[maybe_unused]] const Tuple<Dims...>& tuple)
|
||||
{
|
||||
return Tuple<Dims...>::Size();
|
||||
}
|
||||
|
||||
/**
|
||||
* \private
|
||||
* \brief Rank for scalar
|
||||
*
|
||||
* \param dim Dimension scalar.
|
||||
* \return Returned 1.
|
||||
*/
|
||||
template <index_t IDim>
|
||||
__host__ __device__ constexpr index_t rank([[maybe_unused]] const Number<IDim>& dim)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* \private
|
||||
* \brief Rank for scalar
|
||||
*
|
||||
* \param dim Dimension scalar.
|
||||
* \return Returned 1.
|
||||
*/
|
||||
__host__ __device__ constexpr index_t rank([[maybe_unused]] const index_t& dim) { return 1; }
|
||||
|
||||
/**
|
||||
* \brief Hierarchical rank.
|
||||
*
|
||||
* \tparam Idxs Indexes to lookup.
|
||||
* \param elem Element to lookup.
|
||||
* \return Requsted rank.
|
||||
*/
|
||||
template <index_t... Idxs, typename T>
|
||||
__host__ __device__ constexpr auto rank(const T& elem)
|
||||
{
|
||||
return rank(get<Idxs...>(elem));
|
||||
}
|
||||
|
||||
// depth
|
||||
/**
|
||||
* \brief Get depth of the layout shape (return 0 if scalar).
|
||||
*
|
||||
* \param layout Layout to calculate depth.
|
||||
* \return Requsted depth.
|
||||
*/
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto depth(const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
const auto& shape = layout.GetShape();
|
||||
return TupleDepth(shape);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get depth of the tuple. (return 0 if scalar)
|
||||
*
|
||||
* \param tuple Tuple to calculate depth.
|
||||
* \return Requsted depth.
|
||||
*/
|
||||
template <typename... Dims>
|
||||
__host__ __device__ constexpr auto depth(const Tuple<Dims...>& tuple)
|
||||
{
|
||||
return TupleDepth(tuple);
|
||||
}
|
||||
|
||||
/**
|
||||
* \private
|
||||
* \brief Depth for scalar
|
||||
*
|
||||
* \param dim Scalar.
|
||||
* \return Returned 0.
|
||||
*/
|
||||
template <index_t IDim>
|
||||
__host__ __device__ constexpr index_t depth([[maybe_unused]] const Number<IDim>& dim)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* \private
|
||||
* \brief Depth for scalar
|
||||
*
|
||||
* \param dim Scalar.
|
||||
* \return Returned 0.
|
||||
*/
|
||||
__host__ __device__ constexpr index_t depth([[maybe_unused]] const index_t& dim) { return 0; }
|
||||
|
||||
/**
|
||||
* \brief Hierarchical depth.
|
||||
*
|
||||
* \tparam Idxs Indexes to lookup.
|
||||
* \param elem Element to lookup.
|
||||
* \return Requsted depth.
|
||||
*/
|
||||
template <index_t... Idxs, typename T>
|
||||
__host__ __device__ constexpr auto depth(const T& elem)
|
||||
{
|
||||
return depth(get<Idxs...>(elem));
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get Layout shape.
|
||||
*
|
||||
* \param layout Layout to get shape from.
|
||||
* \return Requsted shape.
|
||||
*/
|
||||
template <typename LayoutType>
|
||||
__host__ __device__ constexpr const auto& shape(const LayoutType& layout)
|
||||
{
|
||||
return layout.GetShape();
|
||||
}
|
||||
|
||||
// pad
|
||||
/**
|
||||
* \brief Pad layout shapes to be adjusted to tile lengths.
|
||||
*
|
||||
*
|
||||
* \param layout Layout to pad.
|
||||
* \param tile_lengths Tile lengths to align layout shape.
|
||||
* \return Padded layout.
|
||||
*/
|
||||
template <typename Shape, typename UnrolledDesc, typename TileLengths>
|
||||
__host__ __device__ constexpr auto pad(const Layout<Shape, UnrolledDesc>& layout,
|
||||
const TileLengths& tile_lengths)
|
||||
{
|
||||
auto& unrolled_desc = layout.GetUnrolledDescriptor();
|
||||
// Generate sequence with ones to mark that all dims will be padded
|
||||
constexpr auto do_pads_seq =
|
||||
generate_sequence_v2([](auto) { return Number<1>{}; }, Number<Shape::Size()>{});
|
||||
// Create descriptor with padding
|
||||
auto padded_desc =
|
||||
tensor_operation::device::PadTensorDescriptor(unrolled_desc, tile_lengths, do_pads_seq);
|
||||
// Generate padded shape
|
||||
const auto padded_shape = generate_tuple(
|
||||
[&](auto i) { return padded_desc.GetLength(Number<i>{}); }, Number<TileLengths::Size()>{});
|
||||
// Create layout
|
||||
return Layout<decltype(padded_shape), decltype(padded_desc)>(padded_shape, padded_desc);
|
||||
}
|
||||
|
||||
// unmerge
|
||||
/**
|
||||
* \brief Unmerge selected dim in layout.
|
||||
*
|
||||
* \tparam Idx Index to dimension being unmerged.
|
||||
* \param layout Layout to pad.
|
||||
* \param new_lengths Dimensions into which the indicated dimension will be divided.
|
||||
* \param new_indexes Indexes to shuffle dims. Dims for unmerged dim should be nested.
|
||||
* \return Unmerged layout.
|
||||
*/
|
||||
template <index_t Idx, typename Shape, typename UnrolledDesc, typename NewLengths, typename NewIdxs>
|
||||
__host__ __device__ constexpr auto unmerge(const Layout<Shape, UnrolledDesc>& layout,
|
||||
const NewLengths& new_lengths,
|
||||
[[maybe_unused]] const NewIdxs& new_indexes)
|
||||
{
|
||||
const auto& layout_shape = shape(layout);
|
||||
auto& unrolled_desc = layout.GetUnrolledDescriptor();
|
||||
constexpr auto dims = Shape::Size();
|
||||
// Generate transforms
|
||||
const auto transforms = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(i == Idx)
|
||||
{
|
||||
return make_unmerge_transform(new_lengths);
|
||||
}
|
||||
else
|
||||
{
|
||||
return make_pass_through_transform(layout_shape.At(i));
|
||||
}
|
||||
},
|
||||
Number<dims>{});
|
||||
|
||||
constexpr auto lower_dims =
|
||||
generate_tuple([&](auto i) { return Sequence<i.value>{}; }, Number<dims>{});
|
||||
constexpr auto upper_dims = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(is_detected<is_tuple, tuple_element_t<i.value, NewIdxs>>::value)
|
||||
{
|
||||
constexpr auto idxs_tuple = tuple_element_t<i.value, NewIdxs>{};
|
||||
return to_sequence(idxs_tuple);
|
||||
}
|
||||
else
|
||||
{
|
||||
constexpr index_t index = tuple_element_t<i.value, NewIdxs>{};
|
||||
return Sequence<index>{};
|
||||
}
|
||||
},
|
||||
Number<dims>{});
|
||||
|
||||
const auto unmerged_desc =
|
||||
transform_tensor_descriptor(unrolled_desc, transforms, lower_dims, upper_dims);
|
||||
const auto unmerged_shape =
|
||||
generate_tuple([&](auto i) { return unmerged_desc.GetLength(Number<i>{}); },
|
||||
Number<decltype(unmerged_desc)::GetNumOfVisibleDimension()>{});
|
||||
|
||||
// Create layout
|
||||
return Layout<decltype(unmerged_shape), decltype(unmerged_desc)>(unmerged_shape, unmerged_desc);
|
||||
}
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
470
include/ck/wrapper/utils/tensor_partition.hpp
Normal file
470
include/ck/wrapper/utils/tensor_partition.hpp
Normal file
@@ -0,0 +1,470 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "tensor_utils.hpp"
|
||||
#include "layout_utils.hpp"
|
||||
|
||||
#include "ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp"
|
||||
#include "ck/tensor_description/cluster_descriptor.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace {
|
||||
|
||||
namespace detail {
|
||||
|
||||
/**
|
||||
* \brief Calculate shape for partition based on number of threads per each dim and
|
||||
* previous shape
|
||||
*
|
||||
* \param shape Base tensor shape.
|
||||
* \param thread_lengths Tuple of thread lengths.
|
||||
* \return Partition shape.
|
||||
*/
|
||||
template <typename... Ts, typename... Ls>
|
||||
__host__ __device__ constexpr auto CalculateLocalPartitionShape(const Tuple<Ts...>& shape,
|
||||
const Tuple<Ls...>& thread_lengths)
|
||||
{
|
||||
static_assert(Tuple<Ts...>::Size() == Tuple<Ls...>::Size(), "Wrong thread_lengths shape.");
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
constexpr auto num_i = Number<i>{};
|
||||
const auto slice_len =
|
||||
ck::math::integer_divide_ceil(size<num_i>(shape), thread_lengths.At(num_i));
|
||||
return slice_len;
|
||||
},
|
||||
Number<Tuple<Ls...>::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Apply projection.
|
||||
*
|
||||
* \param base_tuple Tuple to apply projection.
|
||||
* \param projection Projection is used to remove selected dim from
|
||||
* partitioning. Use `slice(X)` to remove dimension, where X is dim
|
||||
* size. Use `Number<1>{}` to keep it.
|
||||
* \return Multi index after projection.
|
||||
*/
|
||||
template <typename MultiIndex, typename ProjectionTuple>
|
||||
__host__ __device__ constexpr auto
|
||||
ApplyProjection([[maybe_unused]] const MultiIndex& base_tuple,
|
||||
[[maybe_unused]] const ProjectionTuple& projection)
|
||||
{
|
||||
if constexpr(is_same_v<ProjectionTuple, Tuple<>>)
|
||||
{
|
||||
return Tuple<>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
auto base_tuple_after_projection = generate_tuple(
|
||||
[&](auto i) {
|
||||
const auto i_num = Number<i.value>{};
|
||||
static_assert(
|
||||
is_detected<is_slice, tuple_element_t<i_num, ProjectionTuple>>::value ||
|
||||
is_same_v<tuple_element_t<i_num, ProjectionTuple>, Number<1>>);
|
||||
if constexpr(is_detected<is_slice, tuple_element_t<i_num, ProjectionTuple>>::value)
|
||||
{
|
||||
// When slice (to remove), then insert empty tuple (will be removed in next
|
||||
// step).
|
||||
return Tuple<>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
return make_tuple(base_tuple.At(i_num));
|
||||
}
|
||||
},
|
||||
Number<MultiIndex::Size()>{});
|
||||
// Remove empty tuples
|
||||
return UnrollNestedTuple<0, 1>(base_tuple_after_projection);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate shape with dims from projection.
|
||||
*
|
||||
* \param shape Base tensor shape.
|
||||
* \param projection Projection is used to remove selected dim from
|
||||
* partitioning. Use `slice(X)` to remove dimension, where X is dim
|
||||
* size. Use `Number<1>{}` to keep it.
|
||||
* \return Shape with dims from projection
|
||||
*/
|
||||
template <typename... Ts, typename... Ps>
|
||||
__host__ __device__ constexpr auto CalculateShapeWithProjection(const Tuple<Ts...>& shape,
|
||||
const Tuple<Ps...>& projection)
|
||||
{
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(is_detected<is_slice, tuple_element_t<i, Tuple<Ps...>>>::value)
|
||||
{
|
||||
return size<i>(projection).to_;
|
||||
}
|
||||
else
|
||||
{
|
||||
// number of shape element in actual fragment of shape and projection (method to
|
||||
// calculate shape idx)
|
||||
constexpr index_t shape_i =
|
||||
detail::ApplyProjection(TupleSlice<0, i>(Tuple<Ts...>{}),
|
||||
TupleSlice<0, i>(Tuple<Ps...>{}))
|
||||
.Size();
|
||||
return size<shape_i>(shape);
|
||||
}
|
||||
},
|
||||
Number<Tuple<Ps...>::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate total number of blocks.
|
||||
*
|
||||
* \param shape Base tensor shape.
|
||||
* \param tile_shape Tile shape.
|
||||
* \return Tuple with blocks number.
|
||||
*/
|
||||
template <typename... Ts, typename... Ls, typename... Ps>
|
||||
__host__ __device__ constexpr auto CalculateGridSize(const Tuple<Ts...>& shape,
|
||||
const Tuple<Ls...>& tile_shape)
|
||||
{
|
||||
return generate_tuple(
|
||||
[&](auto i) { return ck::math::integer_divide_ceil(size<i>(shape), size<i>(tile_shape)); },
|
||||
Number<Tuple<Ls...>::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate scaled offset for new partition/tile.
|
||||
*
|
||||
* \param thread_idxs Thread 1d id.
|
||||
* \param partition_lengths_seq Sequence of partition shape.
|
||||
* \param old_offset_idxs Multi index offset from base tensor to shift values.
|
||||
* \return Partition shape.
|
||||
*/
|
||||
template <typename ThreadIdxs, typename PartitionLengthsSeq, typename OldOffsetIdxs>
|
||||
__host__ __device__ constexpr auto
|
||||
CalculateOffsetMultiIdxs(const ThreadIdxs& thread_idxs,
|
||||
const PartitionLengthsSeq& partition_lengths_seq,
|
||||
const OldOffsetIdxs& old_offset_idxs)
|
||||
{
|
||||
return thread_idxs * partition_lengths_seq + old_offset_idxs;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Select dims to partition (skip if slice).
|
||||
*
|
||||
* \param block_idxs Input block indexes.
|
||||
* \return Partitioned dims.
|
||||
*/
|
||||
template <typename BlockIdxs>
|
||||
__host__ __device__ constexpr auto GetDimsToPartition([[maybe_unused]] const BlockIdxs& block_idxs)
|
||||
{
|
||||
const auto dims_to_partition = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(!is_detected<is_slice, tuple_element_t<i, BlockIdxs>>::value)
|
||||
{
|
||||
return Number<i>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
return Tuple<>{};
|
||||
}
|
||||
},
|
||||
Number<BlockIdxs::Size()>{});
|
||||
// Remove empty tuples
|
||||
return UnrollNestedTuple<0, 1>(dims_to_partition);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Replace slices with zeros (Slice dims are not partitioned).
|
||||
*
|
||||
* \param block_idxs Input block indexes.
|
||||
* \return Parsed dims.
|
||||
*/
|
||||
template <typename BlockIdxs>
|
||||
__host__ __device__ constexpr auto ReplaceSlicesWithZeros(const BlockIdxs& block_idxs)
|
||||
{
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(!is_detected<is_slice, tuple_element_t<i, BlockIdxs>>::value)
|
||||
{
|
||||
return block_idxs.At(i);
|
||||
}
|
||||
else
|
||||
{
|
||||
return Number<0>{};
|
||||
}
|
||||
},
|
||||
Number<BlockIdxs::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate default projection.
|
||||
*
|
||||
* \param tile_shape Tile shape.
|
||||
* \return Default projection (filled with Number<1>{}).
|
||||
*/
|
||||
template <typename TileShape>
|
||||
__host__ __device__ constexpr auto
|
||||
GenerateDefaultProjection([[maybe_unused]] const TileShape tile_shape)
|
||||
{
|
||||
return generate_tuple([&](auto) { return Number<1>{}; }, Number<TileShape::Size()>{});
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calculate thread multi index from 1d thread index.
|
||||
*
|
||||
* \param thread_layout Layout of threads (could not be nested).
|
||||
* \param thread_id Thread index represented as integer.
|
||||
* \return Multi index.
|
||||
*/
|
||||
template <typename ThreadShape, typename ThreadUnrolledDesc>
|
||||
__host__ __device__ constexpr auto CalculateThreadMultiIdx(
|
||||
[[maybe_unused]] const Layout<ThreadShape, ThreadUnrolledDesc>& thread_layout,
|
||||
const index_t thread_id)
|
||||
{
|
||||
static_assert(ThreadUnrolledDesc::GetNumOfTransform() == 1,
|
||||
"Thread layout should not be transformed.");
|
||||
constexpr auto embed_transform = ThreadUnrolledDesc{}.GetTransforms().At(Number<0>{});
|
||||
constexpr auto shape = ThreadShape{};
|
||||
constexpr auto strides = embed_transform.coefficients_;
|
||||
|
||||
return generate_tuple(
|
||||
[&](auto i) {
|
||||
constexpr auto num_i = Number<i>{};
|
||||
return (thread_id / strides.At(num_i)) % shape.At(num_i);
|
||||
},
|
||||
Number<ThreadShape::Size()>{});
|
||||
}
|
||||
} // namespace detail
|
||||
} // namespace
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Create local partition for thread (At now only packed partition
|
||||
* is supported).
|
||||
*
|
||||
* \param tensor Tensor for partition.
|
||||
* \param thread_layout Layout of threads (could not be transformed).
|
||||
* \param thread_id Thread index represented as integer.
|
||||
* \param projection Projection is used to remove selected dim from
|
||||
* partitioning. Use `slice(X)` to remove dimension, where X is dim
|
||||
* size. Use `Number<1>{}` to keep it.
|
||||
* \return Partition tensor.
|
||||
*/
|
||||
template <typename TensorType,
|
||||
typename ThreadShape,
|
||||
typename ThreadUnrolledDesc,
|
||||
typename ProjectionTuple>
|
||||
__host__ __device__ constexpr auto
|
||||
make_local_partition(TensorType& tensor,
|
||||
[[maybe_unused]] const Layout<ThreadShape, ThreadUnrolledDesc>& thread_layout,
|
||||
const index_t thread_id,
|
||||
const ProjectionTuple& projection)
|
||||
{
|
||||
static_assert(!IsNestedTuple(ThreadShape{}));
|
||||
// Calculate new partition shape
|
||||
const auto& tensor_shape = shape(tensor);
|
||||
// Calculate projected thread lengths
|
||||
constexpr auto projected_thread_lengths =
|
||||
detail::ApplyProjection(ThreadShape{}, ProjectionTuple{});
|
||||
constexpr auto partition_shape =
|
||||
detail::CalculateLocalPartitionShape(decltype(tensor_shape){}, projected_thread_lengths);
|
||||
constexpr auto partition_shape_seq =
|
||||
generate_sequence_v2([&](auto I) { return size<I>(partition_shape); },
|
||||
Number<decltype(partition_shape)::Size()>{});
|
||||
// Calculate thread idxs and offsets
|
||||
const auto thread_idxs = detail::CalculateThreadMultiIdx(thread_layout, thread_id);
|
||||
// Apply projection on thread idxs to remove not needed idxs
|
||||
const auto projected_thread_idxs = detail::ApplyProjection(thread_idxs, projection);
|
||||
const auto offset_multi_idxs = detail::CalculateOffsetMultiIdxs(
|
||||
projected_thread_idxs, partition_shape_seq, tensor.GetMultiIdxOffsets());
|
||||
// Create new layout and tensor
|
||||
auto& unrolled_desc = layout(tensor).GetUnrolledDescriptor();
|
||||
// Slice descriptor
|
||||
const auto transforms = generate_tuple(
|
||||
[&](auto i) {
|
||||
return make_slice_transform(partition_shape.At(i),
|
||||
offset_multi_idxs.At(i),
|
||||
partition_shape.At(i) + offset_multi_idxs.At(i));
|
||||
},
|
||||
Number<remove_reference_t<decltype(tensor_shape)>::Size()>{});
|
||||
const auto lower_upper_dims =
|
||||
generate_tuple([&](auto i) { return Sequence<i.value>{}; },
|
||||
Number<remove_reference_t<decltype(tensor_shape)>::Size()>{});
|
||||
auto sliced_desc =
|
||||
transform_tensor_descriptor(unrolled_desc, transforms, lower_upper_dims, lower_upper_dims);
|
||||
// Create layout
|
||||
const auto partition_layout =
|
||||
Layout<remove_reference_t<decltype(partition_shape)>, decltype(sliced_desc)>(
|
||||
partition_shape, sliced_desc);
|
||||
auto partition_tensor =
|
||||
make_tensor<TensorType::TensorBufferAddressSpace>(tensor.GetPointer(), partition_layout);
|
||||
// Apply offsets
|
||||
return partition_tensor;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create local partition for thread (At now only packed partition
|
||||
* is supported).
|
||||
*
|
||||
* \param tensor Tensor for partition.
|
||||
* \param thread_lengths Layout of threads (could not be nested).
|
||||
* \param thread_id Thread index represented as integer.
|
||||
* \return Partition tensor.
|
||||
*/
|
||||
template <typename TensorType, typename ThreadShape, typename ThreadUnrolledDesc>
|
||||
__host__ __device__ constexpr auto
|
||||
make_local_partition(TensorType& tensor,
|
||||
const Layout<ThreadShape, ThreadUnrolledDesc>& thread_lengths,
|
||||
const index_t thread_id)
|
||||
{
|
||||
const auto projection = detail::GenerateDefaultProjection(ThreadShape{});
|
||||
return make_local_partition(tensor, thread_lengths, thread_id, projection);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create local tile for thread block. (At now only packed tile
|
||||
* is supported).
|
||||
*
|
||||
* \note Temporary to gain the best performance use 2d
|
||||
* tile_shape.
|
||||
*
|
||||
*
|
||||
* \param tensor Tensor for partition.
|
||||
* \param tile_shape Shapes of requested tile.
|
||||
* \param block_idxs Tuple of block indexes represented as integer. If slice,
|
||||
* then get whole dim.
|
||||
* \param projection Projection is used to remove selected dim from
|
||||
* partitioning. Use `slice(X)` to remove dimension, where X is dim
|
||||
* size. Use `Number<1>{}` to keep it.
|
||||
* \return Tile tensor.
|
||||
*/
|
||||
template <typename TensorType,
|
||||
typename BlockShapeTuple,
|
||||
typename BlockIdxs,
|
||||
typename ProjectionTuple>
|
||||
__host__ __device__ constexpr auto make_local_tile(const TensorType& tensor,
|
||||
const BlockShapeTuple& tile_shape,
|
||||
const BlockIdxs& block_idxs,
|
||||
const ProjectionTuple& projection)
|
||||
{
|
||||
static_assert(!IsNestedTuple(BlockShapeTuple{}));
|
||||
static_assert(!IsNestedTuple(BlockIdxs{}));
|
||||
|
||||
constexpr auto I0 = Number<0>{};
|
||||
constexpr auto I1 = Number<1>{};
|
||||
constexpr auto I2 = Number<2>{};
|
||||
|
||||
auto& aligned_desc = layout(tensor).GetMergedNestingDescriptor();
|
||||
|
||||
constexpr auto projected_tile_shape =
|
||||
detail::ApplyProjection(BlockShapeTuple{}, ProjectionTuple{});
|
||||
// Number of dims which are partitioned
|
||||
constexpr auto dims_to_partition = detail::GetDimsToPartition(BlockIdxs{});
|
||||
const auto parsed_block_idxs = detail::ReplaceSlicesWithZeros(block_idxs);
|
||||
if constexpr(decltype(dims_to_partition)::Size() == I2)
|
||||
{
|
||||
const auto shape_with_projection_dims =
|
||||
detail::CalculateShapeWithProjection(shape(tensor), projection);
|
||||
// Set Value for M, N partition
|
||||
const auto M = shape_with_projection_dims.At(dims_to_partition.At(I0));
|
||||
const auto N = shape_with_projection_dims.At(dims_to_partition.At(I1));
|
||||
constexpr auto MPerBlock = BlockShapeTuple{}.At(dims_to_partition.At(I0));
|
||||
constexpr auto NPerBlock = BlockShapeTuple{}.At(dims_to_partition.At(I1));
|
||||
auto m_n_desc = make_naive_tensor_descriptor_packed(make_tuple(M, N));
|
||||
// Get 1D block id
|
||||
const auto grid_size = detail::CalculateGridSize(shape_with_projection_dims, tile_shape);
|
||||
const auto block_lengths_desc = make_naive_tensor_descriptor_packed(grid_size);
|
||||
const index_t block_id_1d = block_lengths_desc.CalculateOffset(parsed_block_idxs);
|
||||
// Optimized version for 2d tile shape [MxN]
|
||||
const auto block_2_tile_map =
|
||||
BlockToCTileMap_M00_N0_M01Adapt<MPerBlock,
|
||||
NPerBlock,
|
||||
remove_cvref_t<decltype(m_n_desc)>>(m_n_desc);
|
||||
const auto block_work_idx =
|
||||
block_2_tile_map.CalculateBottomIndex(make_multi_index(block_id_1d));
|
||||
const index_t m_block_data_idx_on_grid =
|
||||
__builtin_amdgcn_readfirstlane(block_work_idx[I0] * MPerBlock);
|
||||
const index_t n_block_data_idx_on_grid =
|
||||
__builtin_amdgcn_readfirstlane(block_work_idx[I1] * NPerBlock);
|
||||
// Apply 0 for non partitioned dims
|
||||
const auto offset_multi_idxs = generate_tuple(
|
||||
[&](auto i) {
|
||||
if constexpr(i == dims_to_partition.At(I0))
|
||||
{
|
||||
return m_block_data_idx_on_grid;
|
||||
}
|
||||
else if constexpr(i == dims_to_partition.At(I1))
|
||||
{
|
||||
return n_block_data_idx_on_grid;
|
||||
}
|
||||
else
|
||||
{
|
||||
return Number<0>{};
|
||||
}
|
||||
},
|
||||
Number<BlockShapeTuple::Size()>{});
|
||||
const auto projected_offset_multi_idxs =
|
||||
detail::ApplyProjection(offset_multi_idxs, projection);
|
||||
// Create new layout and tensor
|
||||
const auto tile_layout =
|
||||
Layout<remove_reference_t<decltype(projected_tile_shape)>, decltype(aligned_desc)>(
|
||||
projected_tile_shape, aligned_desc);
|
||||
auto tile_tensor =
|
||||
make_tensor<TensorType::TensorBufferAddressSpace>(tensor.GetPointer(), tile_layout);
|
||||
// Apply offsets
|
||||
tile_tensor.SetMultiIdxOffset(to_multi_index(projected_offset_multi_idxs));
|
||||
return tile_tensor;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Calculate offsets
|
||||
// Sequence with data to process per block
|
||||
using ProjectedTileShapeTuple = decltype(projected_tile_shape);
|
||||
constexpr auto projected_tile_shape_seq =
|
||||
generate_sequence_v2([](auto I) { return ProjectedTileShapeTuple{}.At(I); },
|
||||
Number<ProjectedTileShapeTuple::Size()>{});
|
||||
// Tuple with number of blocks
|
||||
const auto projected_block_idxs =
|
||||
to_multi_index(detail::ApplyProjection(parsed_block_idxs, projection));
|
||||
const auto offset_multi_idxs = detail::CalculateOffsetMultiIdxs(
|
||||
projected_block_idxs, projected_tile_shape_seq, tensor.GetMultiIdxOffsets());
|
||||
// Create new layout and tensor
|
||||
const auto tile_layout =
|
||||
Layout<remove_reference_t<ProjectedTileShapeTuple>, decltype(aligned_desc)>(
|
||||
projected_tile_shape, aligned_desc);
|
||||
auto tile_tensor =
|
||||
make_tensor<TensorType::TensorBufferAddressSpace>(tensor.GetPointer(), tile_layout);
|
||||
// Apply offsets
|
||||
tile_tensor.SetMultiIdxOffset(to_multi_index(offset_multi_idxs));
|
||||
return tile_tensor;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Create local tile for thread block. (At now only packed tile
|
||||
* is supported).
|
||||
*
|
||||
* \note Currently to get the best performance please use 2d shape.
|
||||
*
|
||||
* \param tensor Tensor for partition.
|
||||
* \param tile_shape Shapes of requested tile.
|
||||
* \param block_idxs Tuple of block indexes represented as integer. If slice,
|
||||
* then get whole dim.
|
||||
* \return Tile tensor.
|
||||
*/
|
||||
template <typename TensorType, typename BlockShapeTuple, typename BlockIdxs>
|
||||
__host__ __device__ constexpr auto make_local_tile(const TensorType& tensor,
|
||||
const BlockShapeTuple& tile_shape,
|
||||
const BlockIdxs& block_idxs)
|
||||
{
|
||||
const auto projection = detail::GenerateDefaultProjection(BlockShapeTuple{});
|
||||
return make_local_tile(tensor, tile_shape, block_idxs, projection);
|
||||
}
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
277
include/ck/wrapper/utils/tensor_utils.hpp
Normal file
277
include/ck/wrapper/utils/tensor_utils.hpp
Normal file
@@ -0,0 +1,277 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ck/ck.hpp"
|
||||
|
||||
#include "ck/utility/data_type.hpp"
|
||||
#include "ck/utility/number.hpp"
|
||||
#include "ck/utility/tuple.hpp"
|
||||
#include "ck/utility/tuple_helper.hpp"
|
||||
#include "ck/utility/dynamic_buffer.hpp"
|
||||
#include "ck/utility/amd_address_space.hpp"
|
||||
#include "ck/utility/multi_index.hpp"
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
namespace ck {
|
||||
namespace wrapper {
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Memory type, allowed members:
|
||||
* - Generic,
|
||||
* - Global,
|
||||
* - Lds,
|
||||
* - Sgpr,
|
||||
* - Vgpr,
|
||||
*/
|
||||
using MemoryTypeEnum = AddressSpaceEnum;
|
||||
|
||||
// Disable from doxygen docs generation
|
||||
/// @cond INTERNAL
|
||||
// forward declarations
|
||||
template <typename Shape, typename UnrolledDescriptorType>
|
||||
struct Layout;
|
||||
template <MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
struct Tensor;
|
||||
|
||||
template <typename FromType, typename ToType>
|
||||
struct Slice
|
||||
{
|
||||
__host__ __device__ constexpr Slice() : from_(), to_() {}
|
||||
__host__ __device__ constexpr Slice(FromType from, ToType to) : from_(from), to_(to) {}
|
||||
|
||||
/**
|
||||
* \brief Calculate slice range.
|
||||
*
|
||||
* \param dim Dimension size.
|
||||
* \return Slice range.
|
||||
*/
|
||||
template <typename T>
|
||||
__host__ __device__ constexpr auto range(const T& dim) const
|
||||
{
|
||||
if constexpr(is_same_v<FromType, index_t> || is_same_v<ToType, index_t> ||
|
||||
is_same_v<std::remove_const_t<T>, index_t>)
|
||||
{
|
||||
if(to_ < 0)
|
||||
{
|
||||
return dim - from_ + to_ + 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
// workaround if one end of the interval is index_t and the second one is Number
|
||||
return static_cast<index_t>(to_) - static_cast<index_t>(from_);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
static_assert(T{} >= ToType{} && FromType{} >= Number<0>{} &&
|
||||
(ToType{} < 0 || ToType{} > FromType{}),
|
||||
"Invalid range");
|
||||
if constexpr(ToType{} < 0)
|
||||
{
|
||||
return dim - from_ + to_ + Number<1>{};
|
||||
}
|
||||
else
|
||||
{
|
||||
return to_ - from_;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
__host__ __device__ static constexpr bool IsSlice() { return true; }
|
||||
|
||||
const FromType from_;
|
||||
const ToType to_;
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
using is_slice = decltype(std::declval<T&>().IsSlice());
|
||||
|
||||
template <typename T>
|
||||
using is_tuple = decltype(std::declval<T&>().IsTuple());
|
||||
/// @endcond
|
||||
|
||||
/**
|
||||
* \brief Make tensor function.
|
||||
*
|
||||
* \tparam MemoryType Type of memory.
|
||||
* \param pointer Pointer to the memory.
|
||||
* \param layout Tensor layout.
|
||||
* \return Constructed tensor.
|
||||
*/
|
||||
template <MemoryTypeEnum MemoryType,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
constexpr auto make_tensor(ElementType* pointer,
|
||||
const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
return Tensor<MemoryType, ElementType, Shape, UnrolledDescriptorType>(pointer, layout);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Make SGPR or VGPR tensor function.
|
||||
*
|
||||
* \tparam MemoryType Type of memory.
|
||||
* \tparam ElementType Memory data type.
|
||||
* \return Constructed tensor.
|
||||
*/
|
||||
template <MemoryTypeEnum MemoryType,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
constexpr auto make_register_tensor(const Layout<Shape, UnrolledDescriptorType>& layout)
|
||||
{
|
||||
return Tensor<MemoryType, ElementType, Shape, UnrolledDescriptorType>(layout);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Clear tensor. (Only for Vpgr/Sgpr)
|
||||
*
|
||||
* \param tensor Tensor to be cleared.
|
||||
*/
|
||||
template <MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ void
|
||||
clear(Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
static_assert(
|
||||
!Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>::IsDynamicBuffer);
|
||||
return tensor.GetBuffer().Clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get Tensor Layout.
|
||||
*
|
||||
* \param tensor Tensor to get layout of.
|
||||
* \return Requsted layout.
|
||||
*/
|
||||
template <MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr const auto&
|
||||
layout(const Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
return tensor.GetLayout();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Product of tensor shape dims.
|
||||
*
|
||||
* \tparam Idxs Indexes to access specific shape dim (optional).
|
||||
* \param tensor Tensor to get Shape of.
|
||||
* \return Requsted size.
|
||||
*/
|
||||
template <index_t... Idxs,
|
||||
MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto
|
||||
size(const Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
return size<Idxs...>(tensor.GetLayout());
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Rank of Shape tuple.
|
||||
*
|
||||
* \tparam Idxs Indexes to access specific shape dim (optional).
|
||||
* \param tensor Tensor to get rank of.
|
||||
* \return Requsted rank.
|
||||
*/
|
||||
template <index_t... Idxs,
|
||||
MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto
|
||||
rank(const Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
return rank<Idxs...>(tensor.GetLayout());
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Depth of Shape tuple.
|
||||
*
|
||||
* \tparam Idxs Indexes to access specific shape dim (optional).
|
||||
* \param tensor Tensor to get depth of.
|
||||
* \return Requsted depth.
|
||||
*/
|
||||
template <index_t... Idxs,
|
||||
MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr auto
|
||||
depth(const Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
return depth<Idxs...>(tensor.GetLayout());
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get Tensor shape.
|
||||
*
|
||||
* \param tensor Tensor to get shape from.
|
||||
* \return Requsted shape.
|
||||
*/
|
||||
template <MemoryTypeEnum BufferAddressSpace,
|
||||
typename ElementType,
|
||||
typename Shape,
|
||||
typename UnrolledDescriptorType>
|
||||
__host__ __device__ constexpr const auto&
|
||||
shape(const Tensor<BufferAddressSpace, ElementType, Shape, UnrolledDescriptorType>& tensor)
|
||||
{
|
||||
return shape(tensor.GetLayout());
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get dim slice.
|
||||
*
|
||||
* \param from Beginning of the interval.
|
||||
* \param to End of the interval. (could be also negative to index from the end)
|
||||
* \return Requested slice. Could be used to create sliced tensor from other tensor.
|
||||
*/
|
||||
template <typename FromType, typename ToType>
|
||||
constexpr auto slice(const FromType from, const ToType to)
|
||||
{
|
||||
return Slice<FromType, ToType>(from, to);
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get dim slice. (Assumed that from is equal to 1)
|
||||
*
|
||||
* \param to End of the interval. (could be also negative to index from the end)
|
||||
* \return Requested slice. Could be used to create sliced tensor from other tensor.
|
||||
*/
|
||||
template <typename ToType>
|
||||
constexpr auto slice(const ToType to)
|
||||
{
|
||||
if constexpr(is_same_v<ToType, index_t>)
|
||||
{
|
||||
return Slice<index_t, ToType>(0, to);
|
||||
}
|
||||
else
|
||||
{
|
||||
return Slice<Number<0>, ToType>(Number<0>{}, to);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Get whole dim slice (from = 0, to = -1).
|
||||
*
|
||||
* \return Requested slice. Could be used to create sliced tensor from other tensor.
|
||||
*/
|
||||
constexpr auto slice() { return Slice<Number<0>, Number<-1>>(Number<0>{}, Number<-1>{}); }
|
||||
|
||||
} // namespace wrapper
|
||||
} // namespace ck
|
||||
Reference in New Issue
Block a user