Fortran 编译器可以与 Windows Azure 一起使用吗?
有谁知道可以在 Windows Azure 项目中使用的 Fortran 编译器?我最终希望获取使用 MPI 升级的 Fortran 代码,并让它在 Azure 中运行。
我已经可以在 EC2 上运行代码,但集成 Web UI 一直很笨拙,因为有很多移动部件 - IIS、mpi 节点等我想过滤掉。
Does anyone know of a Fortran compiler that can be used inside a Windows Azure project? I am ultimately looking to take a fortran code I have upgraded with MPI and get it to run inside Azure.
I can run the code already on EC2 but integrating a web ui has been klunky as there are a lot of moving parts - IIS, mpi nodes and the like that I would like to filter out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您的 FORTRAN 代码被编译为 dll 库或可执行文件,您可以:
在这两种情况下您需要在 ServiceDefinition 文件中为 Web 或辅助角色设置属性 enableNativeCodeExecution="true"
上面的完整示例是 FullTrust 示例
Assuming that your FORTRAN code is compliled to a dll library or an executable file you may :
In both cases you need to set the attribute enableNativeCodeExecution="true" for the web or worker role in the ServiceDefinition File
A complete example of the above is the FullTrust Sample in the Windows Azure SDK
对于相当简单的程序,您可以使用 Fortran Online (免费)
For rather simple programs you can use Fortran Online (free)