summaryrefslogtreecommitdiff
path: root/runtime/neurun/core/include/util/feature/nchw/View.h
blob: d747937eec903cb3df55310e7becf928946aae3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
 * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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.
 */

#ifndef __NEURUN_UTIL_FEATURE_NCHW_VIEW_H__
#define __NEURUN_UTIL_FEATURE_NCHW_VIEW_H__

#include "misc/feature/Reader.h"
#include "misc/feature/Shape.h"

#include "backend/operand/ITensor.h"
#include "util/Coordinates.h"
#include "util/Utils.h"

#include <cassert>

namespace neurun
{
namespace util
{
namespace feature
{
namespace nchw
{

template <typename T> class View final : public nnfw::misc::feature::Reader<T>
{
public:
  // Construct for buffer of model inputs
  View(const ::nnfw::misc::feature::Shape &shape, T *ptr, size_t len)
      : _shape{shape}, _ptr{reinterpret_cast<uint8_t *>(ptr)}, _len{len}
  {
    assert(shape.N * shape.C * shape.H * shape.W * sizeof(T) == len);

    _strides.W = sizeof(T);
    _strides.H = shape.W * sizeof(T);
    _strides.C = shape.W * shape.H * sizeof(T);
    _strides.N = shape.W * shape.H * shape.C * sizeof(T);
  }

  // Construct for backend tensor
  View(::neurun::backend::operand::ITensor *tensor)
      : _ptr{tensor->buffer() + tensor->calcOffset({0, 0, 0, 0})}, _len{tensor->total_size()}
  {
    assert(tensor->layout() == ir::Layout::NCHW);

    const auto start_offset = tensor->calcOffset({0, 0, 0, 0});
    _strides.W = tensor->dimension(3) == 1 ? 0 : tensor->calcOffset({0, 0, 0, 1}) - start_offset;
    _strides.H = tensor->dimension(2) == 1 ? 0 : tensor->calcOffset({0, 0, 1, 0}) - start_offset;
    _strides.C = tensor->dimension(1) == 1 ? 0 : tensor->calcOffset({0, 1, 0, 0}) - start_offset;
    _strides.N = tensor->dimension(0) == 1 ? 0 : tensor->calcOffset({1, 0, 0, 0}) - start_offset;

    _shape.W = tensor->dimension(3);
    _shape.H = tensor->dimension(2);
    _shape.C = tensor->dimension(1);
    _shape.N = tensor->dimension(0);
  }

public:
  T at(uint32_t ch, uint32_t row, uint32_t col) const override
  {
    const auto offset = feature_index_to_byte_offset(0, ch, row, col);

    T *ptr = reinterpret_cast<T *>(_ptr + offset);

    return *ptr;
  }
  T at(uint32_t batch, uint32_t ch, uint32_t row, uint32_t col) const override
  {
    const auto offset = feature_index_to_byte_offset(batch, ch, row, col);

    T *ptr = reinterpret_cast<T *>(_ptr + offset);

    return *ptr;
  }

public:
  T &at(uint32_t ch, uint32_t row, uint32_t col)
  {
    const auto offset = feature_index_to_byte_offset(0, ch, row, col);

    T *ptr = reinterpret_cast<T *>(_ptr + offset);

    return *ptr;
  }
  T &at(uint32_t batch, uint32_t ch, uint32_t row, uint32_t col)
  {
    const auto offset = feature_index_to_byte_offset(batch, ch, row, col);

    T *ptr = reinterpret_cast<T *>(_ptr + offset);

    return *ptr;
  }

private:
  size_t feature_index_to_byte_offset(uint32_t batch, uint32_t ch, uint32_t row, uint32_t col) const
  {
    assert(1u * _shape.N > batch); // shape.N > batch
    assert(1u * _shape.C > ch);    // shape.C > ch
    assert(1u * _shape.H > row);   // shape.H > row
    assert(1u * _shape.W > col);   // shape.W > col

    uint32_t res = 0;
    res += batch * _strides.N;
    res += ch * _strides.C;
    res += row * _strides.H;
    res += col * _strides.W;

    return res;
  }

private:
  // TODO Remove _shape
  nnfw::misc::feature::Shape _shape;
  using Strides = nnfw::misc::feature::Shape;
  Strides _strides;
  uint8_t *_ptr;
  size_t _len;
};

} // namespace nchw
} // namespace feature
} // namespace util
} // namespace neurun

#endif // __NEURUN_UTIL_FEATURE_NCHW_VIEW_H__