1 |
|
C $Header$ |
2 |
|
|
3 |
#include "CPP_OPTIONS.h" |
#include "AUTODIFF_OPTIONS.h" |
4 |
|
|
5 |
c ================================================================== |
c ================================================================== |
6 |
c |
c |
26 |
c o active_write_tile_xy - Write an active 2D variable to a file. |
c o active_write_tile_xy - Write an active 2D variable to a file. |
27 |
c o active_write_tile_xyz - Write an active 3D variable to a file. |
c o active_write_tile_xyz - Write an active 3D variable to a file. |
28 |
c |
c |
|
c |
|
29 |
c changed: Christian Eckert eckert@mit.edu 24-Apr-2000 |
c changed: Christian Eckert eckert@mit.edu 24-Apr-2000 |
30 |
c - Added routines that do active writes on tiles |
c - Added routines that do active writes on tiles |
31 |
c instead of a whole thread. |
c instead of a whole thread. |
233 |
c == end of interface == |
c == end of interface == |
234 |
CEOP |
CEOP |
235 |
|
|
236 |
mynr = 1 |
mynr = nr |
237 |
call active_read_xz_rl( active_var_file, active_var, doglobalread, |
call active_read_xz_rl( active_var_file, active_var, doglobalread, |
238 |
& lAdInit, irec, mynr, |
& lAdInit, irec, mynr, |
239 |
& FORWARD_SIMULATION, myOptimIter, mythid) |
& FORWARD_SIMULATION, myOptimIter, mythid) |
303 |
c == end of interface == |
c == end of interface == |
304 |
CEOP |
CEOP |
305 |
|
|
306 |
mynr = 1 |
mynr = nr |
307 |
call active_read_yz_rl( active_var_file, active_var, doglobalread, |
call active_read_yz_rl( active_var_file, active_var, doglobalread, |
308 |
& lAdInit, irec, mynr, |
& lAdInit, irec, mynr, |
309 |
& FORWARD_SIMULATION, myOptimIter, mythid) |
& FORWARD_SIMULATION, myOptimIter, mythid) |
489 |
c == end of interface == |
c == end of interface == |
490 |
CEOP |
CEOP |
491 |
|
|
492 |
mynr = 1 |
mynr = nr |
493 |
globalfile = .false. |
globalfile = .false. |
494 |
|
|
495 |
call active_write_xz_rl( active_var_file, active_var, globalfile, |
call active_write_xz_rl( active_var_file, active_var, globalfile, |
552 |
c == end of interface == |
c == end of interface == |
553 |
CEOP |
CEOP |
554 |
|
|
555 |
mynr = 1 |
mynr = nr |
556 |
globalfile = .false. |
globalfile = .false. |
557 |
|
|
558 |
call active_write_yz_rl( active_var_file, active_var, globalfile, |
call active_write_yz_rl( active_var_file, active_var, globalfile, |
870 |
|
|
871 |
return |
return |
872 |
end |
end |
873 |
|
|
874 |
|
|