Fortran 编译器可以与 Windows Azure 一起使用吗?

发布于 2024-08-10 12:22:34 字数 164 浏览 3 评论 0原文

有谁知道可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘和柠 2024-08-17 12:22:34

假设您的 FORTRAN 代码被编译为 dll 库或可执行文件,您可以:

  • 使用 P/Invoke 从 Web 或辅助角色调用 FORTRAN 库 生成一个
  • 从 Web 或辅助角色运行 FORTRAN 可执行文件的子进程

在这两种情况下您需要在 ServiceDefinition 文件中为 Web 或辅助角色设置属性 enableNativeCodeExecution="true"

上面的完整示例是 FullTrust 示例

Assuming that your FORTRAN code is compliled to a dll library or an executable file you may :

  • Use P/Invoke to call the FORTRAN library from a web or worker role
  • Spawn a subproccess that runs the FORTRAN executable from a web or worker role

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

撩心不撩汉 2024-08-17 12:22:34

对于相当简单的程序,您可以使用 Fortran Online (免费)

For rather simple programs you can use Fortran Online (free)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文