タグ

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

  • 関連タグはありません

タグの絞り込みを解除

.netとあとで読むに関するtotonのブックマーク (1)

  • Break Free of Code Deadlocks in Critical Sections Under Windows

    Given the nums array above, we can use our reduction routine to find the min and max of the array: int min = Reduce(nums, int.MaxValue, (x,y) => x < y ? x : y;); int max = Reduce(nums, int.MinValue, (x,y) => x > y ? x : y;); (Count is omitted because the partial results must be summed, requiring two separate binary operators, and Average is omitted because it also requires some extra steps.) You c

    Break Free of Code Deadlocks in Critical Sections Under Windows
    toton
    toton 2010/10/20
    並列プログラミング. カウントダウン ラッチ,再利用可能なスピン待ち,バリア,キューのブロッキング,制限されたバッファ,シンイベント,ロックされないLIFOスタック,ループタイル,並列リダクション
  • 1