From owner-svn-ports-head@freebsd.org Thu Oct 15 19:40:00 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55717A15E53; Thu, 15 Oct 2015 19:40:00 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep19.mx.upcmail.net (fep19.mx.upcmail.net [62.179.121.39]) by mx1.freebsd.org (Postfix) with ESMTP id 147651848; Thu, 15 Oct 2015 19:39:58 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep25-int.chello.at (InterMail vM.8.01.05.18 201-2260-151-151-20140610) with ESMTP id <20151015193941.ZCBM13925.viefep25-int.chello.at@edge03.upcmail.net>; Thu, 15 Oct 2015 21:39:41 +0200 Received: from [192.168.0.31] ([178.84.134.112]) by edge03.upcmail.net with edge id VXff1r00v2Rg3Ey01Xff44; Thu, 15 Oct 2015 21:39:41 +0200 X-SourceIP: 178.84.134.112 Message-ID: <1444937790.38251.1.camel@rainbow-runner.nl> Subject: Re: svn commit: r399324 - in head/devel: . py-pyopencl From: Koop Mast To: Jung-uk Kim , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Thu, 15 Oct 2015 21:36:30 +0200 In-Reply-To: <201510150015.t9F0FOlM062752@repo.freebsd.org> References: <201510150015.t9F0FOlM062752@repo.freebsd.org> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Oct 2015 19:40:00 -0000 On Thu, 2015-10-15 at 00:15 +0000, Jung-uk Kim wrote: > Author: jkim > Date: Thu Oct 15 00:15:24 2015 > New Revision: 399324 > URL: https://svnweb.freebsd.org/changeset/ports/399324 > > Log: >   PyOpenCL gives you easy, Pythonic access to the OpenCL parallel > computation >   API.  What makes PyOpenCL special? >   >   - Object cleanup tied to lifetime of objects. This idiom, often > called RAII >     in C++, makes it much easier to write correct, leak- and crash- > free code. >   - Completeness.  PyOpenCL puts the full power of OpenCL's API at > your >     disposal, if you wish.  Every obscure get_info() query and all CL > calls >     are accessible. >   - Automatic Error Checking.  All errors are automatically > translated into >     Python exceptions. >   - Speed. PyOpenCL's base layer is written in C++, so all the > niceties above >     are virtually free. >   - Helpful Documentation. >   - Liberal license.  PyOpenCL is open-source under the MIT license > and free >     for commercial, academic, and private use. >   >   WWW: http://mathema.tician.de/software/pyopencl > > Cool! -Koop