From patchwork Sat Mar 8 18:25:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 328221 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id C039F2C00BC for ; Sun, 9 Mar 2014 05:25:52 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=DaL99W6hX5KE4qV0dJU34icNdBa/AiF9Ro0KbVkG0KU 7AdMOx26iIlBRlegLbNF8C38lvZO0POiqXVL8tcO0RDsOztzfXSIMmcnAAmbvlvU hk0pfaFbpqtyZpBcJSdFmvmyV3KxnL8P1hQ2coA5LvnNmUrdgmREMDcJZu3a4Dy0 = DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=WO1BxNEpZ91kU6wjh8hOk9RByhQ=; b=QhbQ2qlugb4y+hoED MFBc/7A8H9baI0gjxgKkBN1cYzDtSw4p1SDZk1/5m9FV4fbKhLC4CpMaq0UfVm33 GEesmRSpupoIlHwvtwcEvpSLMvl5DBLUvE6HV20YN6AQRIVBilA75vB+fz+ksRuC MQQxLxhEQf92N5wcpwNsLIVNfw= Received: (qmail 32303 invoked by alias); 8 Mar 2014 18:25:45 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 32292 invoked by uid 89); 8 Mar 2014 18:25:45 -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_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-HELO: mx02.qsc.de Received: from mx02.qsc.de (HELO mx02.qsc.de) (213.148.130.14) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sat, 08 Mar 2014 18:25:44 +0000 Received: from tux.net-b.de (port-92-194-14-144.dynamic.qsc.de [92.194.14.144]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx02.qsc.de (Postfix) with ESMTPSA id 8CFEF27663; Sat, 8 Mar 2014 19:25:40 +0100 (CET) Message-ID: <531B60A4.7050209@net-b.de> Date: Sat, 08 Mar 2014 19:25:40 +0100 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: gcc-patches , Gerald Pfeifer , "Iyer, Balaji V" CC: Jakub Jelinek Subject: [wwwdocs] RFC - mention Cilk Plus in the GCC 4.9 release notes Hi all, the attached patch mentions the support of Cilk Plus in GCC 4.9 in the release notes, http://gcc.gnu.org/gcc-4.9/changes.html Is the patch OK? Tobias PS: Is it correct that the current implementation only supports ABI 0.9 of Oct 2010 and not ABI 1.1 of Jul 2011? (Current is 1.2 of Sep 2013, cf. http://www.cilkplus.org/download#open-specification) The ABI version 0.9 is taken from gcc/doc/invoke.texi [The library has CILKLIB1.02.] Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v retrieving revision 1.61 diff -p -r1.61 changes.html *** changes.html 8 Mar 2014 18:09:45 -0000 1.61 --- changes.html 8 Mar 2014 18:15:06 -0000 *************** *** 157,162 **** --- 157,167 ---- loop-carried dependencies which would prevent concurrent execution of consecutive iterations using SIMD (single instruction multiple data) instructions. + +
  • Support for Cilk Plus has been + added and can be enabled with the -fcilkplus option. The + present implementation follows ABI version 0.9. Plus is an extension to the + C and C++ languages to support data and task parallelism.
  • C