// SPDX-License-Identifier: MIT // Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved. #pragma once #include #include #include #include #include #include #include #include #include #include "ck_tile/core.hpp" #include "ck_tile/host/joinable_thread.hpp" #include "ck_tile/host/ranges.hpp" namespace ck_tile { template CK_TILE_HOST std::ostream& LogRange(std::ostream& os, Range&& range, std::string delim, int precision = std::cout.precision(), int width = 0) { bool first = true; for(auto&& v : range) { if(first) first = false; else os << delim; os << std::setw(width) << std::setprecision(precision) << v; } return os; } template CK_TILE_HOST std::ostream& LogRangeAsType(std::ostream& os, Range&& range, std::string delim, int precision = std::cout.precision(), int width = 0) { bool first = true; for(auto&& v : range) { if(first) first = false; else os << delim; os << std::setw(width) << std::setprecision(precision) << static_cast(v); } return os; } template CK_TILE_HOST auto call_f_unpack_args_impl(F f, T args, std::index_sequence) { return f(std::get(args)...); } template CK_TILE_HOST auto call_f_unpack_args(F f, T args) { constexpr std::size_t N = std::tuple_size{}; return call_f_unpack_args_impl(f, args, std::make_index_sequence{}); } template CK_TILE_HOST auto construct_f_unpack_args_impl(T args, std::index_sequence) { return F(std::get(args)...); } template CK_TILE_HOST auto construct_f_unpack_args(F, T args) { constexpr std::size_t N = std::tuple_size{}; return construct_f_unpack_args_impl(args, std::make_index_sequence{}); } struct HostTensorDescriptor { HostTensorDescriptor() = default; void CalculateStrides() { mStrides.clear(); mStrides.resize(mLens.size(), 0); if(mStrides.empty()) return; mStrides.back() = 1; std::partial_sum(mLens.rbegin(), mLens.rend() - 1, mStrides.rbegin() + 1, std::multiplies()); } template >> HostTensorDescriptor(const std::initializer_list& lens) : mLens(lens.begin(), lens.end()) { this->CalculateStrides(); } template , std::size_t>>> HostTensorDescriptor(const Lengths& lens) : mLens(lens.begin(), lens.end()) { this->CalculateStrides(); } template && std::is_convertible_v>> HostTensorDescriptor(const std::initializer_list& lens, const std::initializer_list& strides) : mLens(lens.begin(), lens.end()), mStrides(strides.begin(), strides.end()) { } template , std::size_t> && std::is_convertible_v, std::size_t>>> HostTensorDescriptor(const Lengths& lens, const Strides& strides) : mLens(lens.begin(), lens.end()), mStrides(strides.begin(), strides.end()) { } std::size_t get_num_of_dimension() const { return mLens.size(); } std::size_t get_element_size() const { assert(mLens.size() == mStrides.size()); return std::accumulate( mLens.begin(), mLens.end(), std::size_t{1}, std::multiplies()); } std::size_t get_element_space_size() const { std::size_t space = 1; for(std::size_t i = 0; i < mLens.size(); ++i) { if(mLens[i] == 0) continue; space += (mLens[i] - 1) * mStrides[i]; } return space; } std::size_t get_length(std::size_t dim) const { return mLens[dim]; } const std::vector& get_lengths() const { return mLens; } std::size_t get_stride(std::size_t dim) const { return mStrides[dim]; } const std::vector& get_strides() const { return mStrides; } template std::size_t GetOffsetFromMultiIndex(Is... is) const { assert(sizeof...(Is) == this->get_num_of_dimension()); std::initializer_list iss{static_cast(is)...}; return std::inner_product(iss.begin(), iss.end(), mStrides.begin(), std::size_t{0}); } std::size_t GetOffsetFromMultiIndex(std::vector iss) const { return std::inner_product(iss.begin(), iss.end(), mStrides.begin(), std::size_t{0}); } friend std::ostream& operator<<(std::ostream& os, const HostTensorDescriptor& desc) { os << "dim " << desc.get_num_of_dimension() << ", "; os << "lengths {"; LogRange(os, desc.get_lengths(), ", "); os << "}, "; os << "strides {"; LogRange(os, desc.get_strides(), ", "); os << "}"; return os; } private: std::vector mLens; std::vector mStrides; }; template CK_TILE_HOST HostTensorDescriptor transpose_host_tensor_descriptor_given_new2old( const HostTensorDescriptor& a, const New2Old& new2old) { std::vector new_lengths(a.get_num_of_dimension()); std::vector new_strides(a.get_num_of_dimension()); for(std::size_t i = 0; i < a.get_num_of_dimension(); i++) { new_lengths[i] = a.get_lengths()[new2old[i]]; new_strides[i] = a.get_strides()[new2old[i]]; } return HostTensorDescriptor(new_lengths, new_strides); } template struct ParallelTensorFunctor { F mF; static constexpr std::size_t NDIM = sizeof...(Xs); std::array mLens; std::array mStrides; std::size_t mN1d; ParallelTensorFunctor(F f, Xs... xs) : mF(f), mLens({static_cast(xs)...}) { mStrides.back() = 1; std::partial_sum(mLens.rbegin(), mLens.rend() - 1, mStrides.rbegin() + 1, std::multiplies()); mN1d = mStrides[0] * mLens[0]; } std::array GetNdIndices(std::size_t i) const { std::array indices; for(std::size_t idim = 0; idim < NDIM; ++idim) { indices[idim] = i / mStrides[idim]; i -= indices[idim] * mStrides[idim]; } return indices; } void operator()(std::size_t num_thread = 1) const { std::size_t work_per_thread = (mN1d + num_thread - 1) / num_thread; std::vector threads(num_thread); for(std::size_t it = 0; it < num_thread; ++it) { std::size_t iw_begin = it * work_per_thread; std::size_t iw_end = std::min((it + 1) * work_per_thread, mN1d); auto f = [this, iw_begin, iw_end] { for(std::size_t iw = iw_begin; iw < iw_end; ++iw) { call_f_unpack_args(this->mF, this->GetNdIndices(iw)); } }; threads[it] = joinable_thread(f); } } }; template CK_TILE_HOST auto make_ParallelTensorFunctor(F f, Xs... xs) { return ParallelTensorFunctor(f, xs...); } template struct HostTensor { using Descriptor = HostTensorDescriptor; using Data = std::vector; template HostTensor(std::initializer_list lens) : mDesc(lens), mData(mDesc.get_element_space_size()) { } template HostTensor(std::initializer_list lens, std::initializer_list strides) : mDesc(lens, strides), mData(mDesc.get_element_space_size()) { } template HostTensor(const Lengths& lens) : mDesc(lens), mData(mDesc.get_element_space_size()) { } template HostTensor(const Lengths& lens, const Strides& strides) : mDesc(lens, strides), mData(get_element_space_size()) { } HostTensor(const Descriptor& desc) : mDesc(desc), mData(mDesc.get_element_space_size()) {} template HostTensor CopyAsType() const { HostTensor ret(mDesc); std::transform(mData.cbegin(), mData.cend(), ret.mData.begin(), [](auto value) { return ck_tile::type_convert(value); }); return ret; } HostTensor() = delete; HostTensor(const HostTensor&) = default; HostTensor(HostTensor&&) = default; ~HostTensor() = default; HostTensor& operator=(const HostTensor&) = default; HostTensor& operator=(HostTensor&&) = default; template explicit HostTensor(const HostTensor& other) : HostTensor(other.template CopyAsType()) { } std::size_t get_length(std::size_t dim) const { return mDesc.get_length(dim); } decltype(auto) get_lengths() const { return mDesc.get_lengths(); } std::size_t get_stride(std::size_t dim) const { return mDesc.get_stride(dim); } decltype(auto) get_strides() const { return mDesc.get_strides(); } std::size_t get_num_of_dimension() const { return mDesc.get_num_of_dimension(); } std::size_t get_element_size() const { return mDesc.get_element_size(); } std::size_t get_element_space_size() const { return mDesc.get_element_space_size(); } std::size_t get_element_space_size_in_bytes() const { return sizeof(T) * get_element_space_size(); } // void SetZero() { ck_tile::ranges::fill(mData, 0); } void SetZero() { std::fill(mData.begin(), mData.end(), 0); } template void ForEach_impl(F&& f, std::vector& idx, size_t rank) { if(rank == mDesc.get_num_of_dimension()) { f(*this, idx); return; } // else for(size_t i = 0; i < mDesc.get_lengths()[rank]; i++) { idx[rank] = i; ForEach_impl(std::forward(f), idx, rank + 1); } } template void ForEach(F&& f) { std::vector idx(mDesc.get_num_of_dimension(), 0); ForEach_impl(std::forward(f), idx, size_t(0)); } template void ForEach_impl(const F&& f, std::vector& idx, size_t rank) const { if(rank == mDesc.get_num_of_dimension()) { f(*this, idx); return; } // else for(size_t i = 0; i < mDesc.get_lengths()[rank]; i++) { idx[rank] = i; ForEach_impl(std::forward(f), idx, rank + 1); } } template void ForEach(const F&& f) const { std::vector idx(mDesc.get_num_of_dimension(), 0); ForEach_impl(std::forward(f), idx, size_t(0)); } template void GenerateTensorValue(G g, std::size_t num_thread = 1) { switch(mDesc.get_num_of_dimension()) { case 1: { auto f = [&](auto i) { (*this)(i) = g(i); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0])(num_thread); break; } case 2: { auto f = [&](auto i0, auto i1) { (*this)(i0, i1) = g(i0, i1); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0], mDesc.get_lengths()[1])( num_thread); break; } case 3: { auto f = [&](auto i0, auto i1, auto i2) { (*this)(i0, i1, i2) = g(i0, i1, i2); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0], mDesc.get_lengths()[1], mDesc.get_lengths()[2])(num_thread); break; } case 4: { auto f = [&](auto i0, auto i1, auto i2, auto i3) { (*this)(i0, i1, i2, i3) = g(i0, i1, i2, i3); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0], mDesc.get_lengths()[1], mDesc.get_lengths()[2], mDesc.get_lengths()[3])(num_thread); break; } case 5: { auto f = [&](auto i0, auto i1, auto i2, auto i3, auto i4) { (*this)(i0, i1, i2, i3, i4) = g(i0, i1, i2, i3, i4); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0], mDesc.get_lengths()[1], mDesc.get_lengths()[2], mDesc.get_lengths()[3], mDesc.get_lengths()[4])(num_thread); break; } case 6: { auto f = [&](auto i0, auto i1, auto i2, auto i3, auto i4, auto i5) { (*this)(i0, i1, i2, i3, i4, i5) = g(i0, i1, i2, i3, i4, i5); }; make_ParallelTensorFunctor(f, mDesc.get_lengths()[0], mDesc.get_lengths()[1], mDesc.get_lengths()[2], mDesc.get_lengths()[3], mDesc.get_lengths()[4], mDesc.get_lengths()[5])(num_thread); break; } default: throw std::runtime_error("unspported dimension"); } } template std::size_t GetOffsetFromMultiIndex(Is... is) const { return mDesc.GetOffsetFromMultiIndex(is...); } template T& operator()(Is... is) { return mData[mDesc.GetOffsetFromMultiIndex(is...)]; } template const T& operator()(Is... is) const { return mData[mDesc.GetOffsetFromMultiIndex(is...)]; } T& operator()(std::vector idx) { return mData[mDesc.GetOffsetFromMultiIndex(idx)]; } const T& operator()(std::vector idx) const { return mData[mDesc.GetOffsetFromMultiIndex(idx)]; } HostTensor transpose(std::vector axes = {}) const { if(axes.empty()) { axes.resize(this->get_num_of_dimension()); std::iota(axes.rbegin(), axes.rend(), 0); } if(axes.size() != mDesc.get_num_of_dimension()) { throw std::runtime_error( "HostTensor::transpose(): size of axes must match tensor dimension"); } std::vector tlengths, tstrides; for(const auto& axis : axes) { tlengths.push_back(get_lengths()[axis]); tstrides.push_back(get_strides()[axis]); } HostTensor ret(*this); ret.mDesc = HostTensorDescriptor(tlengths, tstrides); return ret; } HostTensor transpose(std::vector axes = {}) { return const_cast const*>(this)->transpose(axes); } typename Data::iterator begin() { return mData.begin(); } typename Data::iterator end() { return mData.end(); } typename Data::pointer data() { return mData.data(); } typename Data::const_iterator begin() const { return mData.begin(); } typename Data::const_iterator end() const { return mData.end(); } typename Data::const_pointer data() const { return mData.data(); } typename Data::size_type size() const { return mData.size(); } // return a slice of this tensor // for simplicity we just copy the data and return a new tensor auto slice(std::vector s_begin, std::vector s_end) const { assert(s_begin.size() == s_end.size()); assert(s_begin.size() == get_num_of_dimension()); std::vector s_len(s_begin.size()); std::transform( s_end.begin(), s_end.end(), s_begin.begin(), s_len.begin(), std::minus{}); HostTensor sliced_tensor(s_len); sliced_tensor.ForEach([&](auto& self, auto idx) { std::vector src_idx(idx.size()); std::transform( idx.begin(), idx.end(), s_begin.begin(), src_idx.begin(), std::plus{}); self(idx) = operator()(src_idx); }); return sliced_tensor; } template auto AsSpan() const { constexpr std::size_t FromSize = sizeof(T); constexpr std::size_t ToSize = sizeof(U); using Element = std::add_const_t>; return ck_tile::span{reinterpret_cast(data()), size() * FromSize / ToSize}; } template auto AsSpan() { constexpr std::size_t FromSize = sizeof(T); constexpr std::size_t ToSize = sizeof(U); using Element = std::remove_reference_t; return ck_tile::span{reinterpret_cast(data()), size() * FromSize / ToSize}; } friend std::ostream& operator<<(std::ostream& os, const HostTensor& t) { os << t.mDesc; os << "["; for(typename Data::size_type idx = 0; idx < t.mData.size(); ++idx) { if(0 < idx) { os << ", "; } if constexpr(std::is_same_v || std::is_same_v) { os << type_convert(t.mData[idx]) << " #### "; } else { os << t.mData[idx]; } } os << "]"; return os; } // read data from a file, as dtype // the file could dumped from torch as (targeting tensor is t here) // numpy.savetxt("f.txt", t.view(-1).numpy()) // numpy.savetxt("f.txt", t.cpu().view(-1).numpy()) # from cuda to cpu to save // numpy.savetxt("f.txt", t.cpu().view(-1).numpy(), fmt="%d") # save as int // will output f.txt, each line is a value // dtype=float or int, internally will cast to real type void loadtxt(std::string file_name, std::string dtype = "float") { std::ifstream file(file_name); if(file.is_open()) { std::string line; index_t cnt = 0; while(std::getline(file, line)) { if(cnt >= static_cast(mData.size())) { throw std::runtime_error(std::string("data read from file:") + file_name + " is too big"); } if(dtype == "float") { mData[cnt] = type_convert(std::stof(line)); } else if(dtype == "int" || dtype == "int32") { mData[cnt] = type_convert(std::stoi(line)); } cnt++; } file.close(); if(cnt < static_cast(mData.size())) { std::cerr << "Warning! reading from file:" << file_name << ", does not match the size of this tensor" << std::endl; } } else { // Print an error message to the standard error // stream if the file cannot be opened. throw std::runtime_error(std::string("unable to open file:") + file_name); } } // can save to a txt file and read from torch as: // torch.from_numpy(np.loadtxt('f.txt', dtype=np.int32/np.float32...)).view([...]).contiguous() void savetxt(std::string file_name, std::string dtype = "float") { std::ofstream file(file_name); if(file.is_open()) { for(auto& itm : mData) { if(dtype == "float") file << type_convert(itm) << std::endl; else if(dtype == "int") file << type_convert(itm) << std::endl; else // TODO: we didn't implement operator<< for all custom // data types, here fall back to float in case compile error file << type_convert(itm) << std::endl; } file.close(); } else { // Print an error message to the standard error // stream if the file cannot be opened. throw std::runtime_error(std::string("unable to open file:") + file_name); } } Descriptor mDesc; Data mData; }; } // namespace ck_tile