windows环境下的opendds基础环境,供大家一起可以分享资源,毕竟下载比较麻烦而且网速太慢,不大行,涉及到协议的资源国内下载速度一般还针步戳
2021-11-21 21:05:02 76.32MB opendds
1
这是Terence Tao的实分析二,觉得很不错,上传与大家分xiang一下。
2021-11-19 19:14:37 3.55MB 实分析
1
6.3 目标代码形式 对于 OpenMP 的并行域管理功能的实现,一部分在代码变换中体现,另一部分在运行库 中提供支持。对于并行域如此复杂的功能,全部依靠代码翻译变换来完成并不现实,因此许多 功能就只好压入到运行库中。如此一来,编译工作关于并行域管理的部分反而变得简单,而运 行库则需要负担更多的工作。此时在代码变换上只留下了启动并行域的代码(包括执行任务函 数)、任务函数的封装两大任务。可行的目标代码形式如图 6.4: 图 6.4 parallel 的目标代码框架 在 GCC 的 GOMP 中变换前后的代码形式如下: 1. #pragma omp parallel 变换前的代码 2. { 3. body; 4. } 下面是变换后的代码,分成两部分: 1. void subfunction (void *data) 这个是任务函数 2. { 3. use data; 4. body; 5. } …… 6. setup data; 数据共享、私有化等处理 7. GOMP_parallel_start (subfunction, &data, num_threads); 创建并行域 8. subfunction (&data); 调用任务函数 9. GOMP_parallel_end (); 退出并行域 上 面 的 代 码 变 换 与 图 6.4 基 本 一 致 , GOMP 中 的 GOMP_parallel_start() 和 GOMP_parallel_end()等函数是 GOMP 运行库中的函数。OMPi 的实现略有不同。 这里只是给出实现 OpenMP 并行域管理的代码基本形式,与具体的 C 编程语言绑定的代 码“框架”将在第 9 章给出。 串行代码 并 行 域 #pragma omp parallel 数据环境准备 并行域创建代码 …… 执行任务函数 …… 退出并行域 { …… …… …… } 任务函数 封装 替换
2021-11-08 17:02:03 4.28MB OpenMP
1
第三版
2021-11-05 16:42:17 2.52MB Analysis I Terence Tao
1
陶哲轩实分析英文版第二卷 如果你是数学系本科生,那就老老实实看教材,然后好好看这本书,观点是非常现代的,写得很清楚。
2021-10-08 11:08:18 3.55MB 陶哲轩 实分析
1
The Tao of Microservices guides you on the path to understanding and building microservices. Based on the invaluable experience of microservices guru Richard Rodger, this book exposes the thinking behind microservice designs. You'll master individual concepts like asynchronous messaging, service APIs, and encapsulation as you learn to apply microservices architecture to real-world projects. Along the way, you'll dig deep into detailed case studies with source code and documentation and explore best practices for team development, planning for change, and tool choice. what's inside Principles of the microservice architecture Breaking down real-world case studies Implementing large-scale systems When not to use microservices ---------------------------------------------------- 具体介绍见 Amazon ,版权归原作者。 ----------------------------------------------------
2021-09-25 07:47:23 17.13MB Microservies
1
这篇文档是博主自己动手编译成功后整理的,里面有详细的截图、步骤。非常适合DDS小白。
2021-07-15 14:32:27 421KB Tao编译 Ace编译 DDs编译 Windows
1
该程序是在C#环境下进行的三维展示的开发.适合初学者.包含了三维地表的生成,移动,旋转,透视,坐标点变换,模式变换等内容.请下载后重新加载tao.OpenGl,Tao.Winform等组件文件内包含
2021-07-08 10:32:37 796KB OpenGL C# VS2005 图像编程 三维
1
ace+tao+ciao源码5.6.6版本
2021-06-20 13:09:42 86.81MB ACETAO 5.6.6 c语言远程调用框架
1