/******************************************************************************* * 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 ******************************************************************************/ // // @author sgazeos@gmail.com // #include namespace sd { namespace ops { namespace helpers { template static void rollFunctorLinear_(NDArray* input, NDArray* output, int shift, bool inplace){ auto source = input; if (!inplace) output->assign(input); int fullLen = source->lengthOf(); int actualShift = shift; // % fullLen; // shift already non-negative then if (actualShift < 0) { actualShift -= fullLen * (actualShift / fullLen - 1); } else actualShift %= fullLen; if (actualShift) { int shiftCount = fullLen / actualShift - 1; int remainShift = fullLen % actualShift; // stage 1) swap last actualShift elements with first ones. //PRAGMA_OMP_PARALLEL_FOR //_IF(actualShift > Environment::getInstance().elementwiseThreshold()) for (int e = 0; e < actualShift; ++e) { int sourceIndex = fullLen - actualShift + e; auto _e0 = output->e(e); auto _e1 = output->e(sourceIndex); //sd::math::nd4j_swap((*output)(e), (*output)(sourceIndex)); output->p(e, _e1); output->p(sourceIndex, _e0); } // stage 2) swap swapped actualShift elements with rest remainShiftCount times. //PRAGMA_OMP_PARALLEL_FOR //_IF(shiftCount > Environment::getInstance().tadThreshold()) for (int count = 1; count < shiftCount; ++count) { for (int e = 0; e < actualShift; ++e) { int destinationIndex = fullLen - (count + 1) * actualShift + e; int sourceIndex = fullLen - count * actualShift + e; auto _e0 = output->e(destinationIndex); auto _e1 = output->e(sourceIndex); //sd::math::nd4j_swap((*output)(destinationIndex), (*output)(sourceIndex)); output->p(destinationIndex, _e1); output->p(sourceIndex, _e0); } } // stage 3) swap remainer of items. if (remainShift && shiftCount) for (int i = actualShift; i < 2 * actualShift; ++i) { auto _e0 = output->e(i); auto _e1 = output->e(i + remainShift); //sd::math::nd4j_swap((*output)(i), (*output)(i + remainShift)); output->p(i, _e1); output->p(i + remainShift, _e0); } } } void rollFunctorFull(sd::LaunchContext * context, NDArray* input, NDArray* output, std::vector const& shifts, std::vector const& axes, bool inplace){ if (!inplace) output->assign(input); auto source = output; //input; for (size_t i = 0; i < axes.size(); i++) { int axe = axes[i]; if (axe == source->rankOf() - 1) {// last dimension ResultSet listOfTensors = source->allTensorsAlongDimension({axe}); ResultSet listOfOutTensors = output->allTensorsAlongDimension({axe}); int fullLen = listOfTensors.size(); int theShift = shifts[i]; if (theShift > 0) { theShift %= fullLen; } else { theShift -= fullLen * (theShift / fullLen - 1); } for (int k = 0; k < fullLen; k++) { rollFunctorLinear(context, listOfTensors.at(k), listOfOutTensors.at(k), theShift, true); } } else { std::vector dims(source->rankOf() - axe - 1); for (size_t i = 0; i < dims.size(); ++i) dims[i] = axe + 1 + i; ResultSet listOfTensors = source->allTensorsAlongDimension({dims}); ResultSet listOfOutTensors = output->allTensorsAlongDimension({dims}); // int fullLen = listOfTensors.size(); int sizeAt = input->sizeAt(axe); int theShift = shifts[i]; if (theShift > 0) { theShift %= sizeAt; } else { theShift -= sizeAt * (theShift / sizeAt - 1); } if (theShift) { for (int dim = 0; dim < fullLen / sizeAt; ++dim) { for (int e = theShift; e < sizeAt - theShift; ++e) { auto sourceM = listOfTensors.at(dim * sizeAt + e - theShift); auto targetM = listOfOutTensors.at(dim * sizeAt + e); sourceM->swapUnsafe(*targetM); } for (int e = 0; e < theShift; ++e) { int sourceIndex = dim * sizeAt + sizeAt - theShift + e; auto sourceM = listOfTensors.at(sourceIndex); auto targetM = listOfOutTensors.at(dim * sizeAt + e); sourceM->swapUnsafe(*targetM); } } } } // if (!inplace) // source = output; } } void rollFunctorLinear(sd::LaunchContext * context, NDArray* input, NDArray* output, int shift, bool inplace){ BUILD_SINGLE_SELECTOR(input->dataType(), rollFunctorLinear_, (input, output, shift, inplace), LIBND4J_TYPES); } BUILD_SINGLE_TEMPLATE(template void rollFunctorLinear_, (NDArray* input, NDArray* output, int shift, bool inplace), LIBND4J_TYPES); } } }