- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我现在正在使用 MPI 练习简单的并行编程。该代码旨在通过随机生成 N*N 矩阵并使用简单的邻域加权平均滤波器来模拟图像处理,而不处理第一行和最后一行和列。我在编译时没有出错,但在运行时出现了一些我无法弄清楚的错误。请帮忙!谢谢!这是下面的代码:
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
int rank, size; // for storing this process' rank, and the number of processes
int i, j; //misc
int rec_buf[100]; // buffer where the received data should be stored
void initialize_data (int **, int );
void distribute_data (int **, int );
void mask_operation (int **, int , int**);
void collect_results (int **, int );
/* ttype: type to use for representing time */
typedef double ttype;
ttype tdiff(struct timespec a, struct timespec b)
/* Find the time difference. */
{
ttype dt = (( b.tv_sec - a.tv_sec ) + ( b.tv_nsec - a.tv_nsec ) / 1E9);
return dt;
}
struct timespec now()
/* Return the current time. */
{
struct timespec t;
clock_gettime(CLOCK_REALTIME, &t);
return t;
}
//clock_t begin, end;
struct timespec begin, end;
double time_spent;
int main(int argc, char **argv)
{
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &size);
int N = atof(argv[1]);
int A[N][N];
int Ap[N][N];
begin = now();
initialize_data(A, N);
distribute_data (A, N); // use scatterv
mask_operation(A, N, Ap);
collect_results(Ap, N); // use gatherv
end = now();
time_spent = tdiff(begin, end);
printf("Total Spent Time: %.8f sec.\n", time_spent);
MPI_Finalize();
return 0;
}
/*----------------------------------------------------*/
void initialize_data (int **A, int N){
//generating the random matrix
for(i=0;i<N;i++)
for(j=0;j<N;j++)
A[i][j]=rand()%256;
//print test for verify random
/*
for (i=0; i<N; i++) {
for (j=0; j<N; j++)
printf("%d\t", A[i][j]);
printf("\n");
} */
}
void distribute_data (int **A, int N){
int rem = (N-2)%size; // rows remaining after division among processes
int *sendcounts = malloc(sizeof(int)*size);
// array describing how many elements to send to each process
int *displs = malloc(sizeof(int)*size);
// array describing the displacements where each segment begins
// calculate send counts and displacements & print for each process
for (i = 0; i < size; i++) {
int sum = 0;
sendcounts[i] = ((int)((N-2)/size))*N; //to guarantee all rows will be calculated except the first and the last one
if (rem > 0) {
sendcounts[i] = sendcounts[i] + N;
rem--;
}
displs[i] = sum;
sum += sendcounts[i];
sendcounts[i] = sendcounts[i] + 2*N; //to add the local first and last row
//printf("sendcounts[%d] = %d\tdispls[%d] = %d\n", i, sendcounts[i], i, displs[i]);
}
// divide the data among processes as described by sendcounts and displs
MPI_Scatterv(&A, sendcounts, displs, MPI_INT, &rec_buf, 100, MPI_INT, 0, MPI_COMM_WORLD);
// print what each process received
printf("%d: ", rank);
for (i = 0; i < sendcounts[rank]; i++) {
printf("%d\t", rec_buf[i]);
}
printf("\n");
}
void mask_operation (int **A, int N, int **Ap){
int local_i, local_j; //local row and column 5*5, misc
int local_row_number = sizeof(A) / sizeof(int) / N;
for(i = 0; i < local_row_number-2; i++){
for(j = 0; j < N-2; j++){
if(rank == 0 && i ==0)
Ap[i][j] = A[i][j];
if(rank == size-1 && i ==N-3)
Ap[i+2][j] = A[i+2][j];
if(j == 0)
Ap[i][j] = A[i][j];
if(j==local_row_number-3)
Ap[i][j+2] = A[i][j+2];
for(local_j = 0; local_j < 5; local_j++){
for(local_i = 0; local_i < 5; local_i++){
Ap[i + local_i + 1][j + local_j + 1] = (Ap[i + local_i][j + local_j] + Ap[i + local_i][j + local_j + 1] + Ap[i + local_i][j + local_j + 2] + Ap[i + local_i + 1][j + local_j] + 2 * Ap[i + local_i + 1][j + local_j + 1] + Ap[i + local_i + 1][j + local_j + 2] + Ap[i + local_i + 2][j + local_j] + Ap[i + local_i + 2][j + local_j + 1] + Ap[i + local_i + 2][j + local_j + 2]) / 10;
}
}
}
}
}
void collect_results (int **Ap, int N){
int rem = (N-2)%size; // rows remaining after division among processes
int *sendcounts = malloc(sizeof(int)*size);
// array describing how many elements to send to each process
int *displs = malloc(sizeof(int)*size);
// array describing the displacements where each segment begins
// calculate send counts and displacements & print for each process
for (i = 0; i < size; i++) {
int sum = 0;
sendcounts[i] = ((int)((N-2)/size))*N; //to guarantee all rows will be calculated except the first and the last one
if (rem > 0) {
sendcounts[i] = sendcounts[i] + N;
rem--;
}
displs[i] = sum;
sum += sendcounts[i];
sendcounts[i] = sendcounts[i] + 2*N; //to add the local first and last row
//printf("sendcounts[%d] = %d\tdispls[%d] = %d\n", i, sendcounts[i], i, displs[i]);
}
//collect the processed matrix by sendcounts and displs
MPI_Gatherv(&rec_buf, sendcounts[rank], MPI_INT, &Ap, sendcounts, displs, MPI_INT, 0, MPI_COMM_WORLD);
//print the result
if(rank == 0){
printf("******************************************************\n");
printf ("Result: \n");
for (i = 0; i < N; i++) {
for (j = 0; j < N; j++) {
printf ("%d\t", Ap[i][j]);
}
}
printf ("\n");
free(sendcounts);
free(displs);
}
}
我在.sh文件中使用了4个等级并正确设置了N=15,我的错误报告如下:
[c0706a-s2:82816:0:82816] Caught signal 11 (Segmentation fault: address not mapped to object at address 0x4)
==== backtrace (tid: 82816) ====
0 0x000000000004ee05 ucs_debug_print_backtrace() ???:0
1 0x0000000000402285 main() ???:0
2 0x0000000000022545 __libc_start_main() ???:0
3 0x00000000004020a9 _start() ???:0
=================================
[c0706a-s2:82818:0:82818] Caught signal 11 (Segmentation fault: address not mapped to object at address (nil))
[c0706a-s2:82820:0:82820] Caught signal 11 (Segmentation fault: address not mapped to object at address (nil))
[c0706a-s2:82815:0:82815] Caught signal 11 (Segmentation fault: address not mapped to object at address (nil))
==== backtrace (tid: 82818) ====
0 0x000000000004ee05 ucs_debug_print_backtrace() ???:0
1 0x0000000000402285 main() ???:0
2 0x0000000000022545 __libc_start_main() ???:0
3 0x00000000004020a9 _start() ???:0
=================================
==== backtrace (tid: 82820) ====
0 0x000000000004ee05 ucs_debug_print_backtrace() ???:0
1 0x0000000000402285 main() ???:0
2 0x0000000000022545 __libc_start_main() ???:0
3 0x00000000004020a9 _start() ???:0
=================================
==== backtrace (tid: 82815) ====
0 0x000000000004ee05 ucs_debug_print_backtrace() ???:0
1 0x0000000000402285 main() ???:0
2 0x0000000000022545 __libc_start_main() ???:0
3 0x00000000004020a9 _start() ???:0
=================================
srun: error: c0706a-s2: tasks 1-3: Segmentation fault (core dumped)
srun: error: c0706a-s2: task 0: Segmentation fault (core dumped)
最佳答案
在我的工作站上,这个问题是由堆栈限制引起的。只需取消限制即可。
修改/etc/security/limits.conf
添加:
“*软堆栈无限”
“*硬堆栈无限”
修改/etc/pam.d/login
添加:
需要 session /usr/lib64/security/pam_limits.so
然后,重启ssh
关于捕获信号 11(段错误 : address not mapped to object at address (nil)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71074993/
在检查对象是否为 nil 时,有人使用 1: if (object == nil) { //... } 有人用 2: if (nil == object) { //... } 1和2有
func InsertApData(w http.ResponseWriter, r *http.Request) { decoder := json.NewDecoder(r.Body)
为什么 nil.to_s 返回 "",而 nil.inspect 返回 "nil"(当显然 .inspect 使用 .to_s 方法) 最佳答案 "inspect" method of the Obj
运行时间 https://play.golang.org/p/sl12vfS9vP package main import "fmt" func main() { err := run()
我可以将三元条件运算符用于 if {} else {} 语句,如下所示:a ? x : y,还是问题?回答 1 : 回答 2。 是否可以使用这种格式来检查,而不是 a 是 true 还是 false,
无法弄清楚这里出了什么问题。按照设计设置说明,用谷歌搜索我能想到的一切,仍然没有运气。 undefined method `email' for # Extracted source (around
今天写一些 rspec 时,我遇到了一些意外的行为,将日期(和时间)实例与 nil 进行比较。这是一个使用原始 ruby 的示例(没有 Rails 或其他库): user@MacBook-Work
我将数据类型的非零值分配给非可选属性,然后将其分配给可选属性,最后用所述数据实例化图像。当可选项通过 if-let 子句时,它的 block 执行,抛出错误: Fatal error: Unexpec
swift 5.1 。 考虑以下。 let x: Any? = nil let y: Any = x print("x \(x)") // x nil pri
请耐心听我解释这一点, 我正在创建一个聊天室,用户可以在其中上传照片供其他人查看。当用户点击图标时,他们可以将照片上传到我的 Firebase 数据库(这已成功完成,我已经对此进行了测试)。照片的 U
我的 xCode 5.0 目前遇到一个奇怪的问题:一个对象在控制台中似乎为 nil,但同时它可以通过代码访问。 图 1:对象似乎为零 图2:NSLog(@"%@", imgDownloader) 的输
我有一个实现协议(protocol)的类,以便添加 3 个变量。我专门设置了图像变量,调试器显示该变量存在,但是在我打印它时在代码中显示为 nil,我的 if let 语句也认为该变量为 nil。 @
这个问题在这里已经有了答案: Swift 2 ( executeFetchRequest ) : error handling (5 个答案) 关闭 7 年前。 开始在 SWIFT 中学习编码,每次
两者 (not 'nil) 和 (not nil) 求值为T,那么'nil和nil有什么区别吗?那么 ''nil 呢?如果 ''nil 的计算结果为 'nil,那么 ''nil 是否也应该计算为 ni
(if '(nil nil) 'print-true 'print-false) (if '(nil) 'print-true 'print-false) 在上面的代码
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: obj.nil? vs. obj == nil 我发现了一个问题 - == nil 和 nil 哪个更好?
此代码段抛出异常: x = nil jsoned = x.to_json puts 'x.to_json=' + jsoned.inspect puts 'back=' + JSON.parse(js
基本上我有一个对象想要传递给前端。我在后端记录了它,它不是空的,但是在前端,当我提醒它时,它变成了空。 ... presentation := &presentationStruct { Obje
我创建了一个自定义错误类型来包装错误,以便在 Golang 中更轻松地进行调试。当有错误要打印时它可以工作,但现在它会引起 panic 。 Demo type Error struct { E
写一个符合我当前问题的标题有点难..我有一个 main() 函数,它使用另一个包 (database_sql) 中的函数。该函数初始化一个全局变量 sql.DB*。初始化后,变量不为nil,但是对于其
我是一名优秀的程序员,十分优秀!