This list is closed, nobody may subscribe to it.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
(5) |
2009 |
Jan
(5) |
Feb
(1) |
Mar
(3) |
Apr
(4) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
(8) |
Oct
|
Nov
(1) |
Dec
(13) |
2010 |
Jan
|
Feb
(6) |
Mar
(4) |
Apr
(1) |
May
(10) |
Jun
(43) |
Jul
(37) |
Aug
(3) |
Sep
(6) |
Oct
(26) |
Nov
(17) |
Dec
(29) |
2011 |
Jan
(28) |
Feb
(18) |
Mar
(42) |
Apr
(18) |
May
(13) |
Jun
(32) |
Jul
(32) |
Aug
(25) |
Sep
(46) |
Oct
(41) |
Nov
(36) |
Dec
(43) |
2012 |
Jan
(92) |
Feb
(120) |
Mar
(40) |
Apr
(75) |
May
(40) |
Jun
(93) |
Jul
(115) |
Aug
(67) |
Sep
(38) |
Oct
(92) |
Nov
(95) |
Dec
(47) |
2013 |
Jan
(171) |
Feb
(200) |
Mar
(100) |
Apr
(134) |
May
(112) |
Jun
(142) |
Jul
(123) |
Aug
(66) |
Sep
(175) |
Oct
(236) |
Nov
(141) |
Dec
(98) |
2014 |
Jan
(91) |
Feb
(88) |
Mar
(126) |
Apr
(63) |
May
(123) |
Jun
(122) |
Jul
(105) |
Aug
(83) |
Sep
(114) |
Oct
(90) |
Nov
(181) |
Dec
(85) |
2015 |
Jan
(111) |
Feb
(120) |
Mar
(161) |
Apr
(95) |
May
(93) |
Jun
(185) |
Jul
(170) |
Aug
(119) |
Sep
(128) |
Oct
(110) |
Nov
(145) |
Dec
(92) |
2016 |
Jan
(105) |
Feb
(106) |
Mar
(101) |
Apr
(59) |
May
(96) |
Jun
(168) |
Jul
(110) |
Aug
(183) |
Sep
(85) |
Oct
(79) |
Nov
(87) |
Dec
(86) |
2017 |
Jan
(100) |
Feb
(77) |
Mar
(85) |
Apr
(52) |
May
(60) |
Jun
(63) |
Jul
(67) |
Aug
(24) |
Sep
(1) |
Oct
|
Nov
(2) |
Dec
|
From: Bill P. <pa...@ki...> - 2010-06-25 21:01:32
|
On Jun 25, 2010, at 1:46 PM, Eric Blais wrote: > I'm using ifort. Version 11.1.038. well this is looking like a compiler problem, so I'll ask you to update to the most recent ifort 11.1 which I believe is 088. the output that makes me think this is the compiler comes from these lines in load_co_kap allocate(co_tables(num_tables), STAT=status) if (status .ne. 0) then ierr = -1 call alert(ierr, 'InsufficientMemory for Prepare_Kap_CO_X_Table') if (CO_dbg) write(*,*) 'InsufficientMemory for Prepare_Kap_CO_X_Table', iz, ix return end if x_tables(ix)% co_tables => co_tables if (CO_dbg) write(*,*) 'Setup_Kap_CO_X_Table: allocate co_tables', iz, ix, num_tables, status if (CO_dbg) write(*,*) 'Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables)', & associated(x_tables(ix)% co_tables), associated(co_tables), ix Are you familiar with pointers in fortran95? allocate(co_tables(num_tables), STAT=status) allocates storage and sets the pointer co_tables the status == 0 means the allocation was okay x_tables(ix)% co_tables => co_tables copies the pointer so that x_tables(ix)% co_tables points to the same thing as co_tables associated(p) is true if the pointer p points to an allocated structure. in this case x_tables(ix)% co_tables and co_tables should both give true for associated, and that is in fact what I get when I run it but on your machine we get this: Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 so associated(x_tables(ix)% co_tables) is false -- that's bad and very bogus. hopefully a new ifort will do better. let me know. Thanks, Bill |
From: Eric B. <er....@gm...> - 2010-06-25 20:47:07
|
ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_co_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_fixed.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_co.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_lib.f ar crs libkap.a kap_def.o load_co_kap.o load_kap.o kap_eval_support.o kap_eval_fixed.o kap_eval_co.o kap_eval.o kap_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap.f ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_quietly.f ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/plot_kap.f ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem load_one_CO gn93_co_z0m0_x00.data 1 1 T Setup_Kap_CO_X_Table: allocate co_tables 1 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z0m0_x10.data 1 2 T Setup_Kap_CO_X_Table: allocate co_tables 1 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z0m0_x35.data 1 3 T Setup_Kap_CO_X_Table: allocate co_tables 1 3 51 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z0m0_x70.data 1 4 T Setup_Kap_CO_X_Table: allocate co_tables 1 4 32 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m3_x00.data 2 1 T Setup_Kap_CO_X_Table: allocate co_tables 2 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m3_x10.data 2 2 T Setup_Kap_CO_X_Table: allocate co_tables 2 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m3_x35.data 2 3 T Setup_Kap_CO_X_Table: allocate co_tables 2 3 51 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m3_x70.data 2 4 T Setup_Kap_CO_X_Table: allocate co_tables 2 4 30 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z4m3_x00.data 3 1 T Setup_Kap_CO_X_Table: allocate co_tables 3 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z4m3_x10.data 3 2 T Setup_Kap_CO_X_Table: allocate co_tables 3 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z4m3_x35.data 3 3 T Setup_Kap_CO_X_Table: allocate co_tables 3 3 51 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z4m3_x70.data 3 4 T Setup_Kap_CO_X_Table: allocate co_tables 3 4 30 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m2_x00.data 4 1 T Setup_Kap_CO_X_Table: allocate co_tables 4 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m2_x10.data 4 2 T Setup_Kap_CO_X_Table: allocate co_tables 4 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m2_x35.data 4 3 T Setup_Kap_CO_X_Table: allocate co_tables 4 3 51 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m2_x70.data 4 4 T Setup_Kap_CO_X_Table: allocate co_tables 4 4 30 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z2m2_x00.data 5 1 T Setup_Kap_CO_X_Table: allocate co_tables 5 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z2m2_x10.data 5 2 T Setup_Kap_CO_X_Table: allocate co_tables 5 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z2m2_x35.data 5 3 T Setup_Kap_CO_X_Table: allocate co_tables 5 3 51 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z2m2_x70.data 5 4 T Setup_Kap_CO_X_Table: allocate co_tables 5 4 30 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z3m2_x00.data 6 1 T Setup_Kap_CO_X_Table: allocate co_tables 6 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z3m2_x10.data 6 2 T Setup_Kap_CO_X_Table: allocate co_tables 6 2 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z3m2_x35.data 6 3 T Setup_Kap_CO_X_Table: allocate co_tables 6 3 49 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z3m2_x70.data 6 4 T Setup_Kap_CO_X_Table: allocate co_tables 6 4 30 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m1_x00.data 7 1 T Setup_Kap_CO_X_Table: allocate co_tables 7 1 58 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m1_x10.data 7 2 T Setup_Kap_CO_X_Table: allocate co_tables 7 2 53 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m1_x35.data 7 3 T Setup_Kap_CO_X_Table: allocate co_tables 7 3 43 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m1_x70.data 7 4 T Setup_Kap_CO_X_Table: allocate co_tables 7 4 26 0 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F T 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 FAILED /home/blaiseri/mesa/kap/test TEST FAILED -- compare test_output to tmp.txt |
From: Eric B. <er....@gm...> - 2010-06-25 19:37:48
|
ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_co_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_fixed.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_co.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_lib.f ar crs libkap.a kap_def.o load_co_kap.o load_kap.o kap_eval_support.o kap_eval_fixed.o kap_eval_co.o kap_eval.o kap_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap.f ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_quietly.f ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/plot_kap.f ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem load_one_CO gn93_co_z0m0_x00.data 1 1 T Setup_Kap_CO_X_Table: allocate co_tables 1 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z0m0_x10.data 1 2 T Setup_Kap_CO_X_Table: allocate co_tables 1 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z0m0_x35.data 1 3 T Setup_Kap_CO_X_Table: allocate co_tables 1 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z0m0_x70.data 1 4 T Setup_Kap_CO_X_Table: allocate co_tables 1 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m3_x00.data 2 1 T Setup_Kap_CO_X_Table: allocate co_tables 2 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m3_x10.data 2 2 T Setup_Kap_CO_X_Table: allocate co_tables 2 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m3_x35.data 2 3 T Setup_Kap_CO_X_Table: allocate co_tables 2 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m3_x70.data 2 4 T Setup_Kap_CO_X_Table: allocate co_tables 2 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z4m3_x00.data 3 1 T Setup_Kap_CO_X_Table: allocate co_tables 3 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z4m3_x10.data 3 2 T Setup_Kap_CO_X_Table: allocate co_tables 3 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z4m3_x35.data 3 3 T Setup_Kap_CO_X_Table: allocate co_tables 3 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z4m3_x70.data 3 4 T Setup_Kap_CO_X_Table: allocate co_tables 3 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m2_x00.data 4 1 T Setup_Kap_CO_X_Table: allocate co_tables 4 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m2_x10.data 4 2 T Setup_Kap_CO_X_Table: allocate co_tables 4 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m2_x35.data 4 3 T Setup_Kap_CO_X_Table: allocate co_tables 4 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m2_x70.data 4 4 T Setup_Kap_CO_X_Table: allocate co_tables 4 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z2m2_x00.data 5 1 T Setup_Kap_CO_X_Table: allocate co_tables 5 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z2m2_x10.data 5 2 T Setup_Kap_CO_X_Table: allocate co_tables 5 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z2m2_x35.data 5 3 T Setup_Kap_CO_X_Table: allocate co_tables 5 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z2m2_x70.data 5 4 T Setup_Kap_CO_X_Table: allocate co_tables 5 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z3m2_x00.data 6 1 T Setup_Kap_CO_X_Table: allocate co_tables 6 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z3m2_x10.data 6 2 T Setup_Kap_CO_X_Table: allocate co_tables 6 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z3m2_x35.data 6 3 T Setup_Kap_CO_X_Table: allocate co_tables 6 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z3m2_x70.data 6 4 T Setup_Kap_CO_X_Table: allocate co_tables 6 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 load_one_CO gn93_co_z1m1_x00.data 7 1 T Setup_Kap_CO_X_Table: allocate co_tables 7 1 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 1 after Setup_Kap_CO_X_Table: associated co_tables F 1 load_one_CO gn93_co_z1m1_x10.data 7 2 T Setup_Kap_CO_X_Table: allocate co_tables 7 2 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 2 after Setup_Kap_CO_X_Table: associated co_tables F 2 load_one_CO gn93_co_z1m1_x35.data 7 3 T Setup_Kap_CO_X_Table: allocate co_tables 7 3 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 3 after Setup_Kap_CO_X_Table: associated co_tables F 3 load_one_CO gn93_co_z1m1_x70.data 7 4 T Setup_Kap_CO_X_Table: allocate co_tables 7 4 Setup_Kap_CO_X_Table: associated(x_tables(ix)% co_tables) F 4 after Setup_Kap_CO_X_Table: associated co_tables F 4 FAILED /home/blaiseri/mesa/kap/test TEST FAILED -- compare test_output to tmp.txt |
From: Eric B. <er....@gm...> - 2010-06-25 18:43:30
|
ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_co_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_fixed.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_co.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_lib.f ar crs libkap.a kap_def.o load_co_kap.o load_kap.o kap_eval_support.o kap_eval_fixed.o kap_eval_co.o kap_eval.o kap_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap.f ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_quietly.f ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/plot_kap.f ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem loading gn93_co_z0m0_x00.data 1 1 allocate co_tables 1 1 loading gn93_co_z0m0_x10.data 1 2 allocate co_tables 1 2 loading gn93_co_z0m0_x35.data 1 3 allocate co_tables 1 3 loading gn93_co_z0m0_x70.data 1 4 allocate co_tables 1 4 loading gn93_co_z1m3_x00.data 2 1 allocate co_tables 2 1 loading gn93_co_z1m3_x10.data 2 2 allocate co_tables 2 2 loading gn93_co_z1m3_x35.data 2 3 allocate co_tables 2 3 loading gn93_co_z1m3_x70.data 2 4 allocate co_tables 2 4 loading gn93_co_z4m3_x00.data 3 1 allocate co_tables 3 1 loading gn93_co_z4m3_x10.data 3 2 allocate co_tables 3 2 loading gn93_co_z4m3_x35.data 3 3 allocate co_tables 3 3 loading gn93_co_z4m3_x70.data 3 4 allocate co_tables 3 4 loading gn93_co_z1m2_x00.data 4 1 allocate co_tables 4 1 loading gn93_co_z1m2_x10.data 4 2 allocate co_tables 4 2 loading gn93_co_z1m2_x35.data 4 3 allocate co_tables 4 3 loading gn93_co_z1m2_x70.data 4 4 allocate co_tables 4 4 loading gn93_co_z2m2_x00.data 5 1 allocate co_tables 5 1 loading gn93_co_z2m2_x10.data 5 2 allocate co_tables 5 2 loading gn93_co_z2m2_x35.data 5 3 allocate co_tables 5 3 loading gn93_co_z2m2_x70.data 5 4 allocate co_tables 5 4 loading gn93_co_z3m2_x00.data 6 1 allocate co_tables 6 1 loading gn93_co_z3m2_x10.data 6 2 allocate co_tables 6 2 loading gn93_co_z3m2_x35.data 6 3 allocate co_tables 6 3 loading gn93_co_z3m2_x70.data 6 4 allocate co_tables 6 4 loading gn93_co_z1m1_x00.data 7 1 allocate co_tables 7 1 loading gn93_co_z1m1_x10.data 7 2 allocate co_tables 7 2 loading gn93_co_z1m1_x35.data 7 3 allocate co_tables 7 3 loading gn93_co_z1m1_x70.data 7 4 allocate co_tables 7 4 FAILED /home/blaiseri/mesa/kap/test TEST FAILED -- compare test_output to tmp.txt |
From: Eric B. <er....@gm...> - 2010-06-25 17:49:13
|
ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_co_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/load_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_fixed.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval_co.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/kap_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/kap_lib.f ar crs libkap.a kap_def.o load_co_kap.o load_kap.o kap_eval_support.o kap_eval_fixed.o kap_eval_co.o kap_eval.o kap_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap.f ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_quietly.f ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/plot_kap.f ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem /home/blaiseri/mesa/kap/test FAILED forrtl: severe (193): Run-Time Check Failure. The variable 'kap_eval_support_mp_conduction_opacity_$LOGRHO' is being used without being defined Image PC Routine Line Source test_quietly 000000000061834D Unknown Unknown Unknown test_quietly 0000000000616E55 Unknown Unknown Unknown test_quietly 00000000005C30B9 Unknown Unknown Unknown test_quietly 0000000000581918 Unknown Unknown Unknown test_quietly 00000000005822D8 Unknown Unknown Unknown test_quietly 0000000000446656 kap_eval_support_ 367 kap_eval_support.f test_quietly 00000000004378EA kap_eval_fixedget 702 kap_eval_fixed.f test_quietly 0000000000437011 kap_eval_fixed_mp 688 kap_eval_fixed.f test_quietly 0000000000434A3A kap_eval_fixed_mp 359 kap_eval_fixed.f test_quietly 000000000043316C kap_eval_fixed_mp 75 kap_eval_fixed.f test_quietly 000000000042267D kap_eval_mp_get_k 88 kap_eval.f test_quietly 00000000004160D6 kap_lib_mp_kap_ge 164 kap_lib.f test_quietly 00000000004040BC test_kap_support_ 115 test_kap_support.f test_quietly 0000000000403D14 test_kap_support_ 49 test_kap_support.f test_quietly 0000000000415EB3 MAIN__ 7 test_kap_quietly.f test_quietly 0000000000403BEC Unknown Unknown Unknown libc.so.6 00000030C381D994 Unknown Unknown Unknown test_quietly 0000000000403AF9 Unknown Unknown Unknown |
From: Eric B. <er....@gm...> - 2010-06-25 16:40:13
|
Hi, Here's what I get: forrtl: severe (174): SIGSEGV, segmentation fault occurred > Image PC Routine Line > Source > tester 00000000004218A8 load_co_kap_mp_re 515 > load_co_kap.f > tester 000000000041FE89 load_co_kapprepar 388 > load_co_kap.f > tester 000000000041E579 load_co_kap_mp_pr 209 > load_co_kap.f > tester 0000000000424F20 load_co_kap_mp_lo 95 > load_co_kap.f > tester 0000000000429532 kap_eval_co_mp_ge 648 > kap_eval_co.f > tester 0000000000428C08 kap_eval_co_mp_ge 373 > kap_eval_co.f > tester 00000000004281FF kap_eval_co_mp_ge 107 > kap_eval_co.f > tester 000000000041D1E5 kap_eval_mp_get_k 96 > kap_eval.f > tester 00000000004161B5 kap_lib_mp_kap_ge 196 > kap_lib.f > tester 0000000000404041 test_kap_support_ 111 > test_kap_support.f > tester 0000000000403C7C test_kap_support_ 38 > test_kap_support.f > tester 0000000000415EB3 MAIN__ 6 > test_kap.f > tester 0000000000403BEC Unknown Unknown Unknown > libc.so.6 00000030C381D994 Unknown Unknown Unknown > tester 0000000000403AF9 Unknown Unknown Unknown > Out of curiosity I ran rn again and it actually got a bit further this time: test number 1 fixed metals logT 6.0000000000000000E+00 logRho -6.0000000000000000E+00 zbase 1.0000000000000000E-02 xh 6.9999999999999996E-01 dxc 0.0000000000000000E+00 dxo 0.0000000000000000E+00 log10kap -4.4899999621474185E-01 dlnkap_dlnRho 1.9495729357004166E-02 dlnkap_dlnT 2.8335783630609512E-02 kap 3.5563132166862488E-01 dkap_dlnd 6.9332919981252017E-03 dkap_dlnT 1.0077092183069847E-02 forrtl: severe (174): SIGSEGV, segmentation fault occurred Image PC Routine Line Source tester 00000000004218A8 load_co_kap_mp_re 515 load_co_kap.f tester 000000000041FE89 load_co_kapprepar 388 load_co_kap.f tester 000000000041E579 load_co_kap_mp_pr 209 load_co_kap.f tester 0000000000424F20 load_co_kap_mp_lo 95 load_co_kap.f tester 0000000000429532 kap_eval_co_mp_ge 648 kap_eval_co.f tester 0000000000428C08 kap_eval_co_mp_ge 373 kap_eval_co.f tester 00000000004281FF kap_eval_co_mp_ge 107 kap_eval_co.f tester 000000000041D1E5 kap_eval_mp_get_k 96 kap_eval.f tester 00000000004161B5 kap_lib_mp_kap_ge 196 kap_lib.f tester 0000000000404041 test_kap_support_ 111 test_kap_support.f tester 0000000000403C7C test_kap_support_ 38 test_kap_support.f tester 0000000000415EB3 MAIN__ 6 test_kap.f tester 0000000000403BEC Unknown Unknown Unknown libc.so.6 00000030C381D994 Unknown Unknown Unknown tester 0000000000403AF9 Unknown Unknown Unknown Sadly, running it again doesn't improve the situation further. Cheers, Eric Blais On Fri, Jun 25, 2010 at 11:54 AM, Bill Paxton <pa...@ki...> wrote: > > On Jun 25, 2010, at 7:59 AM, Eric Blais wrote: > > > <log.txt> > > Hi, > > Thanks for sending the log. Please do this: > > cd mesa/kap/test > ./rn > > Then send the terminal output from that. > We need to find out what is causing the "FAILED" message. > > Thanks, > Bill > > > |
From: Bill P. <pa...@ki...> - 2010-06-25 15:49:57
|
Hi Max, Thanks for the information. You have probably uncovered a bug in mesa, now we just need to track it down! The likely cause is the use of an uninitialized variable that gets a value from whatever was left on the stack from previous calls. With a single thread, the bogus value is always the same, but with multithreads it can be different from one run to the next producing inconsistent results. Would you like to track it down? It is an interesting exercise (if you are a bit masochistic!). The search is done by selectively commenting out the OpenMP parallel directives for loops until you find one that seems to be responsible. Usually this turns up a place where there is an uninitialized variable that has escaped the compiler tests. However I have run into cases where it was a compiler problem -- that might be the case here since you don't see anything with ifort. In that case, we can try to extract a simple test case so the compiler team can look for the problem. And of course we can look for a way to rewrite the code that dodges the compiler bug while we wait for a fix. If you are sensible, you will of course turn down this offer! But if you would like to give it a shot, let me know and I'll be happy to provide coaching. ; - ) Thanks, Bill On Jun 25, 2010, at 8:28 AM, Max Katz wrote: > On one computer I had the Intel compiler, version 11.1; when I ran the test, I got the same results every time, regardless of how many cores were available for use (I tried 1, 2 and 4). However, when I ran the test on the machine using gfortran 4.5.1, I got inconsistent results. Each entry in the table lists the model number (how many timesteps it took to get to the peak eps_nuc level), the age of the star at the peak generation rate, and what that rate actually was. As you can see, I got different results for different numbers of threads, and even found inconsistency while holding the number of threads constant. This seems to indicate that there is some arithmetic precision issue involved that relates either to gfortran itself, or its interaction with OpenMP. > > I am not sure exactly what has caused the issue, but I thought I should at least warn other users of this issue; it is not a startling amount of error, but it is certainly something of which to take note. |
From: Eric B. <er....@gm...> - 2010-06-25 14:59:30
|
checking if ndiff is installed ... yes! /home/blaiseri/mesa/const building const package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/const_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/const_lib.f ar crs libconst.a const_def.o const_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_const.f ifort -openmp -threads -o ../tester test_const.o -L../../make -lconst export done mesa const has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/alert building alert package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/alert_lib.f ar crs libalert.a alert_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_alert.f ifort -openmp -threads -o ../tester test_alert.o -L../../make -lalert -L../../../lib export done mesa alert has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/utils building utils package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/utils_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/utils_isnan_okay.f ifort -vec-report0 -traceback -error-limit 6 -warn all -warn nounused -openmp -threads -I../public -I../private -I../../include -c -free ../private/utils_nan.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/utils_dict.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/utils_lib.f ar crs libutils.a utils_isnan_okay.o utils_nan.o utils_dict.o utils_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_utils.f ifort -openmp -threads -o ../tester test_utils.o -L../../make -lutils -L../../../lib -lalert export done mesa utils has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/mtx building mtx package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/mtx_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/mtx_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/mtx_block_tridiagonal.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/blassm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/formats.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/ilut.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/infofun.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/matvec.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/inout.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../sparskit_src/unary.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../mkl_pardiso_src/mod_mkl_pardiso_stub.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/mtx_lib.f ar crs libmtx.a mtx_support.o mtx_block_tridiagonal.o blassm.o formats.o ilut.o infofun.o matvec.o inout.o unary.o mod_mkl_pardiso_stub.o mtx_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dgemm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dtrsm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/xerbla.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/lsame.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dger.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dcopy.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dgemv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dtbsv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/daxpy.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/ddot.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dgbmv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dasum.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dtrsv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dscal.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/dswap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/idamax.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/strsm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/sgemm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/slamch.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/isamax.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/sswap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/sscal.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/sger.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/zaxpy.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/zdotc.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/zgerc.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/zhemv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/zher2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/ztrsv.f ar crs libmesablas.a dgemm.o dtrsm.o xerbla.o lsame.o dger.o dcopy.o dgemv.o dtbsv.o daxpy.o ddot.o dgbmv.o dasum.o dtrsv.o dscal.o dswap.o idamax.o strsm.o sgemm.o slamch.o isamax.o sswap.o sscal.o sger.o zaxpy.o zdotc.o zgerc.o zhemv.o zher2.o ztrsv.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbcon.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbequ.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbrfs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbsv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbsvx.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbtf2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbtrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgbtrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgecon.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgeequ.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgerfs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgesv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgesvx.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgetf2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgetrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgetrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgtcon.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgtrfs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgtsvx.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgttrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgttrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dgtts2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlacn2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlabad.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlacpy.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlagtm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlangb.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlange.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlangt.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlantb.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlantr.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlaqgb.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlaqge.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlassq.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlaswp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlatbs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dlatrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/drscl.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/sgesv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/sgetf2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/sgetrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/sgetrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/slaswp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgbtrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgbtrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgetrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgetrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgetf2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zlaswp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zlacgv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zswap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgeru.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/ztbsv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgemv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/ztrsm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgbtf2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/izamax.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgttrf.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgttrs.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgtts2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zscal.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zcopy.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/zgemm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../lapack_src/dcabs1.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/ilaenv.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -fixed -132 -c -w ../blas_src/dlamch.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 -w ../blas_src/ieeeck.f ar crs libmesalapack.a dgbcon.o dgbequ.o dgbrfs.o dgbsv.o dgbsvx.o dgbtf2.o dgbtrf.o dgbtrs.o dgecon.o dgeequ.o dgerfs.o dgesv.o dgesvx.o dgetf2.o dgetrf.o dgetrs.o dgtcon.o dgtrfs.o dgtsvx.o dgttrf.o dgttrs.o dgtts2.o dlacn2.o dlabad.o dlacn2.o dlacpy.o dlagtm.o dlangb.o dlange.o dlangt.o dlantb.o dlantr.o dlaqgb.o dlaqge.o dlassq.o dlaswp.o dlatbs.o dlatrs.o drscl.o sgesv.o sgetf2.o sgetrf.o sgetrs.o slaswp.o zgbtrf.o zgbtrs.o zgetrf.o zgetrs.o zgetf2.o zlaswp.o zlacgv.o zswap.o zgeru.o ztbsv.o zgemv.o ztrsm.o zgbtf2.o izamax.o zgttrf.o zgttrs.o zgtts2.o zscal.o zcopy.o zgemm.o dcabs1.o ilaenv.o dlamch.o ieeeck.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/lu_test.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_sparskit.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_mtx.f ifort -openmp -threads -o ../tester lu_test.o test_sparskit.o test_mtx.o -L../../make -lmtx -L../../../lib -lmesalapack -lmesablas -lutils -lalert export done mesa mtx has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/num building num package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../public/num_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_dop853.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_dopri5.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../private/mod_cash_karp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_dc_decsol.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_rosenbrock.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_sodex.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_seulex.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c ../private/mod_radau5.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../private/mod_root.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../private/mod_solout_root.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -fixed -132 -c -heap-arrays ../private/mod_newton.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../public/mebdfi_solver_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../private/mebdfi_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../private/mebdfi_stiff.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -fixed -132 ../public/num_lib.f ar crs libnum.a mod_dop853.o mod_dopri5.o mod_cash_karp.o mod_dc_decsol.o mod_rosenbrock.o mod_sodex.o mod_seulex.o mod_radau5.o mod_root.o mod_solout_root.o mod_newton.o mebdfi_solver_def.o mebdfi_support.o mebdfi_stiff.o num_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_int_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_beam.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_beam.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_chemakzo.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_chemakzo.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_hires.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_hires.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_emep.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_emep.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_medakzo.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_medakzo.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_pollu.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_pollu.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_rober.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_rober.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_transamp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_vdpol.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_vdpol.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_vdpol3.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_vdpol3.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_vdpol_x.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_vdpol_x.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -O2 -c -fixed -132 ../src/bari_vdpol3_x.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_vdpol3_x.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_diffusion.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_mix.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -fixed -132 -g -c -I../../make -I../../public -I../../../include ../src/decsol.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -fixed -132 -g -c -I../../make -I../../public -I../../../include ../src/dc_decsol.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../../include -fixed -132 -g -c -I../../make -I../../public -I../../../include ../src/rodas.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_newton.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_mebdfi.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_num.f ifort -openmp -threads -o ../tester test_support.o test_int_support.o bari_beam.o test_beam.o bari_chemakzo.o test_chemakzo.o bari_hires.o test_hires.o bari_emep.o test_emep.o bari_medakzo.o test_medakzo.o bari_pollu.o test_pollu.o bari_rober.o test_rober.o test_transamp.o bari_vdpol.o test_vdpol.o bari_vdpol3.o test_vdpol3.o bari_vdpol_x.o test_vdpol_x.o bari_vdpol3_x.o test_vdpol3_x.o test_diffusion.o test_mix.o decsol.o dc_decsol.o rodas.o test_newton.o test_mebdfi.o test_num.o -L../../make -lnum -L../../../lib -lmtx -lmesalapack -lmesablas -lalert -lutils -lconst ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/sample_ode_solver.f ifort -openmp -threads -o ../sample sample_ode_solver.o -L../../make -lnum -L../../../lib -lmtx -lmesalapack -lmesablas -lalert -lutils -lconst export done mesa num has been made, tested, and exported. ************************************************ ************************************************ ************************************************ ************************************************ installation of mtx and num modules was successful. ************************************************ ************************************************ ************************************************ /home/blaiseri/mesa/interp_1d building interp_1d package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/interp_1d_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_misc.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_pm.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_mp.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_misc_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_pm_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/interp_1d_mp_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/interp_1d_lib.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/interp_1d_lib_sg.f ar crs libinterp_1d.a interp_1d_misc.o interp_1d_pm.o interp_1d_mp.o interp_1d_misc_sg.o interp_1d_pm_sg.o interp_1d_mp_sg.o interp_1d_lib.o interp_1d_lib_sg.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/interp_1d_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/interp_1d_support_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_interp_1d.f ifort -openmp -threads -o ../tester interp_1d_support.o interp_1d_support_sg.o test_interp_1d.o -L../../make -linterp_1d -L../../../lib -lalert -lconst ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plot_interp_1d.f ifort -openmp -threads -o ../plotter interp_1d_support.o plot_interp_1d.o -L../../make -linterp_1d -L../../../lib -lalert -lconst export done mesa interp_1d has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/interp_2d building interp_2d package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bicub_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bicub_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bicub_db1.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bicub_db2.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bicub_db3.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bipm_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/bipm_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/akima760_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/akima760_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/renka790_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c -fixed -132 ../private/renka790_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/interp_2d_lib_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/interp_2d_lib_sg.f ar crs libinterp_2d.a bicub_sg.o bicub_db.o bicub_db1.o bicub_db2.o bicub_db3.o bipm_db.o bipm_sg.o akima760_sg.o akima760_db.o renka790_sg.o renka790_db.o interp_2d_lib_db.o interp_2d_lib_sg.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_renka790_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_renka790_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_akima_sg.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_akima_db.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/interp_2d_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_interp_2d.f ifort -openmp -threads -o ../tester test_renka790_sg.o test_renka790_db.o test_akima_sg.o test_akima_db.o interp_2d_support.o test_interp_2d.o -L../../make -linterp_2d -L../../../lib -lnum -linterp_1d -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plot_interp_2d.f ifort -openmp -threads -o ../plotter interp_2d_support.o plot_interp_2d.o -L../../make -linterp_2d -L../../../lib -lnum -linterp_1d -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas export done mesa interp_2d has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/chem building chem package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/chem_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/nuclide_set_mod.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/chem_isos_io.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/chem_lib.f ar crs libchem.a chem_def.o nuclide_set_mod.o chem_isos_io.o chem_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_chem.f ifort -openmp -threads -o ../tester test_chem.o -L../../make -lchem -L../../../lib -lutils -lalert export done mesa/chem has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/colors building colors package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/colors_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/mod_colors.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/colors_lib.f ar crs libcolors.a colors_def.o mod_colors.o colors_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_colors.f ifort -openmp -threads -o ../tester test_colors.o -L../../make -lcolors -L../../../lib -lutils -lalert export done mesa/colors has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/eos building eos package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/eos_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -O2 -c ../private/potekhin_09.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/gauss_fermi.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/helm_alloc.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/helm_core.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/eosDT_load_tables.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/eosPT_load_tables.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/eosDT_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/eosPT_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../private/eos_initialize.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/eos_lib.f ar crs libeos.a eos_def.o potekhin_09.o gauss_fermi.o helm_alloc.o helm_core.o eosDT_load_tables.o eosPT_load_tables.o eosDT_eval.o eosPT_eval.o eos_initialize.o eos_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/eos_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plot_eosDT.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plot_eosQT.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plot_eosPT.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/plotter.f ifort -openmp -threads -o ../plotter eos_support.o plot_eosDT.o plot_eosQT.o plot_eosPT.o plotter.o -L../../make -leos -L../../../lib -lchem -lnum -lmtx -lmesalapack -lmesablas -lalert -linterp_2d -linterp_1d -lutils -lconst ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_eos_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_eos.f ifort -openmp -threads -o ../tester eos_support.o test_eos_support.o test_eos.o -L../../make -leos -L../../../lib -lchem -lnum -lmtx -lmesalapack -lmesablas -lalert -linterp_2d -linterp_1d -lutils -lconst ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/test_eos_quietly.f ifort -openmp -threads -o ../test_quietly eos_support.o test_eos_support.o test_eos_quietly.o -L../../make -leos -L../../../lib -lchem -lnum -lmtx -lmesalapack -lmesablas -lalert -linterp_2d -linterp_1d -lutils -lconst ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -fixed -132 ../src/sample_eos.f ifort -openmp -threads -o ../sample sample_eos.o -L../../make -leos -L../../../lib -lchem -lnum -lmtx -lmesalapack -lmesablas -lalert -linterp_2d -linterp_1d -lutils -lconst export done mesa/eos has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/other_eos building other_eos package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/other_eos_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/other_eos_initialize.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../private/other_eos_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -check uninit -check pointers -check bounds -check all -O2 -g -c -free ../public/other_eos_lib.f ar crs libother_eos.a other_eos_def.o other_eos_initialize.o other_eos_eval.o other_eos_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_other_eos.f ifort -openmp -threads -o ../tester test_other_eos.o -L../../make -lother_eos -L../../../lib -leos -lchem -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas export done mesa/other_eos has been made, tested, and exported. ************************************************ /home/blaiseri/mesa/kap building kap package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../public/kap_def.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/load_co_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/load_kap.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/kap_eval_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/kap_eval_fixed.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/kap_eval_co.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../private/kap_eval.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -free ../public/kap_lib.f ar crs libkap.a kap_def.o load_co_kap.o load_kap.o kap_eval_support.o kap_eval_fixed.o kap_eval_co.o kap_eval.o kap_lib.o ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_support.f ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap.f ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/test_kap_quietly.f ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../../make -I../../public -I../../../include -check uninit -check pointers -check bounds -check all -g -c -free ../src/plot_kap.f ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem FAILED /home/blaiseri/mesa/kap/test TEST FAILED -- compare test_output to tmp.txt |
From: Marcin @ a. <ast...@o2...> - 2010-06-25 14:57:57
|
Yeap, If you don't have ifort you need to use gfortran like Max just said. However g77 would be to old to compile mesa. Take a look at the page _http://gcc.gnu.org/wiki/GFortranBinaries_ and use the latest gfortran. BR Marcin Mackiewicz On 2010-06-25 16:34, Max Katz wrote: > Forgot to click reply all. > > Max Katz > Rensselaer Polytechnic Institute > Physics, Class of 2011 > > > On Fri, Jun 25, 2010 at 10:32 AM, Max Katz <ka...@rp... > <mailto:ka...@rp...>> wrote: > > Michelle, > > My first guess is that when you did the update, the file > mesa/utils/makefile_header was overwritten, or something; I say > that because by default, the install file assumes that the Intel > compiler is installed on your system, and you have to manually > edit makefile_header to choose gfortran as your compiler of choice > (it's clear, from the comments in the file, how to do that). Your > file should look like: > > ################################################################# > > > # step 1) specify your compiler > > # pick one of the following options: > > # BTW: ifort should be your first choice, > # followd by gfortran is you don't have ifort. > # other compilers might work, but aren't supported. > > > # ifort > # FC = ifort > # NOTE: mesa needs version 11.1 or higher of ifort. > > # gfortran > FC = gfortran > # NOTE: mesa needs version 4.5.0 or higher of gfortran. > > > > # if you need special flags for the compiler, define them here: > SPECIAL_FC_FLAGS = > > > > > ################################################################# > > Max Katz > Rensselaer Polytechnic Institute > Physics, Class of 2011 > > > On Fri, Jun 25, 2010 at 10:26 AM, Michelle Dolan <md...@nd... > <mailto:md...@nd...>> wrote: > > Hello, > > I'm attempting to install the update. Using svn -r 2469 > update, then ./clean and everything is fine. After trying to > do ./install I get this: > > checking if ndiff is installed ... > yes! > > /Users/shelley/Research/MESA2469/mesa/const > building const package. > > ifort -vec-report0 -traceback -error-limit 6 -openmp > -threads -I../public -I../private -I../../include -warn all > -warn nounused -implicitnone -O2 -c -fixed -132 > ../public/const_def.f > make: ifort: Command not found > make: *** [const_def.o] Error 127 > > /Users/shelley/Research/MESA2469/mesa/const/make > FAILED > > > I'm running on a MacBook and do have gfortran and g77, but not > f77 or ifort. > > ~MDolan > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > mesa-users mailing list > mes...@li... > <mailto:mes...@li...> > https://lists.sourceforge.net/lists/listinfo/mesa-users > > > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > mesa-users mailing list > mes...@li... > https://lists.sourceforge.net/lists/listinfo/mesa-users |
From: Marcin @ a. <ast...@o2...> - 2010-06-25 14:52:22
|
Hi, I think this error occurs because your shell does not recognize ifort command. Try to give such a commend in your shell: ln -s /your/ifort/installation/directory /your/shell/commands/directory i.e. ln -s /opt/intel/Compiler/11.1/064/bin/ia32/ifort /usr/bin or go to this line in mesa/utils/makefile_header: ifeq ($(FC),ifort) and replace "ifort" with a full path to your ifort executable. In my makefile_header file it looks like this: ifeq ($(FC),/opt/intel/Compiler/11.1/064/bin/ia32/ifort) I hope it will fix this issue. BR Marcin Mackiewicz On 2010-06-25 16:26, Michelle Dolan wrote: > Hello, > > I'm attempting to install the update. Using svn -r 2469 update, then > ./clean and everything is fine. After trying to do ./install I get this: > > checking if ndiff is installed ... > yes! > > /Users/shelley/Research/MESA2469/mesa/const > building const package. > > ifort -vec-report0 -traceback -error-limit 6 -openmp -threads > -I../public -I../private -I../../include -warn all -warn nounused > -implicitnone -O2 -c -fixed -132 ../public/const_def.f > make: ifort: Command not found > make: *** [const_def.o] Error 127 > > /Users/shelley/Research/MESA2469/mesa/const/make > FAILED > > > I'm running on a MacBook and do have gfortran and g77, but not f77 or > ifort. > > ~MDolan > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > mesa-users mailing list > mes...@li... > https://lists.sourceforge.net/lists/listinfo/mesa-users |
From: Max K. <ka...@rp...> - 2010-06-25 14:34:47
|
Forgot to click reply all. Max Katz Rensselaer Polytechnic Institute Physics, Class of 2011 On Fri, Jun 25, 2010 at 10:32 AM, Max Katz <ka...@rp...> wrote: > Michelle, > > My first guess is that when you did the update, the file > mesa/utils/makefile_header was overwritten, or something; I say that because > by default, the install file assumes that the Intel compiler is installed on > your system, and you have to manually edit makefile_header to choose > gfortran as your compiler of choice (it's clear, from the comments in the > file, how to do that). Your file should look like: > > ################################################################# > > > # step 1) specify your compiler > > # pick one of the following options: > > # BTW: ifort should be your first choice, > # followd by gfortran is you don't have ifort. > # other compilers might work, but aren't supported. > > > # ifort > # FC = ifort > # NOTE: mesa needs version 11.1 or higher of ifort. > > # gfortran > FC = gfortran > # NOTE: mesa needs version 4.5.0 or higher of gfortran. > > > > # if you need special flags for the compiler, define them here: > SPECIAL_FC_FLAGS = > > > > > ################################################################# > > Max Katz > Rensselaer Polytechnic Institute > Physics, Class of 2011 > > > On Fri, Jun 25, 2010 at 10:26 AM, Michelle Dolan <md...@nd...> wrote: > >> Hello, >> >> I'm attempting to install the update. Using svn -r 2469 update, then >> ./clean and everything is fine. After trying to do ./install I get this: >> >> checking if ndiff is installed ... >> yes! >> >> /Users/shelley/Research/MESA2469/mesa/const >> building const package. >> >> ifort -vec-report0 -traceback -error-limit 6 -openmp -threads >> -I../public -I../private -I../../include -warn all -warn nounused >> -implicitnone -O2 -c -fixed -132 ../public/const_def.f >> make: ifort: Command not found >> make: *** [const_def.o] Error 127 >> >> /Users/shelley/Research/MESA2469/mesa/const/make >> FAILED >> >> >> I'm running on a MacBook and do have gfortran and g77, but not f77 or >> ifort. >> >> ~MDolan >> >> >> ------------------------------------------------------------------------------ >> ThinkGeek and WIRED's GeekDad team up for the Ultimate >> GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the >> lucky parental unit. See the prize list and enter to win: >> http://p.sf.net/sfu/thinkgeek-promo >> _______________________________________________ >> mesa-users mailing list >> mes...@li... >> https://lists.sourceforge.net/lists/listinfo/mesa-users >> >> > |
From: Michelle D. <md...@nd...> - 2010-06-25 14:26:49
|
Hello, I'm attempting to install the update. Using svn -r 2469 update, then ./clean and everything is fine. After trying to do ./install I get this: checking if ndiff is installed ... yes! /Users/shelley/Research/MESA2469/mesa/const building const package. ifort -vec-report0 -traceback -error-limit 6 -openmp -threads -I../public -I../private -I../../include -warn all -warn nounused -implicitnone -O2 -c -fixed -132 ../public/const_def.f make: ifort: Command not found make: *** [const_def.o] Error 127 /Users/shelley/Research/MESA2469/mesa/const/make FAILED I'm running on a MacBook and do have gfortran and g77, but not f77 or ifort. ~MDolan |
From: Bill P. <pa...@ki...> - 2010-06-25 14:13:28
|
Hi Eric, I think I finally realize the problem. Please go to the top level mesa directory and do ./install there. That script will install the modules in order so that by the time it gets to kap, all the modules that kap depends on will already be installed. The tmp.txt file is created by running the newly created kap module. It is compared to the file test_output in kap/test -- so test_output is part of the distribution, but tmp.txt is not. Please give it a try and let us know how it goes. Cheers, Bill |
From: Eric B. <er....@gm...> - 2010-06-25 13:52:33
|
Hi, I tried version 2404 and I get the exact same issue. So both 2404 and 2469 have this problem for me. I tried 2341 as well but the compiler fails for another reason (there's some code it doesn't like in some other module). I'm using version 11.1.038 of the intel compiler. Eric Blais On Fri, Jun 25, 2010 at 8:46 AM, Marcin @ astrophysics <ast...@o2...>wrote: > Hi Eric, > > Please try to use the "latest stable" version which is 2469 or maybe a > previous 2404. > Other versions - not marked as stables - might some time not to compile. > > Check if it helped you. > > Marcin Mackiewicz > > > > > On 2010-06-24 23:33, Eric Blais wrote: > > Hi, > > I downloaded the latest version of mesa on June 24th and tried to install > it right away. While installing the kap module I got an error message, > while the installer was trying to compare test_output to tmp.txt Here's a > log of the last attempt I made at installing this module: > > cd kap > ./install > make: `libkap.a' is up to date. > ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o > -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils > -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem > ifort -openmp -threads -o ../test_quietly test_kap_support.o > test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d > -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem > ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o > -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils > -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem > > > FAILED > > > /home/blaiseri/mesa/kap/test > TEST FAILED -- compare test_output to tmp.txt > > > > > > I searched the kap/test folder and I do see test_output but there is no > tmp.txt file anywhere. I presume that it should already be in the folder > before installing, if that's how you check if the modules work fine. Could > this file be missing from the most recent distribution of mesa? If not, do > you know what is the problem? > > Cheers, > Eric Blais > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > mesa-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/mesa-users > > |
From: Marcin @ a. <ast...@o2...> - 2010-06-25 12:47:20
|
Hi Eric, Please try to use the "latest stable" version which is 2469 or maybe a previous 2404. Other versions - not marked as stables - might some time not to compile. Check if it helped you. Marcin Mackiewicz On 2010-06-24 23:33, Eric Blais wrote: > Hi, > > I downloaded the latest version of mesa on June 24th and tried to > install it right away. While installing the kap module I got an error > message, while the installer was trying to compare test_output to > tmp.txt Here's a log of the last attempt I made at installing this > module: > > cd kap > ./install > make: `libkap.a' is up to date. > ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o > -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum > -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem > ifort -openmp -threads -o ../test_quietly test_kap_support.o > test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d > -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack > -lmesablas -leos -lchem > ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o > -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum > -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem > > > FAILED > > > /home/blaiseri/mesa/kap/test > TEST FAILED -- compare test_output to tmp.txt > > > > > > I searched the kap/test folder and I do see test_output but there is > no tmp.txt file anywhere. I presume that it should already be in the > folder before installing, if that's how you check if the modules work > fine. Could this file be missing from the most recent distribution of > mesa? If not, do you know what is the problem? > > Cheers, > Eric Blais > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > mesa-users mailing list > mes...@li... > https://lists.sourceforge.net/lists/listinfo/mesa-users > |
From: Eric B. <er....@gm...> - 2010-06-24 21:33:14
|
Hi, I downloaded the latest version of mesa on June 24th and tried to install it right away. While installing the kap module I got an error message, while the installer was trying to compare test_output to tmp.txt Here's a log of the last attempt I made at installing this module: cd kap ./install make: `libkap.a' is up to date. ifort -openmp -threads -o ../tester test_kap_support.o test_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -openmp -threads -o ../test_quietly test_kap_support.o test_kap_quietly.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem ifort -openmp -threads -o ../plotter test_kap_support.o plot_kap.o -L../../make -lkap -L../../../lib -linterp_2d -linterp_1d -lnum -lutils -lalert -lconst -lmtx -lmesalapack -lmesablas -leos -lchem FAILED /home/blaiseri/mesa/kap/test TEST FAILED -- compare test_output to tmp.txt I searched the kap/test folder and I do see test_output but there is no tmp.txt file anywhere. I presume that it should already be in the folder before installing, if that's how you check if the modules work fine. Could this file be missing from the most recent distribution of mesa? If not, do you know what is the problem? Cheers, Eric Blais |
From: Bill P. <pa...@ki...> - 2010-06-23 04:33:45
|
On Jun 22, 2010, at 9:17 PM, jingluan wrote: > I am trying to install the latest version of MESA (commit 2465) with > gfortran 4.6 without pgstar functionality. While trying to build the > "star" package, installation stops with the error > "make: *** No rule to make target `pgstar_stub.o', needed by `star'. Stop." > What needs to be done? > > Thanks a lot :-) Hi Jing, I need some more information. Is pgstar_stub.f present in mesa/star/private? Also, please send me copies of your makefile_header from utils, the makefile from star/make, and the makefile from star/test/make. Thanks, Bill |
From: jingluan <jin...@ca...> - 2010-06-23 04:17:54
|
I am trying to install the latest version of MESA (commit 2465) with gfortran 4.6 without pgstar functionality. While trying to build the "star" package, installation stops with the error "make: *** No rule to make target `pgstar_stub.o', needed by `star'. Stop." What needs to be done? Thanks a lot :-) Sincerely Jing |
From: Mike Z. <mzi...@sc...> - 2010-06-22 14:02:02
|
Hi Bill and company, I started playing around with the nova test problem in star/test_suite/nova and I have a question about the strategy used here. It seems that the entire white dwarf is modeled, even though the action will be limited to the surface layers. Is this a MESA requirement? or is there a capability to model just the outer portion of the white dwarf and the accreted envelope? For the nova this may not make much of a difference, either physics or computational resource-wise, but if one wanted to try to do X-ray burst models, one may not want to deal with the neutron star interior (and EOS issues / GR). Instead, modeling just the outer portion of the NS with suitable BCs representing the interior would be an easier path. Is was just curious if this were possible currently. Thanks, Mike Zingale ---------------------------------------------------------------------------- Michael Zingale (mzi...@ma...) Assistant Professor Dept. of Physics and Astronomy office: ESS 440 Stony Brook University phone: 631-632-8225 Stony Brook, NY 11794-3800 web: http://www.astro.sunysb.edu/mzingale ---------------------------------------------------------------------------- |
From: Mike Z. <mzi...@sc...> - 2010-06-21 22:05:08
|
Hi Bill and company, I started playing around with the nova test problem in star/test_suite/nova and I have a question about the strategy used here. It seems that the entire white dwarf is modeled, even though the action will be limited to the surface layers. Is this a MESA requirement? or is there a capability to model just the outer portion of the white dwarf and the accreted envelope? For the nova this may not make much of a difference, either physics or computational resource-wise, but if one wanted to try to do X-ray burst models, one may not want to deal with the neutron star interior (and EOS issues / GR). Instead, modeling just the outer portion of the NS with suitable BCs representing the interior would be an easier path. Is was just curious if this were possible currently. Thanks, Mike Zingale ---------------------------------------------------------------------------- Michael Zingale (mzi...@ma...) Assistant Professor Dept. of Physics and Astronomy office: ESS 440 Stony Brook University phone: 631-632-8225 Stony Brook, NY 11794-3800 web: http://www.astro.sunysb.edu/mzingale ---------------------------------------------------------------------------- |
From: Ken S. <ke...@ph...> - 2010-06-19 02:01:26
|
Hi Aaron, thanks for the reply. Unfortunately, that installation was only gfortran 4.4, which yields a crash during the star install (because "procedure components are not yet implemented")... Bill, the link you provided is where I went first, but I think they mislabeled the appropriate file; only the Snow Leopard version exists... Aaron Dotter <aar...@gm...> wrote: >Hi Ken, > >This is usually a good place to look for Mac gfortran: > >http://hpc.sourceforge.net/ > >If you're not sure why the install failed, take a look at mtx/test/tmp.txt. > There may be useful error info there. Also, check to make sure the default >setting are in place in utils/makefile_header. > ><http://hpc.sourceforge.net/>Aaron |
From: Bill P. <pa...@ki...> - 2010-06-19 01:17:20
|
oops -- that second link was supposed to be this: http://quatramaran.ens.fr/~coudert/gfortran/gfortran-macosx-x86.dmg On Jun 18, 2010, at 6:15 PM, Bill Paxton wrote: > Hi Ken, > > I can recommend this site for getting an up-to-date gfortran > > http://gcc.gnu.org/wiki/GFortranBinaries > > for your intel mac, you'll want these: > > http://gcc.gnu.org/wiki/GFortranBinaries > > > -Bill > > |
From: Bill P. <pa...@ki...> - 2010-06-19 01:15:09
|
Hi Ken, I can recommend this site for getting an up-to-date gfortran http://gcc.gnu.org/wiki/GFortranBinaries for your intel mac, you'll want these: http://gcc.gnu.org/wiki/GFortranBinaries -Bill |
From: Aaron D. <aar...@gm...> - 2010-06-19 00:50:13
|
Hi Ken, This is usually a good place to look for Mac gfortran: http://hpc.sourceforge.net/ If you're not sure why the install failed, take a look at mtx/test/tmp.txt. There may be useful error info there. Also, check to make sure the default setting are in place in utils/makefile_header. <http://hpc.sourceforge.net/>Aaron |
From: Ken S. <ke...@ph...> - 2010-06-19 00:46:12
|
Hi all, I'm in the process of installing the current version of MESA, but only have gfortran 4.3. I presume that is why the installation fails during the mtx part; here are the last few lines of the installation: ----------------- gfortran -fopenmp -o ../tester lu_test.o test_sparskit.o test_mtx.o -L../../make -lmtx -L../../../lib -lmesalapack -lmesablas -lutils -lalert FAILED /usr/local/share/mesa/mtx/test TEST FAILED -- compare test_output to tmp.txt ----------------- So I set out to update gfortran, but can't find the relevant binaries anywhere! I'm running Mac OSX 10.5.8 / Intel. The obvious link at http://gcc.gnu.org/wiki/GFortranBinaries#MacOS which claims to work for both Tiger and Leopard actually contains the Snow Leopard binary. I installed just to check, and indeed it does not work for me. I've emailed gfortran's support team but no reponse yet. Anyway, I just wanted to see if anyone out there in MESA-land has a gfortran 4.5 binary for Leopard / Intel. Thanks, Ken |