From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Zelphir Kaltstahl Newsgroups: gmane.lisp.guile.user Subject: Re: [ANN] Guile-Parallel 1.0.0 released Date: Sat, 31 Dec 2022 19:58:09 +0000 Message-ID: References: <87wn68p6qi.fsf@laura> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="29329"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Guile User To: Olivier Dion Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sat Dec 31 20:58:49 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pBi0G-0007RG-Ep for guile-user@m.gmane-mx.org; Sat, 31 Dec 2022 20:58:48 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pBhzn-0007Hu-Oz; Sat, 31 Dec 2022 14:58:19 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBhzl-0007HX-Nl for guile-user@gnu.org; Sat, 31 Dec 2022 14:58:17 -0500 Original-Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBhzj-0002jF-IH for guile-user@gnu.org; Sat, 31 Dec 2022 14:58:17 -0500 Original-Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id 50295240117 for ; Sat, 31 Dec 2022 20:58:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1672516691; bh=8RLmPeMjsjYCNuIyQDU5WzAvUdXe1ql25uJ7s6oG31w=; h=Date:Subject:To:From:Cc:From; b=V6UrbD0MPscjToMi3gAIrPNSy+8doXtMPt+1+OlkpAv9i8v86j8n5pAVyyA5Q5vhq GrtkYWQnHsNnpeVz1lbUBq4wpIILaBZ1dJFuMYmWuaZA2WLj85QioFKhjXDwAxFObt 5eVstvqLE06xa0ta7MXqaRMZgy+fnZ/ekDJKAIGAoyd/vLw4CUWuGBQ6IFxWt7Bnsp yKoiLB4TEDDTpt2pJWQ4rOb/10qLpN7eVwzr/K3FsH4jGVhZwHE18buXUNCN2ybQyp VjQaKE0VJwtHHsXWoyvLy4FtSvIw7Riuz49CTIkSvEh1T07WttXsG2NqDEkFt04ITV 5fyfzHNZXMECA== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4NktGV1tV2z6tmP; Sat, 31 Dec 2022 20:58:09 +0100 (CET) Content-Language: en-US In-Reply-To: <87wn68p6qi.fsf@laura> Received-SPF: pass client-ip=185.67.36.65; envelope-from=zelphirkaltstahl@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:18813 Archived-At: Hello Olivier! On 12/31/22 04:55, Olivier Dion via General Guile related discussions wrote: > Hi Guilers, > > I'm happy to announce the first release of guile-parallel. A library > that offers primitives for parallelization of your programs. > > Project page: > > List of features: > > - Userspace threads (jobs schedulers) > > - Safe dynamic-wind for all types of threads (kernel and userspace) > > - sleep, usleep and nsleep for all types of threads > > - (ice-9 atomic) extensions, e.g. atomic counters > > - (ice-9 q) wrapper, i.e. safe for all types of threads > > - Barriers à la Pthread > > - Condition variables, mutexes and semaphores for kernel and userspace > threads > > - Parallel vector-map vector-count, vector-sort, vector-map-reduce > > Next features: > > - Asynchronous I/O > > - Channels à la Go with a select syntax (maybe?) > > If there're interests, usages or requests for it, please let me know! I > might add it to Guix if some find it useful. > > Regards, > old I looked at the examples in the repository a bit and it looks impressive! Maybe I can already make use of it in coming AoC puzzles. I am currently a bit confused about where the line is between a good use-case for guile-parallel and guile-fibers. Or whether they could work well together or the people making them should work together ; ) Regards, Zelphir -- repositories: https://notabug.org/ZelphirKaltstahl