原创 網絡狀態代碼數字的含義

一些常見的狀態代碼包括: 200 – 服務器成功返回網頁 404 – 請求的網頁不存在 503 – 服務器暫時不可用

原创 matrix4

//Writed by YaoPu, Oct 10,2016 //if any problem,send email [email protected] #include"mpi.h" #include"stdio.h" #include

原创 GPU 內存的分級綜述(gpu memory hierarchy)

GPU 內存的分級(gpu memory hierarchy) 小普 中科院化學所在讀博士研究生 研究課題,計算機模擬並行軟件的開發與應用 Email:  [email protected] (歡迎和我討論問題) CSDN: 博客園: 摘

原创 MPI並行計算與矩陣(2)

1The body of code #include"mpi.h" #include"stdio.h" #include<stdlib.h> const int rows = 3; //the rows of mat

原创 matrix8

//http://blog.csdn.net/pouloghost/article/details/7904049 //gauss //Oct 9 2016 #include "mpi.h" #include <stdio.h>

原创 matrix3

//Writed by YaoPu, Oct 10,2016 //if any problem,send email [email protected] //only for 2 processors !!!!! #include"mpi

原创 初始構型

// // create_conf.C // // Create an initial lattice configuration and save to a file. // // Written by: Yanting Wang

原创 Shell 與Python的交互

在python中: import os os.system('mkdir Test') 則會在當前目錄下生成Test目錄,和shell一樣

原创 matrix5

//http://www.linuxidc.com/Linux/2012-08/67662.htm #include "mpi.h" #include <stdio.h> #include <stdlib.h>

原创 Python數理統計

參考此文: http://wenku.baidu.com/link?url=A6-0HbEHaHO4XFMwaoTuHzEnkaDhmzjCjGxpLh3dey3rJlPR9n63opl-uwOiaNm3W08qDl-IZv9hVulOG

原创 MPI常用函數速查表

MPI_Send(buf,count,datatype,dest,tag,comm) MPI_Recv(buf,count.datatype,source,tag,comm.&status) for(int i=1;i<numprocs

原创 matrix6

//http://blog.csdn.net/pouloghost/article/details/7913342 //oct 9 2016 //jaccobi #include "mpi.h" #include <stdio.h>

原创 Python re(正則表達式)簡明教程

Python re(正則表達式)簡明教程(Python3) 舉個栗子 常用函數舉例 按字母順序查詢模塊

原创 MPI_Recv

//Writed by YaoPu //connect via Email:[email protected] #include"mpi.h" #include"stdio.h" #include"string.h" int main(i

原创 Python類簡明教程

Python類簡明教程