123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- #ifndef EASYINFER_SHAPE_HPP_
- #define EASYINFER_SHAPE_HPP_
- #include <iostream>
- #include <vector>
- namespace edk {
- class ShapeEx {
- public:
-
- using value_type = int;
-
- ShapeEx() = default;
-
- explicit ShapeEx(const std::vector<value_type>& v) noexcept { data_ = v; }
- ShapeEx(const ShapeEx&) = default;
- ShapeEx& operator=(const ShapeEx&) = default;
- ShapeEx(ShapeEx&&) = default;
- ShapeEx& operator=(ShapeEx&&) = default;
-
- value_type operator[](int offset) const { return data_[offset]; }
-
- value_type& operator[](int offset) { return data_[offset]; }
-
- size_t Size() const noexcept { return data_.size(); };
-
- bool Empty() const noexcept { return data_.empty(); };
-
- std::vector<value_type> Vectorize() const noexcept { return data_; }
-
- value_type BatchSize() const { return data_[0]; }
-
- value_type N() const noexcept {
- if (Size() == 4) {
- return data_[0];
- }
- return 0;
- }
-
- value_type H() const noexcept {
- if (Size() == 4) {
- return data_[1];
- }
- return 0;
- }
-
- value_type W() const noexcept {
- if (Size() == 4) {
- return data_[2];
- }
- return 0;
- }
-
- value_type C() const noexcept {
- if (Size() == 4) {
- return data_[3];
- }
- return 0;
- }
-
- int64_t DataCount() const noexcept {
- int64_t cnt = 1;
- for (size_t i = 1; i < data_.size(); ++i) {
- cnt *= data_[i];
- }
- return cnt;
- }
-
- int64_t BatchDataCount() const noexcept {
- int64_t cnt = 1;
- for (size_t i = 0; i < data_.size(); ++i) {
- cnt *= data_[i];
- }
- return cnt;
- }
-
- friend std::ostream& operator<<(std::ostream& os, const ShapeEx& shape) {
- os << "ShapeEx (";
- for (size_t i = 0; i < shape.Size() - 1; ++i) {
- os << shape[i] << ", ";
- }
- if (shape.Size() > 0) os << shape[shape.Size() - 1];
- os << ")";
- return os;
- }
-
- friend bool operator==(const ShapeEx& lhs, const ShapeEx& rhs) noexcept {
- if (lhs.Size() != rhs.Size()) return false;
- for (size_t i = 0; i < lhs.Size(); ++i) {
- if (lhs[i] != rhs[i]) return false;
- }
- return true;
- }
-
- friend bool operator!=(const ShapeEx& lhs, const ShapeEx& rhs) noexcept { return !(lhs == rhs); }
- private:
- std::vector<value_type> data_;
- };
- class Shape {
- public:
-
- explicit Shape(uint32_t n = 1, uint32_t h = 1, uint32_t w = 1, uint32_t c = 1, uint32_t stride = 1);
-
- inline uint32_t Stride() const { return w > stride_ ? w : stride_; }
-
- inline void SetStride(uint32_t s) { stride_ = s; }
-
- inline uint64_t Step() const { return Stride() * c; }
-
- inline uint64_t DataCount() const { return n * h * Step(); }
-
- inline uint64_t nhwc() const { return n * h * w * c; }
-
- inline uint64_t hwc() const { return h * w * c; }
-
- inline uint64_t hw() const { return h * w; }
-
- friend std::ostream &operator<<(std::ostream &os, const Shape &shape);
-
- bool operator==(const Shape &other) const;
-
- bool operator!=(const Shape &other) const;
-
- uint32_t n;
-
- uint32_t h;
-
- uint32_t w;
-
- uint32_t c;
- private:
- uint32_t stride_;
- };
- }
- #endif
|