Scanner C++ API
kernel_registry.h
1 /* Copyright 2016 Carnegie Mellon University
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #pragma once
17 
18 #include "scanner/api/kernel.h"
19 #include "scanner/engine/kernel_factory.h"
20 
21 #include "scanner/util/common.h"
22 
23 #include <map>
24 
25 namespace scanner {
26 namespace internal {
27 
29  public:
30  void add_kernel(const std::string& name, KernelFactory* factory);
31 
32  bool has_kernel(const std::string& name, DeviceType device_type);
33 
34  KernelFactory* get_kernel(const std::string& name, DeviceType device_type);
35 
36  protected:
37  static std::string factory_name(const std::string& name, DeviceType type);
38 
39  private:
40  std::map<std::string, KernelFactory*> factories_;
41 };
42 
43 KernelRegistry* get_kernel_registry();
44 }
45 }
Interface for constructing ops at runtime.
Definition: kernel_factory.h:38
Definition: kernel_registry.h:28
Definition: database.cpp:36