[Beignet] [PATCH V2] output more detail of GEN IR for workgroup op
Yang, Rong R
rong.r.yang at intel.com
Wed Dec 28 08:06:24 UTC 2016
Pushed, thanks.
> -----Original Message-----
> From: Beignet [mailto:beignet-bounces at lists.freedesktop.org] On Behalf Of
> Pan, Xiuli
> Sent: Wednesday, December 28, 2016 15:00
> To: Guo, Yejun <yejun.guo at intel.com>; beignet at lists.freedesktop.org
> Cc: Guo, Yejun <yejun.guo at intel.com>
> Subject: Re: [Beignet] [PATCH V2] output more detail of GEN IR for
> workgroup op
>
> 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
> _______________________________________________
> Beignet mailing list
> Beignet at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/beignet
More information about the Beignet
mailing list