Fortran 运行时错误“已修复”通过写入输出

发布于 2024-08-03 03:11:46 字数 236 浏览 5 评论 0原文

我在处理一些用于研究的旧代码时遇到了问题,我想使用英特尔 Fortran 编译器对其进行编译。在特定的子例程中,除非添加仅输出循环索引值的 write 语句,否则我会遇到分段错误。

do j=1,ne

SOME STUFF

write(*,*) 'j=', j

end

是什么导致了我的错误,使得此写入语句可以修复我的分段错误? (注意:j被声明为整数)

谢谢, 基利

I've having trouble with some old code used for research that I would like to compile using the Intel Fortran compiler. In a particular subroutine, I get segmentation faults unless I add in a write statement that just outputs the value of the loop index.

do j=1,ne

SOME STUFF

write(*,*) 'j=', j

end

What could be causing my error such that this write statement would fix my segmentation fault? (Note: j is declared as an integer)

thanks,
keely

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

导致此类错误的经典方法是通过插入写入语句来“修复”:

  1. 走出数组末尾——使用编译器打开边界检查和调试选项来检查这一点;

  2. 提供给子程序的参数与预期参数之间不一致。再次强调,如果可能的话,请使用您的编译器,否则请使用您的眼睛。

其中之一是原因的可能性为 5 比 1。

Classic ways of causing this type of error which is 'fixed' by inserting write statements:

  1. walking off the end of an array -- use your compiler to switch on bounds-checking and debugging options to check for this;

  2. disagreement between arguments provided to a sub-program and arguments expected. Again, use your compiler if possible, your eyes otherwise.

Odds are 5-to-1 that one of these is the cause.

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