摘要: 《分布式数据库》课程课件:http://www.cs.xmu.edu.cn/database/linziyu/index.html论文是怎样炼成的:http://dblab.xmu.edu.cn/node/40 阅读全文
posted @ 2012-12-10 22:46 xjx_user 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 分布式事务处理,两段锁协议:http://vlinux.iteye.com/blog/1131464 阅读全文
posted @ 2012-12-10 22:06 xjx_user 阅读(195) 评论(0) 推荐(0) 编辑
摘要: java资源:http://blog.csdn.net/gnuhpc/article/category/566836分布计算环境学习笔记1——基本概念和发展历史:http://blog.csdn.net/gnuhpc/article/details/4970194分布计算环境学习笔记2——分布式系统中的面向对象技术:http://blog.csdn.net/gnuhpc/article/details/4981524分布计算环境学习笔记3——软件构件结构:http://blog.csdn.net/gnuhpc/article/details/4981863分布计算环境学习笔记4——Enterp 阅读全文
posted @ 2012-12-10 14:49 xjx_user 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 网络资源:http://pan.baidu.com/share/link?shareid=161961&uk=1678594189 阅读全文
posted @ 2012-12-10 14:16 xjx_user 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 【实验目的】1、 掌握Introduction to Guided Auto-parallelization功能、特点和基本使用方法;2、 掌握使用OpenMP和Intel Parallel Studio工具将串行程序转换为并行程序的方法【预备知识】1 掌握C/C++语言2 掌握Intel Parallel Studio XE环境的使用3 掌握使用Parallel Advisor4 掌握Intel Parallel Studio XE和Microsoft Visual Studio 2005使用方法网络资源:http://pan.baidu.com/share/link?shareid=161 阅读全文
posted @ 2012-12-10 14:13 xjx_user 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1、 掌握Intel Parallel Amplifier功能、特点和基本使用方法;2、 掌握如何使用Hotspots找到性能瓶颈和优化机会3、 掌握如何使用Concurrency进行并行性分析和性能提升4、 掌握如何使用Locks and waits分析和查询影响程序性能的关键等待5、 掌握Intel Parallel Inspector的特点和基本使用方法;6、 掌握如何使用Memory errors寻找内存错误;7、 掌握如何使用Threading errors寻找线程相关的错误8、 掌握使用Parallel Advisor分析程序9、 掌握使用OpenMP和Intel Parallel 阅读全文
posted @ 2012-12-10 14:03 xjx_user 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 资源地址:http://pan.baidu.com/share/link?shareid=161933&uk=1678594189 阅读全文
posted @ 2012-12-10 13:55 xjx_user 阅读(263) 评论(0) 推荐(0) 编辑
摘要: #include <windows.h>#include <stdio.h>const int gNumThreads = 4;int gPi = 0;CRITICAL_SECTION gCS; //声明一个临界区对象const int numThreads = 4;const int numEnd = 1000;int sum=0;DWORD WINAPI threadFunction(LPVOID pArg) //返回值进程id(dword类型) 参数类型 LPVOID{int myNum = *((int *)pArg);printf("Hello Th 阅读全文
posted @ 2012-12-10 13:26 xjx_user 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 个人文档资源地址内涵WorldCount代码:http://pan.baidu.com/share/link?shareid=161871&uk=1678594189网络资源地址:chinaunix博客 hadoop学习系列:http://blog.chinaunix.net/uid/20420254/frmd/48583.html博客园 hadoop学习系列:http://www.cnblogs.com/xia520pi/category/346943.html 阅读全文
posted @ 2012-12-10 12:58 xjx_user 阅读(132) 评论(0) 推荐(0) 编辑
摘要: PHP环境搭建 (Windows 7)1. 安装Apache下载地址:http://www.apache.org/dyn/closer.cgi/httpd/binaries/win32如需更改端口:打开Apache安装目录下conf目录下的httpd.conf文件,找到Listen 80,80即为现在所用端口,更改80为其他端口即可;2. 安装php下载地址:http://windows.php.net/download (下载有php5apache2_2.dll文件的版本)如下载php-5.2.17-Win32-VC6-x86.zip文件(VC9是专门为IIS定制的,VC6 是为了其他WEB 阅读全文
posted @ 2012-12-10 10:36 xjx_user 阅读(405) 评论(1) 推荐(0) 编辑