From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40367 invoked by alias); 6 Sep 2019 12:32:43 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 40352 invoked by uid 89); 6 Sep 2019 12:32:43 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: esa1.mentor.iphmx.com Received: from esa1.mentor.iphmx.com (HELO esa1.mentor.iphmx.com) (68.232.129.153) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 06 Sep 2019 12:32:41 +0000 IronPort-SDR: 0ai0NfCLt5zQArx/lmwYnnfMMGlX9Q7RBKlAGkLeD6yzzbU2dIeg0glYb/ZeUftwdOWO3wakIW QIKOn8kxn+QGNMweB4Tynw4rWTtdLEQRvCszotLZ2YB7R1KWk05di9RjlYVvrlKpQh4lNKr2Kl Mo9LMm4wzTHD7IHLugQ4RtGkP2A2D2w5DX5+h6U+fCagc+L36gc+EMRSLzOfRoDYqqsQWO9lGN kd0HeQmr7pdDHjAGQa4oBEq4tfskKm4S4LGd9uHvf84MUZUQvSPgvDagJKDHUI0Tu6lDZ3yrwR pwA= Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa1.mentor.iphmx.com with ESMTP; 06 Sep 2019 04:32:40 -0800 IronPort-SDR: V4iDyQE8ozoN0Tw07PhZtkVogpsBCydNqzVMWPOrBRAsnre7oigDupWZoYiDDLb73GLcNKxYRF QfGgWvyVyGihwo+jL0qu9f4WoqJVWycUXr1JYEZImd4vQgla5Nr3KbPeK08Ndurw6icNaBAckp ZYrReIBQTLA/fhzkzPVSAgoNVKpkCanyAxt72gmVodKQsSlLcjWwLUe5OWVdZQIpHG/2y0m72f lQwUeRMco/mvFZtLpS/b9nV8fsLzgGknIbl9mcxoFdnXjiB1qcpF6XMbsHlcSrKiTG11x99pd5 f+E= Date: Fri, 06 Sep 2019 12:32:00 -0000 From: Julian Brown To: Chung-Lin Tang CC: , , Andrew Stubbs Subject: Re: [PATCH 2/6] [og9] OpenACC middle-end worker-partitioning support Message-ID: <20190906133231.181147c1@squid.athome> In-Reply-To: <20190905160119.29b3ec1a@squid.athome> References: <1de0113e1a6807da85e5c7b0f7d473234f78dd45.1567644180.git.julian@codesourcery.com> <499c97e1-236a-1810-74f3-c98066c2a59e@mentor.com> <20190905160119.29b3ec1a@squid.athome> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Return-Path: julian@codesourcery.com X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00375.txt.bz2 On Thu, 5 Sep 2019 16:01:19 +0100 Julian Brown wrote: > On Thu, 5 Sep 2019 21:52:00 +0800 > Chung-Lin Tang wrote: > > > On 2019/9/5 9:45 AM, Julian Brown wrote: > > > Much of omp-sese.c originates from code written for NVPTX by > > > Nathan Sidwell (adapted to work on gimple instead of RTL) -- > > > though at present, only the per-basic-block scheme is > > > implemented, and the SESE-finding algorithm isn't yet used. > > > > Hi Julian, > > it appears that this part broke NVPTX builds due to the duplicate > > stuff in config/nvptx/nvptx.c and the new omp-sese.c file (e.g. > > struct parallel). Can you fix this? (being able to factor away stuff > > from nvptx backend into the middle-end seems a good idea in > > general) > > Apologies -- I'll investigate. This is now fixed by: https://gcc.gnu.org/ml/gcc-patches/2019-09/msg00373.html Thanks, Julian