regmodule_pyngraph_op.hpp 3.94 KB
Newer Older
1
//*****************************************************************************
2
// Copyright 2017-2019 Intel Corporation
3 4 5 6 7 8 9 10 11 12 13 14 15
//
// 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.
//*****************************************************************************
16 17 18 19 20 21 22

#pragma once

#include <pybind11/pybind11.h>
#include "pyngraph/ops/abs.hpp"
#include "pyngraph/ops/acos.hpp"
#include "pyngraph/ops/add.hpp"
23
#include "pyngraph/ops/allreduce.hpp"
24
#include "pyngraph/ops/and.hpp"
25 26
#include "pyngraph/ops/argmax.hpp"
#include "pyngraph/ops/argmin.hpp"
27 28 29
#include "pyngraph/ops/asin.hpp"
#include "pyngraph/ops/atan.hpp"
#include "pyngraph/ops/avg_pool.hpp"
30
#include "pyngraph/ops/batch_norm.hpp"
31
#include "pyngraph/ops/broadcast.hpp"
32
#include "pyngraph/ops/broadcast_distributed.hpp"
33 34 35 36 37 38 39
#include "pyngraph/ops/ceiling.hpp"
#include "pyngraph/ops/concat.hpp"
#include "pyngraph/ops/constant.hpp"
#include "pyngraph/ops/convert.hpp"
#include "pyngraph/ops/convolution.hpp"
#include "pyngraph/ops/cos.hpp"
#include "pyngraph/ops/cosh.hpp"
40
#include "pyngraph/ops/dequantize.hpp"
41 42 43 44 45
#include "pyngraph/ops/divide.hpp"
#include "pyngraph/ops/dot.hpp"
#include "pyngraph/ops/equal.hpp"
#include "pyngraph/ops/exp.hpp"
#include "pyngraph/ops/floor.hpp"
46
#include "pyngraph/ops/fused/clamp.hpp"
47
#include "pyngraph/ops/fused/depth_to_space.hpp"
48
#include "pyngraph/ops/fused/elu.hpp"
49
#include "pyngraph/ops/fused/fake_quantize.hpp"
50
#include "pyngraph/ops/fused/gelu.hpp"
51
#include "pyngraph/ops/fused/gemm.hpp"
52
#include "pyngraph/ops/fused/grn.hpp"
53 54 55 56
#include "pyngraph/ops/fused/hard_sigmoid.hpp"
#include "pyngraph/ops/fused/mvn.hpp"
#include "pyngraph/ops/fused/prelu.hpp"
#include "pyngraph/ops/fused/scale_shift.hpp"
57
#include "pyngraph/ops/fused/shuffle_channels.hpp"
58
#include "pyngraph/ops/fused/space_to_depth.hpp"
59 60
#include "pyngraph/ops/fused/squared_difference.hpp"
#include "pyngraph/ops/fused/squeeze.hpp"
61
#include "pyngraph/ops/fused/unsqueeze.hpp"
62
#include "pyngraph/ops/get_output_element.hpp"
63 64 65 66 67
#include "pyngraph/ops/greater.hpp"
#include "pyngraph/ops/greater_eq.hpp"
#include "pyngraph/ops/less.hpp"
#include "pyngraph/ops/less_eq.hpp"
#include "pyngraph/ops/log.hpp"
tsocha's avatar
tsocha committed
68
#include "pyngraph/ops/lrn.hpp"
69
#include "pyngraph/ops/max.hpp"
70 71
#include "pyngraph/ops/max_pool.hpp"
#include "pyngraph/ops/maximum.hpp"
72
#include "pyngraph/ops/min.hpp"
73 74 75 76 77 78
#include "pyngraph/ops/minimum.hpp"
#include "pyngraph/ops/multiply.hpp"
#include "pyngraph/ops/negative.hpp"
#include "pyngraph/ops/not.hpp"
#include "pyngraph/ops/not_equal.hpp"
#include "pyngraph/ops/one_hot.hpp"
79
#include "pyngraph/ops/or.hpp"
80
#include "pyngraph/ops/pad.hpp"
81
#include "pyngraph/ops/parameter.hpp"
82
#include "pyngraph/ops/passthrough.hpp"
83 84
#include "pyngraph/ops/power.hpp"
#include "pyngraph/ops/product.hpp"
85 86 87
#include "pyngraph/ops/quantize.hpp"
#include "pyngraph/ops/quantized_convolution.hpp"
#include "pyngraph/ops/quantized_dot.hpp"
88 89 90
#include "pyngraph/ops/relu.hpp"
#include "pyngraph/ops/replace_slice.hpp"
#include "pyngraph/ops/reshape.hpp"
91
#include "pyngraph/ops/result.hpp"
92 93 94 95 96 97 98 99 100 101 102 103
#include "pyngraph/ops/reverse.hpp"
#include "pyngraph/ops/select.hpp"
#include "pyngraph/ops/sign.hpp"
#include "pyngraph/ops/sin.hpp"
#include "pyngraph/ops/sinh.hpp"
#include "pyngraph/ops/slice.hpp"
#include "pyngraph/ops/softmax.hpp"
#include "pyngraph/ops/sqrt.hpp"
#include "pyngraph/ops/subtract.hpp"
#include "pyngraph/ops/sum.hpp"
#include "pyngraph/ops/tan.hpp"
#include "pyngraph/ops/tanh.hpp"
104
#include "pyngraph/ops/topk.hpp"
105 106 107 108

namespace py = pybind11;

void regmodule_pyngraph_op(py::module m);