使用PyChapel从Python调用Chapel时出错

时间:2017-08-08 16:16:38

标签: chapel

我试图让Chapel将一个整数返回给Python。我想用python call.py称呼它。

call.py

import os
from pych.extern import Chapel

currentloc = os.path.dirname(os.path.realpath(__file__))


@Chapel(sfile=os.path.join(currentloc + '/response.chpl'))
def flip_bit(v=int):
    return int

if __name__=="__main__":
    u = 71
    w = flip_bit(u)
    print(w)

response.chpl

export
proc flip_bit(v: int) :int {
  v = -v;
  return v;
}

这会返回错误

/tmp/temp-7afvL9.chpl:2: In function 'flip_bit':
/tmp/temp-7afvL9.chpl:3: error: illegal lvalue in assignment
g++: error: /tmp/tmpvmKeSi.a: No such file or directory
Traceback (most recent call last):
  File "call.py", line 15, in <module>
    w = flip_bit(u)
  File "/home/buddha314/.virtualenvs/pychapel/local/lib/python2.7/site-packages/pych/extern.py", line 212, in wrapped_f
    raise MaterializationError(self)
pych.exceptions.MaterializationError: Failed materializing ({'anames': ['v'],
 'atypes': [<type 'int'>],
 'bfile': None,
 'dec_fp': '/home/buddha314/pychapel/tmp/response.chpl',
 'dec_hs': '7ecfac2d168f3423f7104eeb38057ac3',
 'dec_ts': 1502208246,
 'doc': None,
 'efunc': None,
 'ename': 'flip_bit',
 'lib': 'sfile-chapel-7ecfac2d168f3423f7104eeb38057ac3-1502208246.so',
 'module_dirs': [],
 'pfunc': <function flip_bit at 0x7fa4d72bd938>,
 'pname': 'flip_bit',
 'rtype': <type 'int'>,
 'sfile': '/home/buddha314/pychapel/tmp/response.chpl',
 'slang': 'chapel',
 'source': None}).

更新

基于丽迪娅的回答,我做了

export
proc flip_bit(v: int) :int {
  var w: int;
  w = -v;
  return w;
}

这很有效! WOO-HOOO !!!!

更新2

根据Brad的评论,这也有效

export
proc flip_bit(in v: int) :int {
  return -v;
}

也许他可以对每种方法的好处发表评论。

1 个答案:

答案 0 :(得分:2)

看起来您的问题是您在返回之前尝试修改参数。 Chapel对整数的默认参数意图是 const in (参见Chapel spec http://chapel.cray.com/docs/latest/language/spec.html,第13.5节),这意味着它不能在函数体内修改,并且是传递给它的值的副本。如果将结果存储在局部变量中并返回该变量,则应解决编译失败并为您提供所需的行为。