CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 并行运算 搜索资源 - a to b

搜索资源列表

  1. ECInitialize

    0下载:
  2. 实现了椭圆曲线的初始化,并当参数生成后,会对参数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.
  3. 所属分类:并行运算

    • 发布日期:2008-10-13
    • 文件大小:1.18kb
    • 提供者:随风
  1. huisufa01beibao

    0下载:
  2. 算法框架: a.. 问题的解空间:应用回溯法解问题时,首先应明确定义问题的解空间。问题的解空间应到少包含问题的一个(最优)解。 b. 回溯法的基本思想:确定了解空间的组织结构后,回溯法就从开始结点(根结点)出发,以深度优先的方式搜索整个解空间。这个开始结点就成为一个活结点,同时也成为当前的扩展结点。在当前的扩展结点处,搜索向纵深方向移至一个新结点。这个新结点就成为一个新的活结点,并成为当前扩展结点。如果在当前的扩展结点处不能再向纵深方向移动,则当前扩展结点就成为死结点。换句话说,
  3. 所属分类:MPI

    • 发布日期:2017-04-17
    • 文件大小:9.86kb
    • 提供者:木枫
  1. jacobi

    0下载:
  2. 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
  3. 所属分类:MPI

    • 发布日期:2017-03-24
    • 文件大小:2.04kb
    • 提供者:刘铭
  1. canon2

    0下载:
  2. 主要还是让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
  3. 所属分类:MPI

    • 发布日期:2017-04-03
    • 文件大小:2.35kb
    • 提供者:刘铭
  1. guess

    0下载:
  2. 猜數字 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"<<" 每個數字請用空格分
  3. 所属分类:MPI

    • 发布日期:2017-11-22
    • 文件大小:1.05kb
    • 提供者:eason
  1. excel

    0下载:
  2. 对excel文件数据的操作 运行程序后... 首先点击Creat File按钮创建标准EXCEL文件(非标准excel文件笨程序无法操作) 打开程序目录下的name.xls, excel文件下有3件工作簿分别为TestSheet1,TestSheet2,TestSheet3 //////////一定要注意任何数据不能只是数字!!!!! 将第一组数据复制到TestSheet1里"数据A1"列中 将第二组数据复制到TestShee
  3. 所属分类:MPI

    • 发布日期:2017-11-18
    • 文件大小:72.19kb
    • 提供者:何山
  1. templates.tar

    0下载:
  2. 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
  3. 所属分类:MPI

    • 发布日期:2016-01-27
    • 文件大小:1kb
    • 提供者:abed81
  1. start

    0下载:
  2. openmp并行编程实现矩阵乘法运算,读入矩阵A和矩阵B,并输出计算结果到文件-openmp parallel programming matrix multiplication, read matrix A and matrix B, and output the results to a file
  3. 所属分类:MPI

    • 发布日期:2017-04-11
    • 文件大小:827byte
    • 提供者:于献智
  1. aaa

    0下载:
  2. 该函数返回值为积分结果,形参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
  3. 所属分类:MPI

    • 发布日期:2017-04-30
    • 文件大小:120.5kb
    • 提供者:张华
  1. reverseArray_singleblock

    0下载:
  2. 反向阵列(单块)-- 给定指针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指标读取输入,
  3. 所属分类:并行计算

    • 发布日期:2017-12-19
    • 文件大小:6kb
    • 提供者:p-yang
  1. reverseArray_multiblock

    0下载:
  2. 反向阵列(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
  3. 所属分类:并行计算

    • 发布日期:2017-12-24
    • 文件大小:6kb
    • 提供者:p-yang
搜珍网 www.dssz.com