Fortran 运行时错误“已修复”通过写入输出
我在处理一些用于研究的旧代码时遇到了问题,我想使用英特尔 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
导致此类错误的经典方法是通过插入写入语句来“修复”:
走出数组末尾——使用编译器打开边界检查和调试选项来检查这一点;
提供给子程序的参数与预期参数之间不一致。再次强调,如果可能的话,请使用您的编译器,否则请使用您的眼睛。
其中之一是原因的可能性为 5 比 1。
Classic ways of causing this type of error which is 'fixed' by inserting write statements:
walking off the end of an array -- use your compiler to switch on bounds-checking and debugging options to check for this;
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.