From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x1033.google.com (mail-pj1-x1033.google.com [IPv6:2607:f8b0:4864:20::1033]) by sourceware.org (Postfix) with ESMTPS id 4E2403858D34 for ; Fri, 24 Sep 2021 01:20:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4E2403858D34 Received: by mail-pj1-x1033.google.com with SMTP id k23so5739501pji.0 for ; Thu, 23 Sep 2021 18:20:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=xU2kgRTCGMjdBuwdvqoYOoi7Ya84wVxa9iEQp1CrIeE=; b=L/HsfYjT5+xZ+LS8Of9EE3LZwpiMWKLuKoikSscNQRQkMZ/4psm1Hqz3cEkkuKYLKZ lEW5mSue6mYGBquulffpY5VPFM6Sk6X2weO4G19DmofQzvuDTxHjNXFztWMTCknWiI00 HF7PXHwHq2RXbAvMcOJu9dF+DG0Is4nUIvRPUR717PGIs2AfneSfrpdYdDiebmrJVGbj dnEt6p6TT3X2rLinpv9uqjQ0N1RNRMpPjJ+DwHcrQOU/ebi+e6BxvIwhPJNPBQMTxvrf fNc7GBIJchbZZhVxxSKUvn4+GIfVHRGor1MbZpe8X8KAJC9bu9FjuOzWkvnNjR5UK+p4 H28g== X-Gm-Message-State: AOAM530UQ3bQwBy5rLaCqnC88xUPF9XAGmFOThzOR5WoafmLN0mc2Hw4 xAdO71zaaya4o4fP2uE57FdYDkxeHCS1/Gp4i2k= X-Google-Smtp-Source: ABdhPJyDhtbU3ASMcvRoMY07m6gW/W27MKvsKjnenLzJ/SSPsDjy8nZJH9fiUH4FfG7nVpC/dS5VBw/gLLmXigHUe2Y= X-Received: by 2002:a17:902:e88d:b0:13b:67d5:2c34 with SMTP id w13-20020a170902e88d00b0013b67d52c34mr6511472plg.66.1632446457305; Thu, 23 Sep 2021 18:20:57 -0700 (PDT) MIME-Version: 1.0 References: <20210924011730.97039-1-hongtao.liu@intel.com> In-Reply-To: <20210924011730.97039-1-hongtao.liu@intel.com> From: "H.J. Lu" Date: Thu, 23 Sep 2021 18:20:21 -0700 Message-ID: Subject: Re: [PATCH] [GCC12] Mention Intel AVX512-FP16 and _Float16 support. To: liuhongt Cc: GCC Patches , Hongtao Liu Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3030.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Sep 2021 01:20:59 -0000 On Thu, Sep 23, 2021 at 6:17 PM liuhongt wrote: > > Updated, mention _Float16 support. > > --- > htdocs/gcc-12/changes.html | 13 ++++++++++++- > 1 file changed, 12 insertions(+), 1 deletion(-) > > diff --git a/htdocs/gcc-12/changes.html b/htdocs/gcc-12/changes.html > index 81f62fe3..f19c6718 100644 > --- a/htdocs/gcc-12/changes.html > +++ b/htdocs/gcc-12/changes.html > @@ -165,7 +165,18 @@ a work-in-progress.

> > > > - > +

IA-32/x86-64

> +
    > +
  • New ISA extension support for Intel AVX512-FP16 was added to GCC. > + AVX512FP16 intrinsics are available via the -mavx512fp16 > + compiler switch. > +
  • > +
  • For both C and C++, The _Float16 type is supported on > + x86 systems with SSE2 enabled. Without {-mavx512fp16}, > + _Float16 type is storage only, all operations will be I don't think _Float16 is storage only without AVX512FP16. > + emulated by software emulation and the float instructions. > +
  • > +
> > > > -- > 2.18.1 > -- H.J.