搜索资源列表
ECInitialize
- 实现了椭圆曲线的初始化,并当参数生成后,会对参数a和b进行判断,看是否符合椭圆曲线的要求。-realized the elliptic curve initialization, and when the parameters of the generated will parameters a and b for judgment to see whether they conform to the requirements of elliptic curves.
huisufa01beibao
- 算法框架: a.. 问题的解空间:应用回溯法解问题时,首先应明确定义问题的解空间。问题的解空间应到少包含问题的一个(最优)解。 b. 回溯法的基本思想:确定了解空间的组织结构后,回溯法就从开始结点(根结点)出发,以深度优先的方式搜索整个解空间。这个开始结点就成为一个活结点,同时也成为当前的扩展结点。在当前的扩展结点处,搜索向纵深方向移至一个新结点。这个新结点就成为一个新的活结点,并成为当前扩展结点。如果在当前的扩展结点处不能再向纵深方向移动,则当前扩展结点就成为死结点。换句话说,
jacobi
- Write an MPI program that solves a set of linear equations Ax = b with the 并行计算 Jacobi method. The root process reads the matrix A and the vector b from files. The file names have to be specified by the user as parameters.-Write an MPI p
canon2
- 主要还是让A(i,j) B(i,j)进行移动A(i,i+j),B(i+j,j),然后进能直接相乘。具体的内容可以看并行算法导论,-Matrix multiplication with the Cannon Algorithm: The Cannon Algorithm for matrix multiplication was presented in the course “Parallel and Distributed Algorithms “by Dr. Klauck. Sh
guess
- 猜數字 cout< "猜數字\n"<<"規則:1.輸入0~9的正整數\n"<<" 2.數字不能正整數\n" <<" 3.輸入四個數字(不能重複)\n" <<" 4.A=位子且數字對\n"<<" 5.B=數字對但位子不對\n"<<"PS.輸入:0 0 0 0換題\n"<<" 輸入:3 1 6 6離開猜數字\n" <<" 輸入9 9 5 8求救\n"<<" 每個數字請用空格分
excel
- 对excel文件数据的操作 运行程序后... 首先点击Creat File按钮创建标准EXCEL文件(非标准excel文件笨程序无法操作) 打开程序目录下的name.xls, excel文件下有3件工作簿分别为TestSheet1,TestSheet2,TestSheet3 //////////一定要注意任何数据不能只是数字!!!!! 将第一组数据复制到TestSheet1里"数据A1"列中 将第二组数据复制到TestShee
templates.tar
- This program is designed to perform matrix matrix multiplication A x B = C, where A is an lxm matrix, B is a m x n matrix and C is a l x n matrix. The program is designed to be a template serial program that can be expanded into a parallel
start
- openmp并行编程实现矩阵乘法运算,读入矩阵A和矩阵B,并输出计算结果到文件-openmp parallel programming matrix multiplication, read matrix A and matrix B, and output the results to a file
aaa
- 该函数返回值为积分结果,形参a,b分别为积分上下限,fun是被积函数。该函数用来求积分值。-This function returns a value of the integration result, parameters a, b is the integral upper and lower limits, respectively, fun is the plot function. This function is used to find the integral value
reverseArray_singleblock
- 反向阵列(单块)-- 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_singleblock”模板开始 B: 只有一个线程块启动,以反转一个大小的数组 N = numThreads = 256个元素 C: 第1部分(共1个):所有你需要做的是实现内核的“reverseArrayBlock()” D:每个线程将单个元件移动到相反的位置, 从d_a指标读取输入,
reverseArray_multiblock
- 反向阵列(multiblock): 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_multiblock”模板开始 B:多个256线程块启动,要颠倒大小为N,N / 256块的数组 第1部分:计算要启动的块数 第2部分:实现内核reverseArrayBlock 请注意,现在您必须同时进行计算 块内的相反位置 反向偏移到块的开始(Reverse array