gpt4 book ai didi

chapel - 是否可以用config声明一个数组?

转载 作者:行者123 更新时间:2023-12-02 20:11:22 25 4
gpt4 key购买 nike

或任何类似的动态长度数据结构,可以轻松地将其转换为数组。我发现的唯一解决方法是将数组作为字符串输入并手动解析它。

config var not_array: string = '[1,2,3,4,5]' ;

proc main() {
// config array workaround
writeln("I am string. Definitely not array ", not_array) ;

// parse string
not_array = not_array.replace(' ','') ;
not_array = not_array.replace('[','') ;
not_array = not_array.replace(']','') ;
var still_not_array = not_array.split(',') ;

// prepare array
var dom = 0..#still_not_array.size ;
var array: [dom] real ;

// populate array
for (i, x) in zip(dom, still_not_array) {
array[i] = x:real ;
}
writeln("Ha! Tricked you, am actually array ", array) ;
}

这按预期工作,但是有更好的方法吗?

最佳答案

Is it possible to declare an array with config?

不,从 Chapel 1.16 开始,Chapel 尚不支持此功能。

也就是说,正如您所演示的那样,有多种方法可以解决这个问题。

作为替代解决方法,您可以使用 IO调用将输入字符串写入内存,然后将其作为数组读入,例如

config type  arrType = int;
config const arrSize = 3,
arrString = '1 2 3';

var A : [1..arrSize] arrType;

// Create a memory buffer to write in
var f = openmem();

// Create a writer on the memory buffer and write the input string
var w = f.writer();
w.writeln(arrString);
w.close();

// Create a reader on the memory buffer and read the input string as an array
var r = f.reader();
r.readln(A);
r.close();

writeln(A);

请注意,这需要预先指定数组大小。我认为您必须像原始示例一样进行一些字符串处理才能动态计算。

一些资源:

关于chapel - 是否可以用config声明一个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47712619/

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