@qzwlecr 请问后两个算例你跑通了吗?
嘴神爱6
@嘴神爱6
嘴神爱6 发布的帖子
-
请问为什么源代码4个算例只有1个正常通过啊?
一开始,7 点 stencil_data_512x512x512这个算例没通过有Significant numeric error,但是27 点 stencil_data_512x512x512这个算例正常通过,据说修复了以后,变成了7 点 stencil_data_512x512x512这个算例通过,27 点 stencil_data_512x512x512这个算例没通过有Significant numeric error,而7 点 stencil_data_768x768x768和27 点 stencil_data_768x768x768一直有问题类似:
[vn002837:mpi_rank_0][MPIDI_CH3_Abort] Fatal error in MPI_Alloc_mem:^M
Unable to allocate memory for MPI_Alloc_mem, error stack:^M
MPI_Alloc_mem(117): MPI_Alloc_mem(size=-642703296, MPI_INFO_NULL, baseptr=0x504036eee0) failed^M
MPI_Alloc_mem(98).: Unable to allocate memory for MPI_Alloc_mem^M
: No such file or directory (2)
请问是我的问题还是啥问题啊? -
请问为什么跑自带的源代码的时候会有Significant numeric error?
请问为什么跑自带的源代码的时候会有Significant numeric error?
Job <45723824> has been submitted to queue <q_sw_expr>
waiting for dispatch ...
Significant numeric error.^M
7-point stencil - A naive base-line:
Size (512 x 512 x 512), Timestep 48^M
Preprocessing time 0.000020s^M
Computation time 172.923106s, Performance 0.484330Gflop/s
dispatching ...
Job 45723824 has been finished.
题目不是说“为了检验结果正确性,请不要修改 common.h 中宏定义的 α 系数值。使用双精度浮点运算。要求在 16 步时最大误差(误差的无穷范数),如超过精度要求,运行报 Significant numeric error。”
我什么也没改啊。然后,为啥搜不到 q_sw_cpc_1 和 q_sw_cpc_2? -
请问asm("rtc %0": "=r" (time) : )的rtc 是啥意思?没百度到rtc 这个汇编指令啊
请问asm("rtc %0": "=r" (time) : )的rtc 是啥意思?百度说asm后面是汇编指令,但是我没百度到到rtc 这个汇编指令啊
-
RE: 公告:非计时区代码不允许增,删,改
@虚渺 请问主核里面的那句athread_spawn(func, (void*)¶m);
是不是athread_spawn(func, (void*)&init_param);? -
RE: 请问athread_get最后两个参数(int stride,int bsize)具体是怎么用的啊?
@popo 请问athread_get(dma_mode mode, void *src, void *dest, int len, void *reply, charmask,int stride,int bsize),指的是stride=striden,bsize=bsizen(n为整数),src+stride1为起始地址的bsize1个数据,src+stride1+bsize1+stride2为起始地址的bsize2个数据,……,src+stride1+bsize1+stride2+bsize2+……+striden为起始地址的bsizen个数据,传输到dest为起始地址的连续区域,而且len=bsize1+bsize2+……+bsizen吗?