[Beignet] [PATCH V2] output more detail of GEN IR for workgroup op
Pan, Xiuli
xiuli.pan at intel.com
Wed Dec 28 07:00:17 UTC 2016
LGTM!
-----Original Message-----
From: Beignet [mailto:beignet-bounces at lists.freedesktop.org] On Behalf Of Guo, Yejun
Sent: Wednesday, December 21, 2016 6:33 PM
To: beignet at lists.freedesktop.org
Cc: Guo, Yejun <yejun.guo at intel.com>
Subject: [Beignet] [PATCH V2] output more detail of GEN IR for workgroup op
v2: the src number changes for different ops
Signed-off-by: Guo, Yejun <yejun.guo at intel.com>
---
backend/src/ir/instruction.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/backend/src/ir/instruction.cpp b/backend/src/ir/instruction.cpp index 0687dbf..f0c3957 100644
--- a/backend/src/ir/instruction.cpp
+++ b/backend/src/ir/instruction.cpp
@@ -1917,7 +1917,8 @@ namespace ir {
}
out << " %" << this->getDst(fn, 0);
- out << " %" << this->getSrc(fn, 0);
+ for (uint32_t i = 0; i < this->getSrcNum(); ++i)
+ out << " %" << this->getSrc(fn, i);
if (this->workGroupOp == WORKGROUP_OP_BROADCAST) {
do {
@@ -1942,7 +1943,7 @@ namespace ir {
} while(0);
}
- out << "TheadID Map at SLM: " << this->slmAddr;
+ out << " (TheadID Map at SLM: " << this->slmAddr << ")";
}
INLINE void SubGroupInstruction::out(std::ostream &out, const Function &fn) const {
--
1.9.1
_______________________________________________
Beignet mailing list
Beignet at lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/beignet
More information about the Beignet
mailing list