gpt4 book ai didi

sparse-matrix - 稀疏矩阵作为 Chapel 对象中的字段

转载 作者:行者123 更新时间:2023-12-04 03:40:43 25 4
gpt4 key购买 nike

关注 this question我现在有一个类Graph包括一个稀疏矩阵。定义为

class Graph {
var vdom: domain(2),
SD: sparse subdomain(vdom),
A: [SD] real;

proc init(A: []) {
this.vdom = {A.domain.dim(1), A.domain.dim(2)};
for ij in A.domain {
this.SD += ij;
}
}

产生错误
chingon-base-test.chpl:30: error: halt reached - Sparse domain/array index out of bounds: (1, 2) (expected to be within {1..0, 1..0}

出现 SD没有被重新定义。什么是正确的模式?在上一篇文章中,我们谈到了密集数组,这是用于稀疏的。

我通过
var nv: int = 8,
D: domain(2) = {1..nv, 1..nv},
SD: sparse subdomain(D),
A: [SD] real;

SD += (1,2); A[1,2] = 1;
SD += (1,3); A[1,3] = 1;
SD += (1,4); A[1,4] = 1;
SD += (2,4); A[2,4] = 1;
SD += (3,4); A[3,4] = 1;
SD += (4,5); A[4,5] = 1;
SD += (5,6); A[5,6] = 1;
SD += (6,7); A[6,7] = 1;
SD += (6,8); A[6,8] = 1;
SD += (7,8); A[7,8] = 1;
g = new Graph(A);
writeln(g.A);

最佳答案

您应该在初始化的第 1 阶段设置 vdom 字段的值,而不是依赖于在默认阶段(第 2 阶段)设置它。 Phase 1 处理所有字段的初始值,所以如果不显式设置 vdom,它将是 {1..0, 1..0}当我们设置 SD 和 A 字段的初始值时,这就是您收到该错误消息的原因。

proc init(A: []) {
this.vdom = {A.domain.dim(1), A.domain.dim(2)};
this.complete(); // insert this line here
for ij in A.domain {
this.SD += ij;
}
}
编辑:通过执行您的示例调用行和我的修复,我得到以下输出:
0.0 0.0 0.0
0.0
0.0
0.0
0.0
0.0 0.0
0.0

关于sparse-matrix - 稀疏矩阵作为 Chapel 对象中的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47758570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com