好的,谢谢段老师指点
嘴神爱6 发布的帖子
-
请问各位大佬,这是啥错误?
CG vn007436 exception !
DMA descriptor examination exception
ERROR, NO SPE EXCEPTION! -
请问函数里有athread_init,athread_halt,函数被调用了2次,是不是要想办法把athread_init,athread_halt只执行一次?
请问各位大佬,stencil_7这个函数里面 有
for(int t = 0; t < nt; ++t)
{
if(t==0)
{
athread_init();
}
athread_spawn(func,0);
athread_join();if(t == nt-1) { athread_halt(); }
}
然后这个函数被调用了2次,我是不是要让athread_init()和athread_halt()都只被调用一次?
-
RE: 关于athread运行错误
@桑薇 请问老师stencil_7这个函数里面 有
for(int t = 0; t < nt; ++t)
{
if(t==0)
{
athread_init();
}athread_spawn(func,0); athread_join(); if(t == nt-1) { athread_halt(); } }
然后这个函数被调用了2次,我是不是要让athread_init()和athread_halt()都只被调用一次?
-
请问各位大佬,这是什么警告啊?有影响吗?
stencil-optimized.c:7: warning: type defaults to 'int' in declaration of 'slave_func'
请问这是声明从核函数的哪里出问题了? -
菜鸡想问一下,这是什么错误?
In file included from check.c:3:
common.h:68:7: warning: no newline at end of file
check.c: In function 'check_answer':
check.c:23: error: 'for' loop initial declaration used outside C99 mode
check.c:25: error: 'for' loop initial declaration used outside C99 mode
check.c:30: error: 'for' loop initial declaration used outside C99 mode
make: *** [check.o] 错误 1