From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 113401 invoked by alias); 2 Sep 2015 22:52:17 -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 113389 invoked by uid 89); 2 Sep 2015 22:52:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-HELO: out4-smtp.messagingengine.com Received: from out4-smtp.messagingengine.com (HELO out4-smtp.messagingengine.com) (66.111.4.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 02 Sep 2015 22:52:15 +0000 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id A0E9522173 for ; Wed, 2 Sep 2015 18:52:13 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute3.internal (MEProxy); Wed, 02 Sep 2015 18:52:13 -0400 Received: from [192.168.43.235] (unknown [194.230.159.193]) by mail.messagingengine.com (Postfix) with ESMTPA id 2C824C00012; Wed, 2 Sep 2015 18:52:11 -0400 (EDT) Message-ID: <55E77D98.3010406@grosser.es> Date: Wed, 02 Sep 2015 23:05:00 -0000 From: Tobias Grosser User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Sebastian Pop , gcc-patches@gcc.gnu.org CC: sebpop@gmail.com, aditya.k7@samsung.com, richard.guenther@gmail.com Subject: Re: [PATCH] fix PR53852: stop ISL after a given number of operations References: <1441233255-24721-1-git-send-email-s.pop@samsung.com> In-Reply-To: <1441233255-24721-1-git-send-email-s.pop@samsung.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-09/txt/msg00200.txt.bz2 On 09/03/2015 12:34 AM, Sebastian Pop wrote: > 2015-09-02 Sebastian Pop > > * config.in: Regenerate. > * configure: Regenerate. > * configure.ac (HAVE_ISL_CTX_MAX_OPERATIONS): Detect. > * graphite-optimize-isl.c (optimize_isl): Stop computation when > PARAM_MAX_ISL_OPERATIONS is reached. > * params.def (PARAM_MAX_ISL_OPERATIONS): Add. > > * graphite-dependences.c (extend_schedule): Remove gcc_asserts on > result equal to isl_stat_ok as the status now can be isl_error_quota. > (subtract_commutative_associative_deps): Same. > (compute_deps): Same. > > testsuite/ > * gcc.dg/graphite/uns-interchange-12.c: Adjust pattern to pass with > both isl-0.12 and isl-0.15. > * gcc.dg/graphite/uns-interchange-14.c: Same. > * gcc.dg/graphite/uns-interchange-15.c: Same. > * gcc.dg/graphite/uns-interchange-mvt.c: Same. Hi Sebastian, this looks good to me. Tobias