Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
change file
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiyan66 committed Dec 27, 2019
1 parent c1941a3 commit b9904c0
Show file tree
Hide file tree
Showing 3 changed files with 481 additions and 0 deletions.
63 changes: 63 additions & 0 deletions src/operator/numpy/np_median.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
* 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.
*/

/*!
* Copyright (c) 2019 by Contributors
* \file np_reduce_op_value.cc
* \brief CPU Implementation of broadcast and reduce functions based on value.
*/

#include "np_median.h"

namespace mxnet {
namespace op {

DMLC_REGISTER_PARAMETER(NumpyMedianParam);

inline bool NumpyMedianType(const nnvm::NodeAttrs& attrs,
std::vector<int> *in_attrs,
std::vector<int> *out_attrs) {
CHECK_EQ(in_attrs->size(), 1U);
CHECK_EQ(out_attrs->size(), 1U);

TYPE_ASSIGN_CHECK(*out_attrs, 0, mshadow::kFloat32);
return out_attrs->at(0) != -1 && in_attrs->at(0) != -1;
}

NNVM_REGISTER_OP(_npi_median)
.set_num_inputs(1)
.set_num_outputs(1)
.set_attr_parser(ParamParser<NumpyMedianParam>)
.set_attr<mxnet::FInferShape>("FInferShape", NumpyMedianShape)
.set_attr<nnvm::FInferType>("FInferType", NumpyMedianType)
.set_attr<nnvm::FListInputNames>("FListInputNames",
[](const NodeAttrs& attrs) {
return std::vector<std::string>{"a"};
})
.add_argument("a", "NDArray-or-Symbol", "The input")
.add_arguments(NumpyMedianParam::__FIELDS__())
.set_attr<FCompute>("FCompute<cpu>", NumpyMedianForward<cpu>)
.set_attr<FResourceRequest>("FResourceRequest",
[](const NodeAttrs& attrs) {
return std::vector<ResourceRequest>{ResourceRequest::kTempSpace};
})
.set_attr<nnvm::FGradient>("FGradient", MakeZeroGradNodes);

} // namespace op
} // namespace mxnet
31 changes: 31 additions & 0 deletions src/operator/numpy/np_median.cu
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* 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.
*/

/*!
* Copyright (c) 2019 by Contributors
* \file np_reduce_op_value.cu
* \brief GPU Implementation of reduce functions based on value.
*/
#include "np_median.h"

using namespace mxnet;
using namespace op;

NNVM_REGISTER_OP(_npi_median)
.set_attr<FCompute>("FCompute<gpu>", NumpyMedianForward<gpu>);
Loading

0 comments on commit b9904c0

Please sign in to comment.