-1

是否有可用于在超级计算机(远程 CPU 集群)上运行简单 VBA 脚本的软件/服务/硬件? 我的意思是无需安装复杂的官方 HPC Excel 扩展并花时间学习它...

我的意思是像这样易于使用的东西:

Sub test()
   SupercomputerLib.upload(ThisWorkbook)
   ArrayOfResults = SupercomputerLib.Execute("complexFunc(100)", _
                                             "complexFunc(200)", _
                                             "complexFunc(300)", _
                                             "complexFunc(400)", _
                                             "complexFunc(500)", _
                                             "complexFunc(600)", _
                                             "complexFunc(700)", _
                                             "complexFunc(800)", _
                                             "complexFunc(900)", _
                                             "complexFunc(1000)")
   'ArrayResult will be generated in 1 day of parallel calculus
End sub

Function complexFunc(someNumber as integer) as long
   *complex calculus that takes 1 day on a single CPU*
End Function
4

1 回答 1

0

据我所知,没有这样的软件/服务可用

于 2019-10-05T14:47:44.447 回答