-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[mlir][spirv] Replace hardcoded attribute strings with op methods Resolve #77627 #81443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write If you have received no comments on your PR for a week, you can request a review If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
@llvm/pr-subscribers-mlir-spirv @llvm/pr-subscribers-mlir Author: None (SahilPatidar) ChangesResolve #77627 Full diff: https://github.com/llvm/llvm-project/pull/81443.diff 3 Files Affected:
diff --git a/mlir/lib/Target/SPIRV/Deserialization/Deserializer.cpp b/mlir/lib/Target/SPIRV/Deserialization/Deserializer.cpp
index 02d03b3a0faeee..ee2f8c2fb37308 100644
--- a/mlir/lib/Target/SPIRV/Deserialization/Deserializer.cpp
+++ b/mlir/lib/Target/SPIRV/Deserialization/Deserializer.cpp
@@ -215,11 +215,14 @@ spirv::Deserializer::processMemoryModel(ArrayRef<uint32_t> operands) {
if (operands.size() != 2)
return emitError(unknownLoc, "OpMemoryModel must have two operands");
+ StringRef addressing_model = module->getAddressingModelAttrName().strref();
(*module)->setAttr(
- "addressing_model",
+ addressing_model,
opBuilder.getAttr<spirv::AddressingModelAttr>(
static_cast<spirv::AddressingModel>(operands.front())));
- (*module)->setAttr("memory_model",
+
+ StringRef memory_model = module->getMemoryModelAttrName().strref();
+ (*module)->setAttr(memory_model,
opBuilder.getAttr<spirv::MemoryModelAttr>(
static_cast<spirv::MemoryModel>(operands.back())));
diff --git a/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp b/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp
index 41d2c0310d0008..7e6f2f0c5bff27 100644
--- a/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp
+++ b/mlir/lib/Target/SPIRV/Serialization/SerializeOps.cpp
@@ -708,33 +708,37 @@ Serializer::processOp<spirv::CopyMemoryOp>(spirv::CopyMemoryOp op) {
operands.push_back(id);
}
- if (auto attr = op->getAttr("memory_access")) {
+ StringRef memory_access = op.getMemoryAccessAttrName().strref();
+ if (auto attr = op->getAttr(memory_access)) {
operands.push_back(
static_cast<uint32_t>(cast<spirv::MemoryAccessAttr>(attr).getValue()));
}
- elidedAttrs.push_back("memory_access");
+ elidedAttrs.push_back(memory_access);
- if (auto attr = op->getAttr("alignment")) {
+ StringRef alignment = op.getAlignmentAttrName().strref();
+ if (auto attr = op->getAttr(alignment)) {
operands.push_back(static_cast<uint32_t>(
cast<IntegerAttr>(attr).getValue().getZExtValue()));
}
- elidedAttrs.push_back("alignment");
+ elidedAttrs.push_back(alignment);
- if (auto attr = op->getAttr("source_memory_access")) {
+ StringRef source_memory_access = op.getSourceMemoryAccessAttrName().strref();
+ if (auto attr = op->getAttr(source_memory_access)) {
operands.push_back(
static_cast<uint32_t>(cast<spirv::MemoryAccessAttr>(attr).getValue()));
}
- elidedAttrs.push_back("source_memory_access");
+ elidedAttrs.push_back(source_memory_access);
- if (auto attr = op->getAttr("source_alignment")) {
+ StringRef source_alignment = op.getSourceAlignmentAttrName().strref();
+ if (auto attr = op->getAttr(source_alignment)) {
operands.push_back(static_cast<uint32_t>(
cast<IntegerAttr>(attr).getValue().getZExtValue()));
}
- elidedAttrs.push_back("source_alignment");
+ elidedAttrs.push_back(source_alignment);
if (failed(emitDebugLine(functionBody, op.getLoc())))
return failure();
encodeInstructionInto(functionBody, spirv::Opcode::OpCopyMemory, operands);
diff --git a/mlir/lib/Target/SPIRV/Serialization/Serializer.cpp b/mlir/lib/Target/SPIRV/Serialization/Serializer.cpp
index 40337e007bbf74..51fab95ad3a847 100644
--- a/mlir/lib/Target/SPIRV/Serialization/Serializer.cpp
+++ b/mlir/lib/Target/SPIRV/Serialization/Serializer.cpp
@@ -197,10 +197,13 @@ void Serializer::processExtension() {
}
void Serializer::processMemoryModel() {
+ StringRef memory_model = module.getMemoryModelAttrName().strref();
auto mm = static_cast<uint32_t>(
- module->getAttrOfType<spirv::MemoryModelAttr>("memory_model").getValue());
+ module->getAttrOfType<spirv::MemoryModelAttr>(memory_model).getValue());
+
+ StringRef addressing_model = module.getAddressingModelAttrName().strref();
auto am = static_cast<uint32_t>(
- module->getAttrOfType<spirv::AddressingModelAttr>("addressing_model")
+ module->getAttrOfType<spirv::AddressingModelAttr>(addressing_model)
.getValue());
encodeInstructionInto(memoryModel, spirv::Opcode::OpMemoryModel, {am, mm});
|
@@ -215,11 +215,14 @@ spirv::Deserializer::processMemoryModel(ArrayRef<uint32_t> operands) { | |||
if (operands.size() != 2) | |||
return emitError(unknownLoc, "OpMemoryModel must have two operands"); | |||
|
|||
StringRef addressing_model = module->getAddressingModelAttrName().strref(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why StringRef instead of StringAttr?
We'll use string comparison instead of pointer comparison...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should I alter this all across the place?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the change! LGM in general; but there are a few naming style issues. I just went ahead and fixed them given that you have been waiting for a while. Sorry about the delay in reviewing!
@SahilPatidar Congratulations on having your first Pull Request (PR) merged into the LLVM Project! Your changes will be combined with recent changes from other authors, then tested Please check whether problems have been caused by your change specifically, as How to do this, and the rest of the post-merge process, is covered in detail here. If your change does cause a problem, it may be reverted, or you can revert it yourself. If you don't get any reports, no action is required from you. Your changes are working as expected, well done! |
Resolve #77627