tuple.h 2.0 KB
Newer Older
C
chengduo 已提交
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
/* 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 <stdexcept>
#include <string>
#include <vector>
#include "paddle/fluid/framework/channel.h"
#include "paddle/fluid/framework/lod_tensor.h"
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/framework/var_desc.h"
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/variant.h"

namespace paddle {
namespace framework {

typedef boost::variant<int, int64_t, float, double, std::string, Tensor,
                       LoDTensor /*, ChannelHolder*/>
    ElementVar;

class Tuple {
 public:
  using ElementVars = std::vector<ElementVar>;

38 39
  Tuple(const std::vector<ElementVar>& var,
        const std::vector<VarDesc>& var_desc)
C
chengduo 已提交
40
      : var_(var), var_desc_(var_desc) {}
41
  explicit Tuple(std::vector<ElementVar>& var) : var_(var) {}
C
chengduo 已提交
42

43
  ElementVar get(int idx) const { return var_[idx]; }
C
chengduo 已提交
44

45
  ElementVar& get(int idx) { return var_[idx]; }
C
chengduo 已提交
46

47
  bool isSameType(const Tuple& t) const;
C
chengduo 已提交
48

49
  size_t getSize() const { return var_.size(); }
C
chengduo 已提交
50 51 52 53 54 55

 private:
  ElementVars var_;
  std::vector<VarDesc> var_desc_;
};

56
bool Tuple::isSameType(const Tuple& t) const {
C
chengduo 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  size_t tuple_size = getSize();
  if (tuple_size != t.getSize()) {
    return false;
  }
  for (size_t j = 0; j < tuple_size; ++j) {
    auto type1 = get(j).which();
    auto type2 = t.get(j).which();
    if (type1 != type2) return false;
  }
  return true;
}

Tuple* make_tuple(std::vector<ElementVar> tuple) { return new Tuple(tuple); }

}  // namespace framework
}  // namespace paddle