From patchwork Fri Sep 24 01:17:30 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Liu, Hongtao" X-Patchwork-Id: 45404 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 7B933385841E for ; Fri, 24 Sep 2021 01:18:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7B933385841E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1632446283; bh=Q6lUPUrIs9ufLoMzMLnJInff6Kn+8WWXn8MMYejT17Y=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=cDxxkRUxSgsX/7FhnFS8KX4EZUwveOJ1dCDqD5LKth8NfKKEkQVtmpuB/oc+4uAJK y2Xv/xS3o4Ou034Ptey8rwJFKGfCq2erzXWgfqL8gAaMFMv9Zp6H5F04Ns0bWUDQ4l NN0Ohe3R420+8R2TVmPJmTuNRtVGnvVX5z3SO228= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by sourceware.org (Postfix) with ESMTPS id 0850A3858D29 for ; Fri, 24 Sep 2021 01:17:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 0850A3858D29 X-IronPort-AV: E=McAfee;i="6200,9189,10116"; a="309534545" X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="309534545" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2021 18:17:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,318,1624345200"; d="scan'208";a="702977539" Received: from scymds01.sc.intel.com ([10.148.94.138]) by fmsmga006.fm.intel.com with ESMTP; 23 Sep 2021 18:17:32 -0700 Received: from shliclel320.sh.intel.com (shliclel320.sh.intel.com [10.239.236.50]) by scymds01.sc.intel.com with ESMTP id 18O1HV8a012746; Thu, 23 Sep 2021 18:17:31 -0700 To: gcc-patches@gcc.gnu.org Subject: [PATCH] [GCC12] Mention Intel AVX512-FP16 and _Float16 support. Date: Fri, 24 Sep 2021 09:17:30 +0800 Message-Id: <20210924011730.97039-1-hongtao.liu@intel.com> X-Mailer: git-send-email 2.18.1 In-Reply-To: References: X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, 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-Patchwork-Original-From: liuhongt via Gcc-patches From: "Liu, Hongtao" Reply-To: liuhongt Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" 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 + emulated by software emulation and the float instructions. +
  • +