| /* |
| * 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) 2015 by Contributors |
| * \file cross_device_copy.cc |
| * \brief Special operator that copys NDArray |
| */ |
| #include <dmlc/logging.h> |
| #include <mxnet/operator.h> |
| |
| namespace mxnet { |
| namespace op { |
| |
| class CrossDeviceCopyOp : public Operator { |
| public: |
| void Forward(const OpContext &ctx, |
| const std::vector<TBlob> &in_data, |
| const std::vector<OpReqType> &req, |
| const std::vector<TBlob> &out_data, |
| const std::vector<TBlob> &aux_args) override { |
| // CrossDeviceCopy is specially handled by graph executor, |
| // We still re-use things such as InferShape in OperatorProperty |
| LOG(FATAL) << "Not Reached"; |
| } |
| }; |
| |
| class CrossDeviceCopyProp : public OperatorProperty { |
| void Init(const std::vector<std::pair<std::string, std::string> >& kwargs) override { |
| } |
| |
| std::map<std::string, std::string> GetParams() const override { |
| return std::map<std::string, std::string>(); |
| } |
| |
| bool InferShape(mxnet::ShapeVector *in_shape, |
| mxnet::ShapeVector *out_shape, |
| mxnet::ShapeVector *aux_shape) const override { |
| CHECK_EQ(in_shape->size(), 1) << "Input:[data]"; |
| const mxnet::TShape &dshape = in_shape->at(0); |
| if (dshape.ndim() == 0) return false; |
| out_shape->clear(); |
| out_shape->push_back(dshape); |
| return true; |
| } |
| |
| bool InferType(std::vector<int> *in_type, |
| std::vector<int> *out_type, |
| std::vector<int> *aux_type) const override { |
| CHECK_EQ(in_type->size(), 1) << "Input:[data]"; |
| if (in_type->at(0) == -1) return false; |
| out_type->clear(); |
| out_type->push_back(in_type->at(0)); |
| return true; |
| } |
| |
| OperatorProperty* Copy() const override { |
| return new CrossDeviceCopyProp(); |
| } |
| |
| std::string TypeString() const override { |
| return "_CrossDeviceCopy"; |
| } |
| |
| Operator* CreateOperator(Context ctx) const override { |
| return new CrossDeviceCopyOp(); |
| } |
| |
| ExecType exec_type() const override { |
| // TODO(tianqi) Think of other way to blend cross device op into operator interface. |
| // declare the op as cross device, |
| return ExecType::kCrossDeviceCopy; |
| } |
| }; |
| |
| |
| MXNET_REGISTER_OP_PROPERTY(_CrossDeviceCopy, CrossDeviceCopyProp) |
| .describe("Special op to copy data cross device"); |
| } // namespace op |
| } // namespace mxnet |