- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
对于我的并行计算类(class)中的一个项目,我需要实现一个并行版本的生命游戏。
我正在使用教科书作者编写的名为“read_row_stripped_matrix”的函数。此函数从包含矩阵中的行数、矩阵中的列数和矩阵中的数据的文件中读取输入。
该函数通过分配一个名为“storage”的一维数组来设置二维矩阵,该数组保存矩阵的所有数据。二维矩阵的每一行都指向它在存储中的第一个元素,如下图所示:
我们需要清理函数代码,使其符合我们的 C 语言风格指南。所以我清理了一些东西,以便它更具可读性。
我现在遇到的问题是将矩阵中的每一行指向存储中的第一个元素。我在连接这些指针时遇到段错误,特别是在函数的这一部分:
/* Dynamically allocate matrix. Allow double subscripting
through 'a'. */
*storage = my_malloc (id, local_rows * *n * sizeof(int));
*subs = my_malloc (id, local_rows * PTR_SIZE);
for (i = 0; i < local_rows; i++) {
*subs[i]=&(*storage[i * *n]);
}
让我感到困惑的是,我很确定我已经为数组分配了足够的内存。在我正在测试的示例中,*m 和 *n 等于 5,而 local_rows 等于 5。所以我分配 25*sizeof(int) 用于存储,这应该足以容纳 5x5 矩阵的所有元素。
这是 my_malloc 函数,它为特定处理器分配内存:
/*
* Function 'my_malloc' is called when a process wants
* to allocate some space from the heap. If the memory
* allocation fails, the process prints an error message
* and then aborts execution of the program.
*/
void* my_malloc (
int id, /* IN - Process rank */
int bytes) /* IN - Bytes to allocate */
{
void *buffer;
if ((buffer = malloc ((size_t) bytes)) == NULL) {
printf ("Error: Malloc failed for process %d\n", id);
fflush (stdout);
MPI_Abort (MPI_COMM_WORLD, MALLOC_ERROR);
}
return buffer;
}
老实说,我发现指针令人困惑,如果问题很明显,请原谅我。我在这方面的工作时间比我应该的要长,所以我的大脑可能已经炸了。
如果您需要更多代码,请随时提出。
最佳答案
首先,你这样做:
*subs = my_malloc (id, local_rows * PTR_SIZE);
然后,你这样做:
*subs[i]=&(*storage[i * *n]);
很确定这就是您的问题,就在那里。在我看来它真的应该是:
(*subs)[i]=&(*storage[i * *n]);
关于c - 生命游戏实现中的段错误问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28934147/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!