Pushed, thanks.
> -----Original Message----- > From: Beignet [mailto:[email protected]] On Behalf Of > Pan, Xiuli > Sent: Wednesday, December 28, 2016 15:00 > To: Guo, Yejun <[email protected]>; [email protected] > Cc: Guo, Yejun <[email protected]> > Subject: Re: [Beignet] [PATCH V2] output more detail of GEN IR for > workgroup op > > LGTM! > > -----Original Message----- > From: Beignet [mailto:[email protected]] On Behalf Of > Guo, Yejun > Sent: Wednesday, December 21, 2016 6:33 PM > To: [email protected] > Cc: Guo, Yejun <[email protected]> > 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 <[email protected]> > --- > 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 > [email protected] > https://lists.freedesktop.org/mailman/listinfo/beignet > _______________________________________________ > Beignet mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/beignet _______________________________________________ Beignet mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/beignet
