test_op_signature.h 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* 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>
18

19 20 21 22
#include <memory>
#include <unordered_map>
#include <unordered_set>

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

25
namespace phi {
26 27
namespace tests {

28
class TestArgumentMappingContext : public phi::ArgumentMappingContext {
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
 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 {
61
    return dense_tensor_inputs.count(name) + selected_rows_inputs.count(name);
62 63 64 65 66 67 68 69 70 71
  }

  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;
  }

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

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

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

85 86 87 88
  bool IsSparseCooTensorInput(const std::string& name) const override {
    return false;
  }

89 90 91 92
  bool IsSparseCsrTensorInput(const std::string& name) const override {
    return false;
  }

93 94 95 96 97 98 99 100
  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;
  }

101 102
  bool IsForInferShape() const override { return false; }

103 104 105 106 107 108 109 110 111
 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
112
}  // namespace phi