lite_tensor.cc 3.3 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2019 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.

15
#include "lite/backends/fpga/lite_tensor.h"
Y
Yan Chunwei 已提交
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
#include <string>

namespace paddle {
namespace lite {

using value_type = int64_t;

value_type DDimLite::production() const {
  value_type res = 1;
  for (size_t i = 0; i < this->size(); i++) {
    res *= (*this)[i];
  }
  return res;
}

value_type DDimLite::count(int start, int end) const {
  if (start < 0) {
    start = 0;
  }
  if (end > size()) {
    end = size();
  }
  if (end < start) {
    end = start;
  }
  value_type sum = 1;
  for (auto i = start; i < end; ++i) {
    sum *= data_[i];
  }
  return sum;
}

DDimLite DDimLite::Slice(int start, int end) const {
  std::vector<value_type> vec;
  for (int i = start; i < end; i++) {
    vec.push_back((*this)[i]);
  }
  return DDimLite(vec);
}

std::string DDimLite::repr() const {
  std::stringstream ss;
  if (empty()) {
    ss << "{}";
    return ss.str();
  }
  ss << "{";
  for (size_t i = 0; i < this->size() - 1; i++) {
    ss << (*this)[i] << ",";
  }
  if (!this->empty()) ss << (*this)[size() - 1];
  ss << "}";
  return ss.str();
}

void TensorLite::ShareDataWith(const TensorLite &other) {
C
chonwhite 已提交
72
  buffer_ = other.buffer_;  // TODO(chonwhite) delete buffer;
Y
Yan Chunwei 已提交
73 74 75 76 77 78 79 80 81
  dims_ = other.dims_;
  zynq_tensor_ = other.zynq_tensor_;
  target_ = other.target_;
  lod_ = other.lod_;
  memory_size_ = other.memory_size_;
  throw - 1;
}

void *TensorLite::mutable_data(size_t memory_size) {
C
chonwhite 已提交
82
  memory_size_ = memory_size;  // TODO(chonwhite) delete buffer;
Y
Yan Chunwei 已提交
83 84
  buffer_->ResetLazy(target_, memory_size_);
  // throw -1;
C
chonwhite 已提交
85
  // std::cout << memory_size << std::endl;
Y
Yan Chunwei 已提交
86 87 88 89 90 91 92 93 94
  return buffer_->data();
}

void *TensorLite::mutable_data(TargetType target, size_t memory_size) {
  target_ = target;
  return mutable_data(memory_size);
}

void TensorLite::CopyDataFrom(const TensorLite &other) {
C
chonwhite 已提交
95
  // std::cout << "other11:: "<< &other << std::endl;
Y
Yan Chunwei 已提交
96 97 98
  dims_ = other.dims_;
  target_ = other.target_;
  lod_ = other.lod_;
C
chonwhite 已提交
99
  // std::cout << "before dataType\n";
Y
Yan Chunwei 已提交
100

C
chonwhite 已提交
101 102 103
  if (zynq_tensor_.get() == nullptr) {
    zynq_tensor_.reset(new zynqmp::Tensor());
  }
Y
Yan Chunwei 已提交
104

C
chonwhite 已提交
105 106 107 108
  auto dt = zynq_tensor_->dataType();
  // std::cout << "after dataType\n";

  // std::cout << "before resize\n";
T
TianXiaogang 已提交
109
  Resize(other.dims());
C
chonwhite 已提交
110 111
  auto shape = other.zynq_tensor_->shape();
  // std::cout << "after resize\n";
T
TianXiaogang 已提交
112
  zynq_tensor_->mutableData<void>(zynq_tensor_->dataType(), shape);
C
chonwhite 已提交
113 114 115 116 117 118 119 120 121 122
  // std::cout << "after mutableData\n";
  // std::cout << "ZynqTensor():" << this->ZynqTensor() << std::endl;
  // std::cout << "other Tensor():" << other.ZynqTensor() << std::endl;

  // this->ZynqTensor()->copyFrom(other.ZynqTensor());
  memcpy(this->ZynqTensor()->data<void>(),
         other.ZynqTensor()->data<void>(),
         other.ZynqTensor()->shape().numel() * sizeof(float));
  // memcpy()
  // std::cout << "after copyFrom\n";
T
TianXiaogang 已提交
123
}
Y
Yan Chunwei 已提交
124 125 126

}  // namespace lite
}  // namespace paddle