test_op_signature.h 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Copyright (c) 2022 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 <gtest/gtest.h>
#include <memory>
#include <unordered_map>
#include <unordered_set>

22
#include "paddle/phi/core/compat/op_utils.h"
23

24
namespace phi {
25 26
namespace tests {

27
class TestArgumentMappingContext : public phi::ArgumentMappingContext {
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
 public:
  TestArgumentMappingContext(
      std::unordered_set<std::string> dense_tensor_ins,
      std::unordered_set<std::string> sr_ins,
      std::unordered_map<std::string, paddle::any> op_attrs,
      std::unordered_set<std::string> dense_tensor_outs,
      std::unordered_set<std::string> sr_outs = {})
      : dense_tensor_inputs(dense_tensor_ins),
        selected_rows_inputs(sr_ins),
        attrs(op_attrs),
        dense_tensor_outputs(dense_tensor_outs),
        selected_rows_outputs(sr_outs) {}

  bool HasInput(const std::string& name) const override {
    return dense_tensor_inputs.count(name) > 0 ||
           selected_rows_inputs.count(name) > 0;
  }

  bool HasOutput(const std::string& name) const override {
    return dense_tensor_outputs.count(name) > 0 ||
           selected_rows_outputs.count(name) > 0;
  }

  bool HasAttr(const std::string& name) const override {
    return attrs.count(name) > 0;
  }

  paddle::any Attr(const std::string& name) const override {
    return attrs.at(name);
  }

  size_t InputSize(const std::string& name) const override {
60
    return dense_tensor_inputs.count(name) + selected_rows_inputs.count(name);
61 62 63 64 65 66 67 68 69 70
  }

  size_t OutputSize(const std::string& name) const override {
    return dense_tensor_outputs.size() + selected_rows_outputs.size();
  }

  bool IsDenseTensorInput(const std::string& name) const override {
    return dense_tensor_inputs.count(name) > 0;
  }

71 72 73 74
  bool IsDenseTensorInputs(const std::string& name) const override {
    return dense_tensor_inputs.count(name) > 0;
  }

75 76 77 78
  bool IsSelectedRowsInput(const std::string& name) const override {
    return selected_rows_inputs.count(name) > 0;
  }

79 80 81 82 83
  // add member if needed
  bool IsDenseTensorVectorInput(const std::string& name) const override {
    return false;
  }

84 85 86 87 88 89 90 91
  bool IsDenseTensorOutput(const std::string& name) const override {
    return dense_tensor_outputs.count(name) > 0;
  }

  bool IsSelectedRowsOutput(const std::string& name) const override {
    return selected_rows_outputs.count(name) > 0;
  }

92 93
  bool IsForInferShape() const override { return false; }

94 95 96 97 98 99 100 101 102
 private:
  const std::unordered_set<std::string> dense_tensor_inputs;
  const std::unordered_set<std::string> selected_rows_inputs;
  const std::unordered_map<std::string, paddle::any> attrs;
  const std::unordered_set<std::string> dense_tensor_outputs;
  const std::unordered_set<std::string> selected_rows_outputs;
};

}  // namespace tests
103
}  // namespace phi