public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Nick Clifton <nickc@redhat.com>
To: Victor Do Nascimento <victor.donascimento@arm.com>,
	binutils@sourceware.org
Cc: richard.earnshaw@arm.com
Subject: Re: [PATCH 0/4] aarch64: Add armv9.5-a FP8 datatype conversion
Date: Wed, 17 Apr 2024 10:50:30 +0100	[thread overview]
Message-ID: <9752b901-6d9b-4e1f-9065-3400a212a66d@redhat.com> (raw)
In-Reply-To: <20240410152950.1134020-1-victor.donascimento@arm.com>

Hi Victor,


> Regtested on aarch64-linux-gnu, no new regressions.
> 
> [1] https://community.arm.com/arm-community-blogs/b/architectures-and-processors-blog/posts/arm-a-profile-architecture-developments-2023
> 
> Victor Do Nascimento (4):
>    aarch64: fp8 convert and scale - add feature flags and related
>      structures
>    aarch64: fp8 convert and scale - Add advsimd insn variants
>    aarch64: fp8 convert and scale - add sve2 insn variants
>    aarch64: fp8 convert and scale - add sme2 insn variants
> 
>   gas/config/tc-aarch64.c                       |   1 +
>   gas/doc/c-aarch64.texi                        |   2 +
>   gas/testsuite/gas/aarch64/advsimd-fp8-fail.d  |   2 +
>   gas/testsuite/gas/aarch64/advsimd-fp8-fail.l  | 262 ++++++
>   gas/testsuite/gas/aarch64/advsimd-fp8-fail.s  | 121 +++
>   gas/testsuite/gas/aarch64/advsimd-fp8.d       | 120 +++
>   gas/testsuite/gas/aarch64/advsimd-fp8.s       |  76 ++
>   gas/testsuite/gas/aarch64/sme2-24-invalid.l   |   4 +-
>   gas/testsuite/gas/aarch64/sme2-fp8-fail.d     |   2 +
>   gas/testsuite/gas/aarch64/sme2-fp8-fail.l     | 273 ++++++
>   gas/testsuite/gas/aarch64/sme2-fp8-fail.s     | 106 +++
>   .../gas/aarch64/sme2-fp8-streaming.d          |   4 +
>   gas/testsuite/gas/aarch64/sme2-fp8.d          | 128 +++
>   gas/testsuite/gas/aarch64/sme2-fp8.s          | 112 +++
>   gas/testsuite/gas/aarch64/sve2-fp8-dump       |  53 ++
>   gas/testsuite/gas/aarch64/sve2-fp8-fail.d     |   2 +
>   gas/testsuite/gas/aarch64/sve2-fp8-fail.l     | 161 ++++
>   gas/testsuite/gas/aarch64/sve2-fp8-fail.s     |  42 +
>   gas/testsuite/gas/aarch64/sve2-fp8.d          |   3 +
>   gas/testsuite/gas/aarch64/sve2-fp8.s          |  48 +
>   include/opcode/aarch64.h                      |   2 +
>   opcodes/aarch64-dis-2.c                       | 817 ++++++++++++++----
>   opcodes/aarch64-tbl.h                         |  95 ++
>   23 files changed, 2251 insertions(+), 185 deletions(-)
>   create mode 100644 gas/testsuite/gas/aarch64/advsimd-fp8-fail.d
>   create mode 100644 gas/testsuite/gas/aarch64/advsimd-fp8-fail.l
>   create mode 100644 gas/testsuite/gas/aarch64/advsimd-fp8-fail.s
>   create mode 100644 gas/testsuite/gas/aarch64/advsimd-fp8.d
>   create mode 100644 gas/testsuite/gas/aarch64/advsimd-fp8.s
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8-fail.d
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8-fail.l
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8-fail.s
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8-streaming.d
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8.d
>   create mode 100644 gas/testsuite/gas/aarch64/sme2-fp8.s
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8-dump
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8-fail.d
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8-fail.l
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8-fail.s
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8.d
>   create mode 100644 gas/testsuite/gas/aarch64/sve2-fp8.s

Patch series approved - please apply.

Cheers
   Nick



      parent reply	other threads:[~2024-04-17  9:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-10 15:29 Victor Do Nascimento
2024-04-10 15:29 ` [PATCH 1/4] aarch64: fp8 convert and scale - add feature flags and related structures Victor Do Nascimento
2024-04-10 15:29 ` [PATCH 2/4] aarch64: fp8 convert and scale - Add advsimd insn variants Victor Do Nascimento
2024-05-17 15:43   ` Richard Earnshaw (lists)
2024-04-10 15:29 ` [PATCH 3/4] aarch64: fp8 convert and scale - add sve2 " Victor Do Nascimento
2024-04-10 15:29 ` [PATCH 4/4] aarch64: fp8 convert and scale - add sme2 " Victor Do Nascimento
2024-04-17  9:50 ` Nick Clifton [this message]

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=9752b901-6d9b-4e1f-9065-3400a212a66d@redhat.com \
    --to=nickc@redhat.com \
    --cc=binutils@sourceware.org \
    --cc=richard.earnshaw@arm.com \
    --cc=victor.donascimento@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).