Python PyCOMPSs应用程序中的奇怪错误:脚本中没有last“;“是”;找不到

Python PyCOMPSs应用程序中的奇怪错误:脚本中没有last“;“是”;找不到,python,distributed-computing,hpc,compss,pycompss,Python,Distributed Computing,Hpc,Compss,Pycompss,我正在尝试运行一个版本为1.4的示例pyCOMPSs应用程序,但出现以下错误,即找不到没有最后一个“y”的python脚本。你知道可能是什么错误吗 xxx:~/xxx_xx/python/increment> runcompss --lang=python increment.py 3 1 2 3 Using default location for project file: /opt/COMPSs/Runtime/scripts/user/../../configuration/

我正在尝试运行一个版本为1.4的示例pyCOMPSs应用程序,但出现以下错误,即找不到没有最后一个“y”的python脚本。你知道可能是什么错误吗

xxx:~/xxx_xx/python/increment> runcompss --lang=python increment.py 3 1 2 3 
Using default location for project file:

 /opt/COMPSs/Runtime/scripts/user/../../configuration/xml/projects/project.xml
Using default location for resources file: /opt/COMPSs/Runtime/scripts/user/../../configuration/xml/resources/resources.xml

----------------- Executing increment.py --------------------------

WARNING: IT Properties file is null. Setting default values
[(0)    API]  -  Deploying COMPSs Runtime v1.4 (build 20160725-0937.r2315)
[(2)    API]  -  Starting COMPSs Runtime v1.4 (build 20160725-0937.r2315)
Traceback (most recent call last):
  File "/opt/COMPSs/Runtime/scripts/user/../../../Bindings/python/pycompss/runtime/launch.py", line 85, in <module>
    execfile(app_path)    # MAIN EXECUTION
  File "increment.py", line 92, in <module>
    @task(filePath = FILE_INOUT)
  File "/opt/COMPSs/Bindings/python/pycompss/api/task.py", line 117, in __call__
    if "__init__.py" in os.listdir(path):
OSError: [Errno 2] No such file or directory: 'increment.p'

Error running application
xxx:~/xxx\u xx/python/increment>runcompss--lang=python increment.py 3 1 2 3
使用项目文件的默认位置:
/opt/COMPSs/Runtime/scripts/user/./../configuration/xml/projects/project.xml
使用资源文件的默认位置:/opt/COMPSs/Runtime/scripts/user/./../configuration/xml/resources/resources.xml
-----------------执行increment.py--------------------------
警告:它的属性文件为空。设置默认值
[(0)API]-部署COMPSs运行时v1.4(构建20160725-0937.r2315)
[(2)API]-启动COMPSs运行时v1.4(构建20160725-0937.r2315)
回溯(最近一次呼叫最后一次):
文件“/opt/COMPSs/Runtime/scripts/user/../../../../../Bindings/python/pycompss/Runtime/launch.py”,第85行,在
execfile(应用程序路径)#主执行
文件“increment.py”,第92行,在
@任务(filePath=FILE\u INOUT)
文件“/opt/COMPSs/Bindings/python/pycompss/api/task.py”,第117行,在调用中__
如果os.listdir(路径)中有“\uuuu init\uuuuu.py”:
OSError:[Errno 2]没有这样的文件或目录:“increment.p”
运行应用程序时出错

您错过了python脚本之前的./或绝对路径

runcompss --lang=python ./increment.py 3 1 2 3

runcompss --lang=python /path/to/script/increment.py 3 1 2 3