From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7888) id 72C3E385840D; Mon, 14 Nov 2022 06:06:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 72C3E385840D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1668405977; bh=yI2qJn0IUPdJoSTBvhsoTqHQqVHyrh+lgLR3kaixV7U=; h=To:Subject:Date:From:From; b=urRzWjvKdirjRHkCvuhcOkfUpPDVoBrGYs8bnTggRNyqV8MiFAsszMnh8FMnzpqNe j1uAYO8UHnWOA11rK8xj+0l/DTxGSb97fw1ezJiUSIn5K9A95dg42aaYPi/MK+LMII 3SxxjI6hVWyPQfw8/2vlCWTjKARAfK1182cSjH+0= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 6e41ef3dbbc0e2a774e3fd0947857c75e0d16da2 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 11ebca554aa82f8f2a55f0a84ce18605a8232581 X-Git-Newrev: 6e41ef3dbbc0e2a774e3fd0947857c75e0d16da2 Message-Id: <20221114060617.72C3E385840D@sourceware.org> Date: Mon, 14 Nov 2022 06:06:12 +0000 (GMT) From: Haochen Jiang List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via 6e41ef3dbbc0e2a774e3fd0947857c75e0d16da2 (commit) from 11ebca554aa82f8f2a55f0a84ce18605a8232581 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6e41ef3dbbc0e2a774e3fd0947857c75e0d16da2 Author: Haochen Jiang Date: Mon Nov 14 13:57:03 2022 +0800 gcc-13: Mention Intel new ISA and march support. diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html index bd11cbec..0daf921b 100644 --- a/htdocs/gcc-13/changes.html +++ b/htdocs/gcc-13/changes.html @@ -240,6 +240,56 @@ a work-in-progress.

__bf16 type to x86 psABI. Users need to adjust their AVX512BF16-related source code when upgrading GCC12 to GCC13. +
  • New ISA extension support for Intel AVX-IFMA was added to GCC. + AVX-IFMA intrinsics are available via the -mavxifma + compiler switch. +
  • +
  • New ISA extension support for Intel AVX-VNNI-INT8 was added to GCC. + AVX-VNNI-INT8 intrinsics are available via the -mavxvnniint8 + compiler switch. +
  • +
  • New ISA extension support for Intel AVX-NE-CONVERT was added to GCC. + AVX-NE-CONVERT intrinsics are available via the + -mavxneconvert compiler switch. +
  • +
  • New ISA extension support for Intel CMPccXADD was added to GCC. + CMPccXADD intrinsics are available via the -mcmpccxadd + compiler switch. +
  • +
  • New ISA extension support for Intel AMX-FP16 was added to GCC. + AMX-FP16 intrinsics are available via the -mamx-fp16 + compiler switch. +
  • +
  • New ISA extension support for Intel PREFETCHI was added to GCC. + PREFETCHI intrinsics are available via the -mprefetchi + compiler switch. +
  • +
  • New ISA extension support for Intel RAO-INT was added to GCC. + RAO-INT intrinsics are available via the -mraoint + compiler switch. +
  • +
  • GCC now supports the Intel CPU named Raptor Lake through + -march=raptorlake. + Raptor Lake is based on Alder Lake. +
  • +
  • GCC now supports the Intel CPU named Meteor Lake through + -march=meteorlake. + Meteor Lake is based on Alder Lake. +
  • +
  • GCC now supports the Intel CPU named Sierra Forest through + -march=sierraforest. + The switch enables the AVX-IFMA, AVX-VNNI-INT8, AVX-NE-CONVERT and + CMPccXADD ISA extensions. +
  • +
  • GCC now supports the Intel CPU named Grand Ridge through + -march=grandridge. + The switch enables the AVX-IFMA, AVX-VNNI-INT8, AVX-NE-CONVERT, CMPccXADD + and RAO-INT ISA extensions. +
  • +
  • GCC now supports the Intel CPU named Granite Rapids through + -march=graniterapids. + The switch enables the AMX-FP16 and PREFETCHI ISA extensions. +
  • ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-13/changes.html | 50 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) hooks/post-receive -- gcc-wwwdocs