// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include #include #include #include #include #include "paddle/fluid/framework/array.h" #include "paddle/fluid/platform/assert.h" #include "paddle/fluid/platform/enforce.h" #include "paddle/fluid/platform/hostdevice.h" namespace paddle { namespace framework { // Statically sized, statically indexed dimension template class Dim : public Array { public: static_assert(D >= 0, "D must be not less than 0"); static constexpr int kRank = D; using BaseClass = Array; inline Dim(int64_t head, const Dim& tail) { (*this)[0] = head; new (this->GetMutable() + 1) Dim(tail); } template HOSTDEVICE explicit Dim(int64_t head, Args... args) : BaseClass(head, args...) {} /** Construct a Dim with each dimension set to the given index */ HOSTDEVICE explicit Dim(int64_t idx) { this->Fill(idx); } HOSTDEVICE Dim() = default; HOST std::string to_string() const; }; // Product of a Dim template HOSTDEVICE inline int64_t product(const Dim& a) { return UnrollProduct::Run(a.Get()); } /** * Helper function to create a Dim * * \param idxes The type of Dim constructed depends on the number of params * */ template HOSTDEVICE inline Dim make_dim(Args... idxes) { return Dim(idxes...); } // Allows us to output a Dim template inline std::ostream& operator<<(std::ostream& os, const Dim& d) { os << d[0]; for (int i = 1; i < D; ++i) { os << ", " << d[i]; } return os; } inline std::ostream& operator<<(std::ostream& os, const Dim<0>& d) { return os; } template HOST std::string Dim::to_string() const { std::stringstream stream; stream << *this; return stream.str(); } template inline void static_dim_assign(const T1* in, T2* out) { UnrollAssign::Run(in, out); } } // namespace framework } // namespace paddle