1 /** 2 * Copyright 2022 Huawei Technologies Co., Ltd 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef MINDSPORE_REGISTRY_OPAQUE_PREDICATE_H 18 #define MINDSPORE_REGISTRY_OPAQUE_PREDICATE_H 19 20 #include <vector> 21 #include <utility> 22 #include <string> 23 #include <memory> 24 #include <map> 25 #include <mutex> 26 #include <unordered_map> 27 #include <list> 28 29 #include "pybind11/numpy.h" 30 #include "include/common/visible.h" 31 32 namespace py = pybind11; 33 namespace mindspore { 34 namespace kernel { 35 class COMMON_EXPORT CustomizedOpaquePredicate { 36 public: 37 static CustomizedOpaquePredicate &GetInstance(); 38 void set_func_names(); 39 const std::vector<std::string> get_func_names(); 40 bool run_function(float x, float y); 41 py::function get_function(); 42 void init_calling_count(); 43 44 private: CustomizedOpaquePredicate()45 CustomizedOpaquePredicate() : func_names_({}) {} 46 ~CustomizedOpaquePredicate() = default; 47 48 std::vector<std::string> func_names_; 49 int calling_count_ = 0; 50 std::vector<int> func_name_code_; 51 }; 52 } // namespace kernel 53 } // namespace mindspore 54 55 #endif // MINDSPORE_REGISTRY_OPAQUE_PREDICATE_H 56