タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

scalaとparallelに関するmanboubirdのブックマーク (2)

  • 概要

    Aleksandar Prokopec, Heather Miller 著 Eugene Yokota 訳 動機 近年におけるプロセッサ製造業者のシングルコアからマルチコアへの移行のまっただ中で、産学ともに認めざるをえないのは「大衆的並列プログラミング」が大きな難題であり続けていることだ。 並列コレクション (parallel collection) は、並列プログラミングを容易にすることを目指して Scala 標準ライブラリに取り込まれた。 ユーザは低レベルな並列化に関する詳細を気にせず、親しみやすいコレクションという高レベルの抽象概念 (abstraction) を利用できる。 この概念が隠蔽する並列性によって、信頼性のある並列実行が開発者にとってより身近なものになると願っている。 アイディアは簡単だ – コレクションはよく理解されており、よく使われているプログラミングの抽象概念だ。

  • Overview

    Aleksandar Prokopec, Heather Miller If you’re using Scala 2.13+ and want to use Scala’s parallel collections, you’ll have to import a separate module, as described here. Motivation Amidst the shift in recent years by processor manufacturers from single to multicore architectures, academia and industry alike have conceded that Popular Parallel Programming remains a formidable challenge. Parallel co

  • 1