稀疏矩阵作为教堂对象中的字段



跟进此问题,我现在有一个包括稀疏矩阵的类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)设置它。阶段1处理所有字段的初始值,因此,如果您不明确设置VDOR,则当我们制作SD和A字段的初始值时,它将为{1..0, 1..0},这就是为什么您会收到该错误消息。

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

相关内容

  • 没有找到相关文章

最新更新