/******************************************************************************* * Copyright (c) 2015-2018 Skymind, Inc. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at * https://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. * * SPDX-License-Identifier: Apache-2.0 ******************************************************************************/ // // Created by GS at 12/10/2019 // #include #if NOT_EXCLUDED(OP_matrix_inverse) #include #include namespace nd4j { namespace ops { CUSTOM_OP_IMPL(lu, 1, 2, false, 0, 0) { auto input = INPUT_VARIABLE(0); auto z = OUTPUT_VARIABLE(0); auto p = OUTPUT_VARIABLE(1); REQUIRE_TRUE(input->rankOf() >=2, 0, "matrix_inverse: The rank of input array should not less than 2, but %i is given", input->rankOf()); REQUIRE_TRUE(input->sizeAt(-1) == input->sizeAt(-2), 0, "matrix_inverse: The last two dimmensions should be equal, but %i and %i are given", input->sizeAt(-1), input->sizeAt(-2)); helpers::lu(block.launchContext(), input, z, p); return Status::OK(); } DECLARE_SHAPE_FN(lu) { auto in = inputShape->at(0); auto shapeVector = ShapeUtils::shapeAsVector(in); auto luShape = ShapeBuilders::copyShapeInfoAndType(in, in, true, block.workspace()); auto luP = ShapeBuilders::createShapeInfo(nd4j::DataType::INT32, shape::order(in), shapeVector.size() - 1, shapeVector.data(), block.workspace()); return SHAPELIST(CONSTANT(luShape), CONSTANT(luP)); } DECLARE_TYPES(lu) { getOpDescriptor() ->setAllowedInputTypes({ALL_FLOATS}) ->setAllowedOutputTypes(0, {ALL_FLOATS}) ->setAllowedOutputTypes(1, {nd4j::DataType::INT32, nd4j::DataType::INT64}) ->setSameMode(false); } } } #endif