mirror of https://github.com/llvm/torch-mlir
27 lines
784 B
C++
27 lines
784 B
C++
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
|
||
|
// See https://llvm.org/LICENSE.txt for license information.
|
||
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
// Also available under a BSD-style license. See LICENSE.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "torch-mlir/Dialect/Torch/Utils/Utils.h"
|
||
|
|
||
|
namespace mlir {
|
||
|
namespace torch {
|
||
|
namespace Torch {
|
||
|
|
||
|
int64_t toPositiveDim(int64_t dim, int64_t inputRank) {
|
||
|
return dim >= 0 ? dim : dim + inputRank;
|
||
|
}
|
||
|
|
||
|
bool isValidDim(int64_t dim, int64_t inputRank) {
|
||
|
return dim >= 0 && dim < inputRank;
|
||
|
}
|
||
|
|
||
|
} // namespace Torch
|
||
|
} // namespace torch
|
||
|
} // namespace mlir
|