op_node_signature_desc.h 1.9 KB
Newer Older
L
Li Xinqi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
Copyright 2020 The OneFlow 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.
*/
#ifndef ONEFLOW_CORE_OPERATOR_SIG_DESC_H_
#define ONEFLOW_CORE_OPERATOR_SIG_DESC_H_

qq_22305325's avatar
qq_22305325 已提交
19
#include "oneflow/core/operator/op_node_signature.pb.h"
20
#include "oneflow/core/operator/op_node_signature.cfg.h"
L
Li Xinqi 已提交
21 22 23 24 25 26 27 28 29 30 31
#include "oneflow/core/job/sbp_parallel.pb.h"
#include "oneflow/core/job/parallel_signature.pb.h"
#include "oneflow/core/register/blob_desc.h"
#include "oneflow/core/common/util.h"

namespace oneflow {

class OpNodeSignatureDesc final {
 public:
  OpNodeSignatureDesc(const OpNodeSignatureDesc&) = delete;
  OpNodeSignatureDesc(OpNodeSignatureDesc&&) = delete;
qq_22305325's avatar
qq_22305325 已提交
32
  OpNodeSignatureDesc(int64_t symbol_id, const OpNodeSignature& op_node_signature);
L
Li Xinqi 已提交
33

34
  const Optional<int64_t>& symbol_id() const { return symbol_id_; }
35 36
  const std::shared_ptr<cfg::OpNodeSignature>& op_node_signature() const {
    return op_node_signature_;
qq_22305325's avatar
qq_22305325 已提交
37
  }
38 39 40
  const cfg::SbpSignature& sbp_signature() const { return op_node_signature_->sbp_signature(); }
  const cfg::ParallelSignature& parallel_signature() const {
    return op_node_signature_->parallel_signature();
L
Li Xinqi 已提交
41 42
  }

L
Li Xinqi 已提交
43
  Maybe<const BlobDesc&> LogicalBlobDesc4BnInOp(const std::string& bn_in_op) const;
L
Li Xinqi 已提交
44 45

 private:
46
  Optional<int64_t> symbol_id_;
47
  std::shared_ptr<cfg::OpNodeSignature> op_node_signature_;
L
Li Xinqi 已提交
48 49 50 51 52 53
  HashMap<std::string, std::unique_ptr<BlobDesc>> bn_in_op2blob_desc_;
};

}  // namespace oneflow

#endif  // ONEFLOW_CORE_OPERATOR_SIG_DESC_H_