2011-04-25から1日間の記事一覧

並列な整列アルゴリズム

最近GPUとCUDAを使用して並列に計算するプログラムを学んでいます。 I recently encountered an algorithm called scan, which, given an array of elements, replaces the ith element by the sum of elements 0 to i. Applications of this suppose…