summaryrefslogtreecommitdiff
path: root/mlir/test/python/python_test_ops.td
diff options
context:
space:
mode:
authorRamkumar Ramachandra <ramkumar.ramachandra@codasip.com>2024-07-02 10:42:33 +0100
committerGitHub <noreply@github.com>2024-07-02 10:42:33 +0100
commitdb791b278a414fb6df1acc1799adcf11d8fb9169 (patch)
tree2584310aa726ee2bbdeab6442676911cdd749726 /mlir/test/python/python_test_ops.td
parent01134e69d29370ee9dbd7d281abaa27063f21396 (diff)
mlir/LogicalResult: move into llvm (#97309)
This patch is part of a project to move the Presburger library into LLVM.
Diffstat (limited to 'mlir/test/python/python_test_ops.td')
-rw-r--r--mlir/test/python/python_test_ops.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/mlir/test/python/python_test_ops.td b/mlir/test/python/python_test_ops.td
index 95301985e3fd..c0bc18448610 100644
--- a/mlir/test/python/python_test_ops.td
+++ b/mlir/test/python/python_test_ops.td
@@ -128,7 +128,7 @@ def InferResultsOp : TestOp<"infer_results_op", [InferTypeOpInterface]> {
let results = (outs AnyInteger:$single, AnyInteger:$doubled);
let extraClassDeclaration = [{
- static ::mlir::LogicalResult inferReturnTypes(
+ static ::llvm::LogicalResult inferReturnTypes(
::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location,
::mlir::ValueRange operands, ::mlir::DictionaryAttr attributes,
::mlir::OpaqueProperties,
@@ -151,7 +151,7 @@ def InferResultsVariadicInputsOp : TestOp<"infer_results_variadic_inputs_op",
let results = (outs I32OrF32:$res);
let extraClassDeclaration = [{
- static ::mlir::LogicalResult inferReturnTypes(
+ static ::llvm::LogicalResult inferReturnTypes(
::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location,
::mlir::ValueRange operands, ::mlir::DictionaryAttr attributes,
::mlir::OpaqueProperties,
@@ -180,7 +180,7 @@ def InferShapedTypeComponentsOp : TestOp<"infer_shaped_type_components_op",
let results = (outs AnyTensor:$result);
let extraClassDefinition = [{
- ::mlir::LogicalResult $cppClass::inferReturnTypeComponents(
+ ::llvm::LogicalResult $cppClass::inferReturnTypeComponents(
::mlir::MLIRContext *context, ::std::optional<::mlir::Location> location,
::mlir::ValueShapeRange operands, ::mlir::DictionaryAttr attributes,
::mlir::OpaqueProperties properties, ::mlir::RegionRange regions,