[Mlir-commits] [mlir] [OpenACC] Avoid repeated hash lookups (NFC) (PR #108795)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Sep 15 23:43:23 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-openacc
@llvm/pr-subscribers-openacc
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/108795.diff
1 Files Affected:
- (modified) mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp (+2-4)
``````````diff
diff --git a/mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp b/mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
index b4da50443c6cc9..877bd226a03528 100644
--- a/mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
+++ b/mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp
@@ -1790,9 +1790,8 @@ bool hasDuplicateDeviceTypes(
return false;
for (auto attr : *segments) {
auto deviceTypeAttr = mlir::dyn_cast<mlir::acc::DeviceTypeAttr>(attr);
- if (deviceTypes.contains(deviceTypeAttr.getValue()))
+ if (!deviceTypes.insert(deviceTypeAttr.getValue()).second)
return true;
- deviceTypes.insert(deviceTypeAttr.getValue());
}
return false;
}
@@ -1807,9 +1806,8 @@ LogicalResult checkDeviceTypes(mlir::ArrayAttr deviceTypes) {
mlir::dyn_cast_or_null<mlir::acc::DeviceTypeAttr>(attr);
if (!deviceTypeAttr)
return failure();
- if (crtDeviceTypes.contains(deviceTypeAttr.getValue()))
+ if (!crtDeviceTypes.insert(deviceTypeAttr.getValue()).second)
return failure();
- crtDeviceTypes.insert(deviceTypeAttr.getValue());
}
return success();
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/108795
More information about the Mlir-commits
mailing list