// SPDX-License-Identifier: MIT // Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved. #pragma once #include #include #include #include #include "ck/tensor_description/tensor_descriptor.hpp" template std::ostream& operator<<(std::ostream& os, const std::vector& v) { std::copy(std::begin(v), std::end(v), std::ostream_iterator(os, " ")); return os; } template std::ostream& operator<<(std::ostream& os, const std::array& v) { std::copy(std::begin(v), std::end(v), std::ostream_iterator(os, " ")); return os; } template std::ostream& operator<<(std::ostream& os, const ck::TensorDescriptor& desc) { constexpr ck::index_t nDim = ck::remove_cvref_t::GetNumOfDimension(); os << "{"; ck::static_for<0, nDim - 1, 1>{}([&](auto i) { os << desc.GetLength(i) << ", "; }); os << desc.GetLength(ck::Number{}); os << "}"; return os; }