| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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. |
| */ |
| |
| /*! |
| * \file np_laplace_op.cc |
| * \brief Operator for numpy sampling from Laplace distributions |
| */ |
| #include "./np_laplace_op.h" |
| |
| namespace mxnet { |
| namespace op { |
| |
| DMLC_REGISTER_PARAMETER(NumpyLaplaceParam); |
| |
| NNVM_REGISTER_OP(_npi_laplace) |
| .describe("numpy behavior Laplace") |
| .set_num_inputs([](const nnvm::NodeAttrs& attrs) { |
| const NumpyLaplaceParam& param = nnvm::get<NumpyLaplaceParam>(attrs.parsed); |
| int num_inputs = 2; |
| if (param.loc.has_value()) |
| num_inputs -= 1; |
| if (param.scale.has_value()) |
| num_inputs -= 1; |
| return num_inputs; |
| }) |
| .set_num_outputs(1) |
| .set_attr<nnvm::FListInputNames>("FListInputNames", |
| [](const NodeAttrs& attrs) { |
| const NumpyLaplaceParam& param = |
| nnvm::get<NumpyLaplaceParam>(attrs.parsed); |
| int num_inputs = 2; |
| if (param.loc.has_value()) |
| num_inputs -= 1; |
| if (param.scale.has_value()) |
| num_inputs -= 1; |
| if (num_inputs == 0) |
| return std::vector<std::string>(); |
| if (num_inputs == 1) |
| return std::vector<std::string>{"input1"}; |
| return std::vector<std::string>{"input1", "input2"}; |
| }) |
| .set_attr_parser(ParamParser<NumpyLaplaceParam>) |
| .set_attr<mxnet::FInferShape>("FInferShape", TwoparamsDistOpShape<NumpyLaplaceParam>) |
| .set_attr<nnvm::FInferType>("FInferType", NumpyLaplaceOpType) |
| .set_attr<FResourceRequest>("FResourceRequest", |
| [](const nnvm::NodeAttrs& attrs) { |
| return std::vector<ResourceRequest>{ResourceRequest::kRandom, |
| ResourceRequest::kTempSpace}; |
| }) |
| .set_attr<FCompute>("FCompute<cpu>", NumpyLaplaceForward<cpu>) |
| .set_attr<nnvm::FGradient>("FGradient", MakeZeroGradNodes) |
| .add_argument("input1", "NDArray-or-Symbol", "Source input") |
| .add_argument("input2", "NDArray-or-Symbol", "Source input") |
| .add_arguments(NumpyLaplaceParam::__FIELDS__()); |
| |
| } // namespace op |
| } // namespace mxnet |