Re: Windows array allocation problem
- From: "James Van Buskirk" <not_valid@xxxxxxxxxxx>
- Date: Sat, 29 Sep 2007 08:20:32 -0600
"Roy Lewallen" <w7el@xxxxxxxxx> wrote in message
news:13fs9r0of2dfd76@xxxxxxxxxxxxxxxxxxxxx
Any insight would be greatly appreciated!
Windows does this just to torture you. If you can switch to x64, the
problems may abate temporarily:
C:\Program Files\Microsoft Visual Studio 8\James\clf\alloc_test>type
alloc_test.
f90
program alloc_test
implicit none
integer, parameter :: dp = selected_real_kind(15,300)
real(dp), allocatable :: A(:)
integer Istat
allocate(A(1000000000), STAT=Istat)
write(*,*) Istat
end program alloc_test
C:\Program Files\Microsoft Visual Studio 8\James\clf\alloc_test>ifort
alloc_test
..f90
Intel(R) Fortran Compiler for Intel(R) EM64T-based applications, Version 9.1
Build 20061104
Copyright (C) 1985-2006 Intel Corporation. All rights reserved.
Microsoft (R) Incremental Linker Version 8.00.40310.39
Copyright (C) Microsoft Corporation. All rights reserved.
-out:alloc_test.exe
-subsystem:console
alloc_test.obj
C:\Program Files\Microsoft Visual Studio 8\James\clf\alloc_test>alloc_test
0
--
write(*,*) transfer((/17.392111325966148d0,6.5794487871554595D-85, &
6.0134700243160014d-154/),(/'x'/)); end
.
- Follow-Ups:
- Re: Windows array allocation problem
- From: Roy Lewallen
- Re: Windows array allocation problem
- From: Steve Lionel
- Re: Windows array allocation problem
- References:
- Windows array allocation problem
- From: Roy Lewallen
- Windows array allocation problem
- Prev by Date: Re: Windows array allocation problem
- Next by Date: Re: Windows array allocation problem
- Previous by thread: Re: Windows array allocation problem
- Next by thread: Re: Windows array allocation problem
- Index(es):
Relevant Pages
|