English 中文(简体)
来源/材料/文件/书籍/博客?
原标题:Parallelism Sources / material / papers / books / blogs?

我想开始学习平行主义

  1. Approaches to write programs which attain parallelism
  2. Issues in writing code for Multi-core Architecture
  3. Design Patterns in parallelism
  4. Program optimizations techniques for multi-core architectures
  5. also something about transactional memory [While searching for parallelism , i came across this term].

我正收集资源来做同样的事情。

http://www.cse.wustl.edu/~schmidt/patterns-ace.html
Patterns for Parallel Programming

只是想分享你的资源

最佳回答

首先,您应该首先了解不同的平行结构是如何运作的。互联网上有很多免费的高质量材料。

Tutorials and course materials

Lawrence Livermorre 国家实验室 (LLNL) 提供一套不错的HPC教程

爱丁堡平行电子计算中心(EPCC)也免费提供大量

我将这个答案保留为社区维基语,

问题回答

暂无回答




相关问题
Choosing the right subclass to instantiate programmatically

Ok, the context is some serialization / deserialization code that will parse a byte stream into an object representation that s easier to work with (and vice-versa). Here s a simplified example ...

Design pattern for managing queues and stacks?

Is there a design pattern for managing a queue or a stack? For example, we are looking to manage a list of tasks. These tasks will be added to a group queue, users will then be able to pull off the ...

Organizing classes using the repository design pattern

I have started upgrading one of our internal software applications, written in ASP.NET Web Forms, and moving to ASP.NET MVC. I am trying to leverage the Repository design pattern for my classes, ...

Misuse of Observer Pattern?

I have a Car object which contains a latitude field and a longitude field. I use the observer pattern so that any time either of these fields change in my application, my car object is notified. I ...

How are Models (in MVC) and DAOs supposed to interact?

How are models and DAOs supposed to interact? I m in the process of putting together a simple login module and I m unsure where to put the "business logic." If I put the logic with the data in the ...

热门标签