regmodule_pyngraph_op.hpp 3.09 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 40 41 42 43 44
#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"
#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"
45
#include "pyngraph/ops/get_output_element.hpp"
46 47 48 49 50
#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
51
#include "pyngraph/ops/lrn.hpp"
52
#include "pyngraph/ops/max.hpp"
53 54
#include "pyngraph/ops/max_pool.hpp"
#include "pyngraph/ops/maximum.hpp"
55
#include "pyngraph/ops/min.hpp"
56 57 58 59 60 61
#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"
62
#include "pyngraph/ops/or.hpp"
63
#include "pyngraph/ops/pad.hpp"
64
#include "pyngraph/ops/parameter.hpp"
65
#include "pyngraph/ops/passthrough.hpp"
66 67 68 69 70
#include "pyngraph/ops/power.hpp"
#include "pyngraph/ops/product.hpp"
#include "pyngraph/ops/relu.hpp"
#include "pyngraph/ops/replace_slice.hpp"
#include "pyngraph/ops/reshape.hpp"
71
#include "pyngraph/ops/result.hpp"
72 73 74 75 76 77 78 79 80 81 82 83
#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"
84
#include "pyngraph/ops/topk.hpp"
85 86 87 88

namespace py = pybind11;

void regmodule_pyngraph_op(py::module m);