| /* |
| * 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 transsparse_lib.cc |
| * \brief Sample 2D transpose custom operator. |
| */ |
| |
| #include <iostream> |
| #include <utility> |
| #include "mxnet/lib_api.h" |
| |
| using namespace mxnet::ext; |
| |
| void transpose(MXTensor& src, MXTensor& dst, const OpResource& res) { |
| MXSparse* A = src.data<MXSparse>(); |
| MXSparse* B = dst.data<MXSparse>(); |
| |
| std::vector<int64_t> shape = src.shape; |
| int64_t h = shape[0]; |
| int64_t w = shape[1]; |
| if (src.stype == kRowSparseStorage) { |
| // Keys of the map is the row index of transposed tensors. |
| // Values of the map is the rows which have non-zero elements. |
| std::map<int, std::vector<float>> mp; |
| float* Aval = (float*)(A->data); |
| for (int i = 0; i < A->data_len; i++) { |
| int row = i / w; |
| int col = i % w; |
| row = A->indices[row]; |
| if (Aval[i] != 0) { |
| if (mp.find(col) == mp.end()) { |
| mp[col] = std::vector<float>(h, 0); |
| mp[col][row] = Aval[i]; |
| } else { |
| mp[col][row] = Aval[i]; |
| } |
| } |
| } |
| |
| // Alloc memory for output tensors. |
| res.alloc_sparse(B, 0, mp.size()); |
| float* Bval = (float*)(B->data); |
| int didx = 0, iidx = 0; |
| for (const auto& i : mp) { |
| B->indices[iidx++] = i.first; |
| for (auto j : i.second) { |
| Bval[didx++] = j; |
| } |
| } |
| } |
| } |
| |
| MXReturnValue forward(const std::unordered_map<std::string, std::string>& attrs, |
| std::vector<MXTensor>* inputs, |
| std::vector<MXTensor>* outputs, |
| const OpResource& res) { |
| // The data types and storage types of inputs and outputs should be the same. |
| if (inputs->at(0).dtype != outputs->at(0).dtype || inputs->at(0).stype != outputs->at(0).stype) { |
| MX_ERROR_MSG << "Error! Expected all inputs and outputs to be the same type." |
| << "Found input storage type:" << inputs->at(0).stype |
| << " Found output storage type:" << outputs->at(0).stype |
| << " Found input data type:" << inputs->at(0).dtype |
| << " Found output data type:" << outputs->at(0).dtype; |
| return MX_FAIL; |
| } |
| transpose(inputs->at(0), outputs->at(0), res); |
| return MX_SUCCESS; |
| } |
| |
| MXReturnValue backward(const std::unordered_map<std::string, std::string>& attrs, |
| std::vector<MXTensor>* inputs, |
| std::vector<MXTensor>* outputs, |
| const OpResource& res) { |
| return MX_SUCCESS; |
| } |
| |
| MXReturnValue parseAttrs(const std::unordered_map<std::string, std::string>& attrs, |
| int* num_in, |
| int* num_out) { |
| *num_in = 1; |
| *num_out = 1; |
| return MX_SUCCESS; |
| } |
| |
| MXReturnValue inferType(const std::unordered_map<std::string, std::string>& attrs, |
| std::vector<int>* intypes, |
| std::vector<int>* outtypes) { |
| // validate inputs |
| if (intypes->size() != 1) { |
| MX_ERROR_MSG << "Expected 1 inputs to inferType"; |
| return MX_FAIL; |
| } |
| if (intypes->at(0) != kFloat32) { |
| MX_ERROR_MSG << "Expected input to have float32 type"; |
| return MX_FAIL; |
| } |
| |
| outtypes->at(0) = intypes->at(0); |
| return MX_SUCCESS; |
| } |
| |
| MXReturnValue inferSType(const std::unordered_map<std::string, std::string>& attrs, |
| std::vector<int>* instypes, |
| std::vector<int>* outstypes) { |
| if (instypes->at(0) != kRowSparseStorage) { |
| MX_ERROR_MSG << "Expected storage type is kRowSparseStorage"; |
| return MX_FAIL; |
| } |
| outstypes->at(0) = instypes->at(0); |
| return MX_SUCCESS; |
| } |
| |
| MXReturnValue inferShape(const std::unordered_map<std::string, std::string>& attrs, |
| std::vector<std::vector<unsigned int>>* inshapes, |
| std::vector<std::vector<unsigned int>>* outshapes) { |
| // validate inputs |
| if (inshapes->size() != 1) { |
| MX_ERROR_MSG << "Expected 1 inputs to inferShape"; |
| return MX_FAIL; |
| } |
| |
| outshapes->at(0).push_back(inshapes->at(0)[1]); |
| outshapes->at(0).push_back(inshapes->at(0)[0]); |
| return MX_SUCCESS; |
| } |
| |
| REGISTER_OP(my_transposerowsp) |
| .setForward(forward, "cpu") |
| .setBackward(backward, "cpu") |
| .setParseAttrs(parseAttrs) |
| .setInferType(inferType) |
| .setInferSType(inferSType) |
| .setInferShape(inferShape); |
| |
| /* ------------------------------------------------------------------------- */ |
| |
| class MyStatefulTransposeRowSP : public CustomStatefulOp { |
| public: |
| explicit MyStatefulTransposeRowSP(int count, std::unordered_map<std::string, std::string> attrs) |
| : count(count), attrs_(std::move(attrs)) {} |
| |
| MXReturnValue Forward(std::vector<MXTensor>* inputs, |
| std::vector<MXTensor>* outputs, |
| const OpResource& op_res) override { |
| std::cout << "Info: keyword + number of forward: " << ++count << std::endl; |
| return forward(attrs_, inputs, outputs, op_res); |
| } |
| |
| MXReturnValue Backward(std::vector<MXTensor>* inputs, |
| std::vector<MXTensor>* outputs, |
| const OpResource& op_res) override { |
| return backward(attrs_, inputs, outputs, op_res); |
| } |
| |
| private: |
| int count; |
| const std::unordered_map<std::string, std::string> attrs_; |
| }; |
| |
| MXReturnValue createOpState(const std::unordered_map<std::string, std::string>& attrs, |
| const MXContext& ctx, |
| const std::vector<std::vector<unsigned int>>& in_shapes, |
| const std::vector<int> in_types, |
| CustomStatefulOp** op_inst) { |
| // testing passing of keyword arguments |
| int count = attrs.count("test_kw") > 0 ? std::stoi(attrs.at("test_kw")) : 0; |
| // creating stateful operator instance |
| *op_inst = new MyStatefulTransposeRowSP(count, attrs); |
| (*op_inst)->ignore_warn = true; |
| std::cout << "Info: stateful operator created" << std::endl; |
| return MX_SUCCESS; |
| } |
| |
| REGISTER_OP(my_state_transposerowsp) |
| .setParseAttrs(parseAttrs) |
| .setInferType(inferType) |
| .setInferSType(inferSType) |
| .setInferShape(inferShape) |
| .setCreateOpState(createOpState, "cpu"); |
| |
| MXReturnValue initialize(int version) { |
| if (version >= 10700) { |
| std::cout << "MXNet version " << version << " supported" << std::endl; |
| return MX_SUCCESS; |
| } else { |
| MX_ERROR_MSG << "MXNet version " << version << " not supported"; |
| return MX_FAIL; |
| } |
| } |