为了账号安全,请及时绑定邮箱和手机立即绑定

尝试从 python 脚本执行 golang 程序时出错

尝试从 python 脚本执行 golang 程序时出错

Go
至尊宝的传说 2022-01-10 10:29:43
我正在编写 C++ 和 GoLang 之间的性能比较以获取数据以执行统计分析,并且我创建了一个 Python 脚本来获取所有数据并自行执行这两个程序。使用 C++ 我没有问题并且执行工作正常,但是在 go 中我得到了这个错误:panic: runtime error: index out of rangegoroutine 1 [running]:runtime.panic(0x44d600, 0x4b9897)    /usr/lib/go/src/pkg/runtime/panic.c:266 +0xb6main.merge(0xc210047000, 0x9, 0x10, 0x8, 0x8, ...)    /windows/DATA/FIB/PE/B7_PLSpeed/nlogn.go:13 +0x22cmain.mergesort(0xc210047000, 0x9, 0x10, 0x8, 0x9)    /windows/DATA/FIB/PE/B7_PLSpeed/nlogn.go:43 +0xecmain.mergesort(0xc210047000, 0x9, 0x10, 0x5, 0x9)    /windows/DATA/FIB/PE/B7_PLSpeed/nlogn.go:42 +0xacmain.mergesort(0xc210047000, 0x9, 0x10, 0x0, 0x9)    /windows/DATA/FIB/PE/B7_PLSpeed/nlogn.go:42 +0xacmain.main()    /windows/DATA/FIB/PE/B7_PLSpeed/nlogn.go:54 +0x1c1如果有人可以帮助我,我会非常高兴!我将在这里留下我的 Python 脚本和 Go 源代码。Python:import timeimport randomfrom subprocess import callfrom sys import argvdef usage():    print("Usage: " + argv[0] + " <Binary1> <Binary2> <n elements> <#executions>")if __name__ == '__main__':    if len(argv) != 5:        usage()    else:        program1 = argv[1]        program2 = argv[2]        n = int(argv[3])        executions = int(argv[4])        for x in range(0, executions):            command = ['']            # 32-bit range vector(n) random generator            for y in range(0, n-1):                command.append(str(random.randint(-2147473648, 2147473647)))            if(random.choice((True, False))):                program1, program2 = program2, program1            # Program1            command[0] = './' + program1            pre = time.time()            call(command)            post = time.time()            f = open(program1 + ' - ' + str(n), 'a')            f.write(str(post-pre) + "ms\n")            f.close            # Program2            command[0] = './' + program2            pre = time.time()            call(command)            post = time.time()            f = open(program2 + ' - ' + str(n), 'a')            f.write(str(post-pre) + "ms\n")            f.close
查看完整描述

2 回答

?
潇湘沐

TA贡献1816条经验 获得超6个赞

问题不在您的 Python 中,因为 Go 程序在没有从 Python 调用的情况下得到相同的错误。在您的mainfunc 中,您正在创建一个名为 的切片v,从参数 position 开始1,因此不包括程序的名称:


for i := 1; i < len(args); i++ {

    f,_ := strconv.Atoi(os.Args[i])

    v = append(v, f)

}

但是你给出mergesort的是的长度args,而不是 的长度v,所以这是一个错误的错误,因为它被告知v比实际多 1 个元素。程序尝试访问v超出切片末尾的元素:


mergesort(v, 0, len(args) - 1)

请尝试mergesort(v, 0, len(v) - 1)使用您的主要功能。


查看完整回答
反对 回复 2022-01-10
?
动漫人物

TA贡献1815条经验 获得超10个赞

尝试改变:

call(command)

call(command, shell=True)


查看完整回答
反对 回复 2022-01-10
  • 2 回答
  • 0 关注
  • 187 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信