From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id A5BDC3858C60 for ; Thu, 2 Feb 2023 12:46:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A5BDC3858C60 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1675342017; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5LHmKBPaD6AwYZ91ImymtHLLsFT5x85R5uYNCWjyz8w=; b=PFtxtufmsS2ibuBEb1Dj7HqX9oPyffWIauhIUOS6cURl26fGiy0kf3uXm9D4yIribbNGUC tEpU/o0+q3knE0XN4BVUYtBcvNJ4NAyUMBkVfQ7n/YMgxbAgINKAyKpROTWbVfbkh3fowq 26+j3+3xr9IQRfGD5D5GG+yfwdYRK0A= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-634-H8ked1JwM--nmr7uK_TwsA-1; Thu, 02 Feb 2023 07:46:54 -0500 X-MC-Unique: H8ked1JwM--nmr7uK_TwsA-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 0B56A85A5B1; Thu, 2 Feb 2023 12:46:54 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.192.223]) by smtp.corp.redhat.com (Postfix) with ESMTPS id BBA61492C14; Thu, 2 Feb 2023 12:46:53 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.17.1/8.17.1) with ESMTPS id 312Ckpis1320118 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Thu, 2 Feb 2023 13:46:51 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 312CkowP1320117; Thu, 2 Feb 2023 13:46:50 +0100 Date: Thu, 2 Feb 2023 13:46:49 +0100 From: Jakub Jelinek To: Tobias Burnus Cc: gcc-patches Subject: Re: [committed] libgomp.texi (OpenMP TR11 impl. status): Fix 'strict' item Message-ID: Reply-To: Jakub Jelinek References: <768cda84-807f-581d-ea0f-5a5d0027e686@codesourcery.com> MIME-Version: 1.0 In-Reply-To: <768cda84-807f-581d-ea0f-5a5d0027e686@codesourcery.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.9 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3.5 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Thu, Feb 02, 2023 at 12:19:56PM +0100, Tobias Burnus wrote: > There is less new in TR11 as claimed ... 'strict' on grainsize/num_tasks is already > in OpenMP 5.1, it is implemented and also listed as 'Y' under 5.1. > Only 'num_threads(strict: int-expr)' is new in TR11. > > Tobias > ----------------- > Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955 > commit 8da7476c5fa8870c2fcded48d3de95978434c1be > Author: Tobias Burnus > Date: Thu Feb 2 12:05:58 2023 +0100 > > libgomp.texi (OpenMP TR11 impl. status): Fix 'strict' item > > Fix the 'strict' modifier status: it is already listed (as 'Y') for OpenMP > 5.1 for num_task and grainsize; only strict on num_threads is new with TR11. > > libgomp/ > * libgomp.texi (OpenMP TR11): Fix item for 'strict' modifier. Ok. Jakub