/* Copyright 2020 The OneFlow Authors. All rights reserved. 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. */ #include "oneflow/core/framework/framework.h" #include "oneflow/core/kernel/cuda_graph_support.h" #include "oneflow/core/primitive/include/permute.h" namespace oneflow { namespace user_op { template std::unique_ptr NewPermutePrimitive(Context* ctx) { const int64_t num_dims = ctx->TensorDesc4ArgNameAndIndex("output", 0)->shape().NumAxes(); return primitive::NewPrimitive(ctx->device_type(), num_dims); } class TransposeKernel final : public OpKernel, public user_op::CudaGraphSupport { public: OF_DISALLOW_COPY_AND_MOVE(TransposeKernel); TransposeKernel() = default; ~TransposeKernel() override = default; private: void Compute(KernelComputeContext* ctx) const override { auto primitive = NewPermutePrimitive(ctx); CHECK(primitive); const Tensor* tensor_in = ctx->Tensor4ArgNameAndIndex("input", 0); Tensor* tensor_out = ctx->Tensor4ArgNameAndIndex("output", 0); const auto& perm = ctx->Attr>("perm"); const ShapeView& in_shape = tensor_in->shape(); DataType dtype = tensor_out->data_type(); size_t num_dims = tensor_in->shape().NumAxes(); const int64_t* src_dims = in_shape.ptr(); int64_t elem_cnt = tensor_out->shape().elem_cnt(); if (elem_cnt != 0) { primitive->Launch(ctx->stream_ctx(), dtype, num_dims, src_dims, tensor_in->dptr(), perm.data(), tensor_out->mut_dptr()); } else { // For 0-d Tensor return; } } bool AlwaysComputeWhenAllOutputsEmpty() const override { return false; } }; hob::HobContextGetter PermutePrimitiveExists() { return user_op::HobCtxGetter("PermutePrimitiveExists", [](const user_op::KernelRegContext& ctx) { return NewPermutePrimitive(&ctx).operator bool(); }); } REGISTER_USER_KERNEL("transpose") .SetCreateFn() .SetIsMatchedHob(PermutePrimitiveExists() == true); } // namespace user_op } // namespace oneflow