public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Michael Collison <collison@rivosinc.com>
To: Jeff Law <jeffreyalaw@gmail.com>,
	juzhe.zhong@rivai.ai, gcc-patches <gcc-patches@gcc.gnu.org>
Cc: "kito.cheng" <kito.cheng@sifive.com>,
	"kito.cheng" <kito.cheng@gmail.com>,
	"richard.sandiford" <richard.sandiford@arm.com>,
	"richard.guenther" <richard.guenther@gmail.com>
Subject: Re: [PATCH] vect: Check that vector factor is a compile-time constant
Date: Wed, 22 Feb 2023 23:50:06 -0500	[thread overview]
Message-ID: <71276340-3acc-c700-d7b5-3f388442295b@rivosinc.com> (raw)
In-Reply-To: <69622113-9b9f-f93d-b89d-0783b95bbfcb@gmail.com>

Hi Jeff,

We do not have two independent implementations: my work is 100% based on 
the vector intrinsic foundation in upstream GCC. In fact I have only 
added two core patterns, vector add and subtract, that are based on the 
existing vector intrinsics implementation:

(define_expand "add<mode>3"
   [(match_operand:VI 0 "register_operand")
    (match_operand:VI 1 "register_operand")
    (match_operand:VI 2 "vector_arith_operand")]
   "TARGET_VECTOR"
{
   using namespace riscv_vector;

   rtx merge = gen_rtx_UNSPEC (<MODE>mode, gen_rtvec (1, const0_rtx), 
UNSPEC_VUNDEF);
   rtx vl = emit_vlmax_vsetvl (<MODE>mode);
   rtx mask_policy = get_mask_policy_no_pred();
   rtx tail_policy = get_tail_policy_no_pred();
   rtx mask = CONSTM1_RTX(<VM>mode);
   rtx vlmax_avl_p = get_avl_type_rtx(NONVLMAX);

   emit_insn(gen_pred_add<mode>(operands[0], mask, merge, operands[1], 
operands[2],
                 vl, tail_policy, mask_policy, vlmax_avl_p));

   DONE;
})

This pattern leverages the existing vector intrinsics framework. The 
bulk of the changes are the cost model, and target macros. The cost 
model is based on Juzhe's work.

The point I am making is the auto-vectorization work is no more 
experimental than the intrinsics work which is still being merged.

On 2/22/23 23:01, Jeff Law wrote:
>
>
> On 2/22/23 10:54, Michael Collison wrote:
>> Juzhe,
>>
>> I disagree with this comment. There are many stakeholders for 
>> autovectorization and waiting until GCC 14 is not a viable solution 
>> for us as well as other stakeholders ready to begin work on 
>> autovectorization.
>>
>> As we discussed I have been moving forward with patches for 
>> autovectorization and am preparing to send them to gcc-patches. This 
>> assert is preventing code from compiling and needs to be addressed.
>>
>> If you have a solution in either the RISCV backend or in this file 
>> can you please present it?
> I don't necessarily think it means waiting for gcc-14, but it does 
> mean waiting for gcc-13 to branch and gcc-14 development to open. I 
> would object to anyone trying to push forward an autovec 
> implementation into gcc-13.  We're well past that point IMHO, even if 
> the changes only affected the RISC-V backend.
>
> Given that it looks like we have two independent implementations we're 
> almost certainly going to have to sit down with both, evaluate both 
> from a quality of code viewpoint and benchmark them both and 
> ultimately choose one implementation or the other, or maybe even some 
> mixing and matching.
>
> I would strongly suggest that both groups have implementations we can 
> start evaluating from a design/implementation standpoint relatively 
> soon.  Ideally both groups would actually have branches in the repo 
> that are regularly updated with their current implementation.
>
> While I have a great interest in seeing an autovec implementation move 
> forward as soon as possible after gcc-14 development opens, I have no 
> opinions at this point about either of the two existing implementations.
>
> Jeff

  parent reply	other threads:[~2023-02-23  4:50 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-22 15:27 juzhe.zhong
2023-02-22 17:54 ` Michael Collison
2023-02-22 23:43   ` juzhe.zhong
2023-02-22 23:47   ` juzhe.zhong
2023-02-23  4:01   ` Jeff Law
2023-02-23  4:25     ` juzhe.zhong
2023-02-23  4:50     ` Michael Collison [this message]
2023-02-24  3:34       ` Jeff Law
2023-02-24  4:04         ` Kito Cheng
2023-03-14 17:48           ` Jeff Law
2023-03-17 16:57             ` Palmer Dabbelt
2023-03-17 16:57               ` Palmer Dabbelt
2023-03-21  2:02               ` juzhe.zhong
2023-03-23 23:18               ` Jeff Law
2023-03-24  2:28                 ` Palmer Dabbelt
2023-03-25 22:45                   ` Jeff Law
  -- strict thread matches above, loose matches on Subject: below --
2023-02-21 23:02 Michael Collison
2023-02-22  8:20 ` Richard Biener
2023-02-22 16:42   ` Michael Collison
2023-02-23  9:08     ` Richard Biener
2023-02-27 14:51   ` Richard Sandiford
2023-03-01 21:00     ` Michael Collison
2023-03-02  7:56       ` Richard Biener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=71276340-3acc-c700-d7b5-3f388442295b@rivosinc.com \
    --to=collison@rivosinc.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jeffreyalaw@gmail.com \
    --cc=juzhe.zhong@rivai.ai \
    --cc=kito.cheng@gmail.com \
    --cc=kito.cheng@sifive.com \
    --cc=richard.guenther@gmail.com \
    --cc=richard.sandiford@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).