并行开发艺术(影印版) pdf 免费 地址 txt lrf 下载 kindle umd

并行开发艺术(影印版)电子书下载地址
内容简介:
如果你想利用并发程序设计充分发挥多核心处理器的性能,《并行开发艺术(影印版)》就为你提供了所需要的实践知识和亲身体验。《并行开发艺术》是一份难得的材料,专注于多核心处理器的共享内存模型,而不只是理论模型或分布式内存架构。《并行开发艺术(影印版)》提供了详尽的解释和可用的示例,帮助你将算法从串行代码转化为并行代码,此外还包括建议和分析,避免程序员的典型错误。
作者为Intel资深工程师,拥有超过20年的并行和并发编程经验,《并行开发艺术(影印版)》将会帮助你:
· 探索共享内存与分布式内存编程间的区别
· 学习设计多线程程序的指导方针,包括测试和调整
· 研究如何善用不同的线程库,包括Windows线程、POSIX线程、OpenMP和Intel Threading Building Blocks
· 研究如何实现排序、查找、图形和其他实用计算的并行算法
《并行开发艺术》向你展示如何扩展算法,以从新型的多核处理器中获益。对于开发并行算法和并发编程来说,《并行开发艺术(影印版)》不可或缺。
书籍目录:
PREFACE
1 WANT TO GO FASTER? RAISE YOUR HANDS IF YOU WANT TO GO FASTER!
Some Questi*** You May Have
Four Steps of a Threading Methodology
Background of Parallel Algorithms
Shared-Memory Programming Versus Distributed-Memory Programming
This Book’s Approach to Concurrent Programming
2 CONCURRENT OR NOT CONCURRENT?
Design Models for Concurrent Algorithms
What’s Not Parallel
3 PROVING CORRECTNESS AND MEASURING PERFORMANCE
Verification of Parallel Algorithms
Example: The Critical Section Problem
Performance Metrics (How Am I Doing?)
Review of the Evolution for Supporting Parallelism in Hardware
4 EIGHT SIMPLE RULES FOR DESIGNIN***ULTITHREADED APPLICATIONS
Rule 1: Identify Truly Independent Computati***
Rule 2: Implement Concurrency at the Highest Level Possible
Rule 3: Plan Early for Scalability to Take Advantage of Increasing Numbers of Cores
Rule 4: Make Use of Thread-Safe Libraries Wherever Possible
Rule 5: Use the Right Threading Model
Rule 6: Never Assume a Particular Order of Execution
Rule 7: Use Thread-Local Storage Whenever Possible or Associate Locks to Specific Data
Rule 8: Dare to Change the Algorithm for a Better Chance of Concurrency
Summary
5 THREADING LIBRARIES
Implicit Threading
Explicit Threading
What Else Is Out There?
Domain-Specific Libraries
6 PARALLEL SUM AND PREFIX SCAN
Parallel Sum
Prefix Scan
Selection
A Final Thought
7 MAPREDUCE
Map As a Concurrent Operation
Reduce As a Concurrent Operation
Applying MapReduce
MapReduce As Generic Concurrency
8 SORTING
Bubblesort
Odd-Even Transposition Sort
Shellsort
Quicksort
Radix Sort
9 SEARCHING
Unsorted Sequence
Binary Search
10 GRAPH ALGORITHMS
Depth-First Search
All-Pairs Shortest Path
Minimum Spanning Tree
11 THREADING TOOLS
Debuggers
Performance Tools
Anything Else Out There?
Go Forth and Conquer
GLOSSARY
PHOTO CREDITS
INDEX
作者介绍:
Clay Breshears博士,是Intel公司的课程架构师,专攻多核心及多线程程序设计与培训。
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
Two types of dependencies can occur between tasks. The first is order dependency, where sometask relies on the completed results of the computati*** from another task. This reliance canbe a direct need to use the computed values as input to the succeeding task, or it may simplybe the case that the task that follows will be updating the same memory locati*** as theprevious task and you must ensure that all of the previous updates have been completed beforeproceeding. Both of these cases describe a potential data race, which we need to avoid.For example, if you are building a house, putting up the roof involves attaching the rafters tothe walls, laying down the decking, and applying the shingles. The dependence between thesethree tasks is one of execution order. You can't put down shingles until the decking is there,and you can't nail down the decking unless you have the rafters in place. So, instead of hiringthree teams to do these three tasks in parallel, you can hire one roofing crew to do all three inthe order required (there is parallelism within each of the roofing steps, plus the act of puttingon the roof is independent of installing the electrical wiring, the plumbing, and putting updrywall).
To satisfy an execution order c***traint, you can schedule tasks that have an order dependencyonto the same thread and ensure that the thread executes the tasks in the proper sequence.The serial code was written with the order dependency already taken care of. So, the serialalgorithm should guide the correct decomposition of the computati*** into tasks andassignment of those tasks to threads. Still, even after grouping tasks to execute on threads,there may be order c***traints between threads. If regrouping tasks to threads is not an optiono***ill severely hurt performance, you will be forced to insert some form of synchronizationto ensure correct execution order.
The second type of dependency is data dependency. Identifying potential data dependenciescan be straightforward: look for those variables that are featured on the left side of theassignment operator. Data races require that the variable in question have at least one threadthat is writing to that variable. Check for any assignment of values to the same variable thatmight be done concurrently as well as any updates to a variable that could be read concurrently.Of course, using pointers to reference memory locati*** can make the identification processtrickier. There are tools (covered in Chapter 11) that can assist in finding nonobvious datadependencies in your code.
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
编辑推荐
《并行开发艺术(影印版)》是由东南大学出版社出版的。
媒体评论
“这本书紧扣题目,令人赏心悦目。艺术无法传授,但追随大师的脚印便可觅得踪迹。作者在超级计算机公司工作30余年,而后又在学术界浸淫10年,我可以毫无疑问地说,本书实至名归。”
──Tom Murphy,Contra Costa学院,计算机科学程序委员会主席
“终于,一本专注于
前言
.
网站评分
书籍多样性:7分
书籍信息完全性:8分
网站更新速度:6分
使用便利性:7分
书籍清晰度:5分
书籍格式兼容性:4分
是否包含广告:6分
加载速度:7分
安全性:5分
稳定性:7分
搜索功能:3分
下载便捷性:6分
下载点评
- 服务好(238+)
- 小说多(304+)
- 下载快(537+)
- 博大精深(467+)
- 在线转格式(172+)
- 简单(573+)
- 书籍完整(81+)
- 差评少(231+)
- 实惠(163+)
- 下载速度快(419+)
- 全格式(425+)
- 书籍多(407+)
下载评价
- 网友 堵***洁:
好用,支持
- 网友 焦***山:
不错。。。。。
- 网友 孙***夏:
中评,比上不足比下有余
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 宓***莉:
不仅速度快,而且内容无盗版痕迹。
- 网友 曾***文:
五星好评哦
- 网友 隗***杉:
挺好的,还好看!支持!快下载吧!
- 网友 石***烟:
还可以吧,毕竟也是要成本的,付费应该的,更何况下载速度还挺快的
- 网友 温***欣:
可以可以可以
喜欢"并行开发艺术(影印版)"的人也看了
养育圣典 pdf 免费 地址 txt lrf 下载 kindle umd
纪录片解析 pdf 免费 地址 txt lrf 下载 kindle umd
9787516124772 pdf 免费 地址 txt lrf 下载 kindle umd
山西古建筑民间营造探秘 中国建材工业出版社 pdf 免费 地址 txt lrf 下载 kindle umd
小学生语文新课标必读丛书·小书虫阅读系列 pdf 免费 地址 txt lrf 下载 kindle umd
二级注册建筑师资格考试教材 4 建筑经济 施工与设计业务管理 pdf 免费 地址 txt lrf 下载 kindle umd
2021版英才教程三年级上册语文 数学***2本配人教版 小学3年级语文数学英才教程 字词句段篇 口算心算速算 小学教材全解附预习正版 pdf 免费 地址 txt lrf 下载 kindle umd
申论范文宝典-***录用考试专项教材( 货号:751153643007) pdf 免费 地址 txt lrf 下载 kindle umd
英汉双解词典(第二版) pdf 免费 地址 txt lrf 下载 kindle umd
动画片大头儿子启蒙英语(适于5-6岁)正版4DVD pdf 免费 地址 txt lrf 下载 kindle umd
- 新TOPIK词汇标准教程:上:中9787519245061 正版新书正浩图书专营店 pdf 免费 地址 txt lrf 下载 kindle umd
- 二级注册建筑师2020教材二级注册建筑师考试历年真题与解析 2 法律 法规 经济与施工( pdf 免费 地址 txt lrf 下载 kindle umd
- 美女雕像 pdf 免费 地址 txt lrf 下载 kindle umd
- 青少年桥牌教程 pdf 免费 地址 txt lrf 下载 kindle umd
- 梦的解析 : 全译本 pdf 免费 地址 txt lrf 下载 kindle umd
- 爽口凉拌菜怎么做 pdf 免费 地址 txt lrf 下载 kindle umd
- 南侨回忆录 陈嘉庚 著 上海三联书店【正版】 pdf 免费 地址 txt lrf 下载 kindle umd
- 【库存两本/有实体店】2023年单元集训单元检测与模块综合政治文科黑龙江教育出版社高二三学生一轮复习参考书练习卷专用专项全国版 pdf 免费 地址 txt lrf 下载 kindle umd
- 新编围棋教学习题册 入门 下册 最新版 天津科学技术出版社 pdf 免费 地址 txt lrf 下载 kindle umd
- 木槿花西月锦绣:典藏版(全6册) pdf 免费 地址 txt lrf 下载 kindle umd
书籍真实打分
故事情节:8分
人物塑造:5分
主题深度:5分
文字风格:9分
语言运用:8分
文笔流畅:9分
思想传递:5分
知识深度:6分
知识广度:5分
实用性:3分
章节划分:7分
结构布局:4分
新颖与独特:6分
情感共鸣:5分
引人入胜:9分
现实相关:3分
沉浸感:6分
事实准确性:6分
文化贡献:6分