| 1 |
C taping -------------------------------------------- |
| 2 |
|
| 3 |
|
| 4 |
subroutine push_s0(x) |
| 5 |
C $OpenAD$ INLINE DECLS |
| 6 |
use OpenAD_tape |
| 7 |
implicit none |
| 8 |
double precision :: x |
| 9 |
C $OpenAD$ END DECLS |
| 10 |
if(oad_dt_sz .lt. oad_dt_ptr) call oad_dt_grow() |
| 11 |
oad_dt(oad_dt_ptr)=x; oad_dt_ptr=oad_dt_ptr+1 |
| 12 |
end subroutine |
| 13 |
|
| 14 |
subroutine pop_s0(x) |
| 15 |
C $OpenAD$ INLINE DECLS |
| 16 |
use OpenAD_tape |
| 17 |
implicit none |
| 18 |
double precision :: x |
| 19 |
C $OpenAD$ END DECLS |
| 20 |
oad_dt_ptr=oad_dt_ptr-1 |
| 21 |
x=oad_dt(oad_dt_ptr) |
| 22 |
end subroutine |
| 23 |
|
| 24 |
subroutine apush(x) |
| 25 |
C $OpenAD$ INLINE DECLS |
| 26 |
use OpenAD_tape |
| 27 |
implicit none |
| 28 |
type(active) :: x |
| 29 |
C $OpenAD$ END DECLS |
| 30 |
if(oad_dt_sz .lt. oad_dt_ptr) call oad_dt_grow() |
| 31 |
oad_dt(oad_dt_ptr)=x%v; oad_dt_ptr=oad_dt_ptr+1 |
| 32 |
end subroutine |
| 33 |
|
| 34 |
subroutine apop(x) |
| 35 |
C $OpenAD$ INLINE DECLS |
| 36 |
use OpenAD_tape |
| 37 |
implicit none |
| 38 |
type(active) :: x |
| 39 |
C $OpenAD$ END DECLS |
| 40 |
oad_dt_ptr=oad_dt_ptr-1 |
| 41 |
x%v=oad_dt(oad_dt_ptr) |
| 42 |
end subroutine |
| 43 |
|
| 44 |
subroutine push_i_s0(x) |
| 45 |
C $OpenAD$ INLINE DECLS |
| 46 |
use OpenAD_tape |
| 47 |
implicit none |
| 48 |
integer :: x |
| 49 |
C $OpenAD$ END DECLS |
| 50 |
if(oad_it_sz .lt. oad_it_ptr) call oad_it_grow() |
| 51 |
oad_it(oad_it_ptr)=x; oad_it_ptr=oad_it_ptr+1 |
| 52 |
end subroutine |
| 53 |
|
| 54 |
subroutine pop_i_s0(x) |
| 55 |
C $OpenAD$ INLINE DECLS |
| 56 |
use OpenAD_tape |
| 57 |
implicit none |
| 58 |
integer :: x |
| 59 |
C $OpenAD$ END DECLS |
| 60 |
oad_it_ptr=oad_it_ptr-1 |
| 61 |
x=oad_it(oad_it_ptr) |
| 62 |
end subroutine |
| 63 |
|
| 64 |
subroutine push_b(x) |
| 65 |
C $OpenAD$ INLINE DECLS |
| 66 |
use OpenAD_tape |
| 67 |
implicit none |
| 68 |
logical :: x |
| 69 |
C $OpenAD$ END DECLS |
| 70 |
if(oad_lt_sz .lt. oad_lt_ptr) call oad_lt_grow() |
| 71 |
oad_lt(oad_lt_ptr)=x; oad_lt_ptr=oad_lt_ptr+1 |
| 72 |
end subroutine |
| 73 |
|
| 74 |
subroutine pop_b(x) |
| 75 |
C $OpenAD$ INLINE DECLS |
| 76 |
use OpenAD_tape |
| 77 |
implicit none |
| 78 |
logical :: x |
| 79 |
C $OpenAD$ END DECLS |
| 80 |
oad_lt_ptr=oad_lt_ptr-1 |
| 81 |
x=oad_lt(oad_lt_ptr) |
| 82 |
end subroutine |
| 83 |
|
| 84 |
subroutine push_s(x) |
| 85 |
C $OpenAD$ INLINE DECLS |
| 86 |
use OpenAD_tape |
| 87 |
implicit none |
| 88 |
character*(80) :: x |
| 89 |
C $OpenAD$ END DECLS |
| 90 |
if(oad_st_sz .lt. oad_st_ptr) call oad_st_grow() |
| 91 |
oad_st(oad_st_ptr)=x; oad_st_ptr=oad_st_ptr+1 |
| 92 |
end subroutine |
| 93 |
|
| 94 |
subroutine pop_s(x) |
| 95 |
C $OpenAD$ INLINE DECLS |
| 96 |
use OpenAD_tape |
| 97 |
implicit none |
| 98 |
character*(80) :: x |
| 99 |
C $OpenAD$ END DECLS |
| 100 |
oad_st_ptr=oad_st_ptr-1 |
| 101 |
x=oad_st(oad_st_ptr) |
| 102 |
end subroutine |
| 103 |
|
| 104 |
subroutine saxpy(a,x,y) |
| 105 |
C $OpenAD$ INLINE DECLS |
| 106 |
double precision, intent(in) :: a |
| 107 |
type(active), intent(in) :: x |
| 108 |
type(active), intent(inout) :: y |
| 109 |
C $OpenAD$ END DECLS |
| 110 |
y%d=y%d+x%d*(a) |
| 111 |
end subroutine |
| 112 |
|
| 113 |
subroutine zeroderiv(x) |
| 114 |
C $OpenAD$ INLINE DECLS |
| 115 |
type(active), intent(out) :: x |
| 116 |
C $OpenAD$ END DECLS |
| 117 |
x%d=0.0d0 |
| 118 |
end subroutine |
| 119 |
|
| 120 |
subroutine setderiv(y,x) |
| 121 |
C $OpenAD$ INLINE DECLS |
| 122 |
type(active), intent(out) :: x |
| 123 |
type(active), intent(in) :: y |
| 124 |
C $OpenAD$ END DECLS |
| 125 |
x%d=y%d |
| 126 |
end subroutine |
| 127 |
|
| 128 |
subroutine incderiv(y,x) |
| 129 |
C $OpenAD$ INLINE DECLS |
| 130 |
type(active), intent(out) :: x |
| 131 |
type(active), intent(in) :: y |
| 132 |
C $OpenAD$ END DECLS |
| 133 |
x%d=x%d+y%d |
| 134 |
end subroutine |
| 135 |
|
| 136 |
subroutine decderiv(y,x) |
| 137 |
C $OpenAD$ INLINE DECLS |
| 138 |
type(active), intent(out) :: x |
| 139 |
type(active), intent(in) :: y |
| 140 |
C $OpenAD$ END DECLS |
| 141 |
x%d = x%d - y%d |
| 142 |
end subroutine decderiv |
| 143 |
|
| 144 |
C Checkpointing stuff --------------------------------------- |
| 145 |
|
| 146 |
C reals ----------------------------------------------------- |
| 147 |
subroutine cp_arg_store_real_scalar(x) |
| 148 |
C $OpenAD$ INLINE DECLS |
| 149 |
double precision :: x |
| 150 |
C $OpenAD$ END DECLS |
| 151 |
#ifdef OAD_DEBUG_CP |
| 152 |
write(standardmessageunit,*)'OAD: cp write x ', x |
| 153 |
#endif |
| 154 |
write(cp_io_unit) x |
| 155 |
end subroutine |
| 156 |
|
| 157 |
subroutine cp_arg_restore_real_scalar(x) |
| 158 |
C $OpenAD$ INLINE DECLS |
| 159 |
implicit none |
| 160 |
double precision :: x |
| 161 |
C $OpenAD$ END DECLS |
| 162 |
read(cp_io_unit) x |
| 163 |
#ifdef OAD_DEBUG_CP |
| 164 |
write(standardmessageunit,*)'OAD: cp read x ', x |
| 165 |
#endif |
| 166 |
end subroutine |
| 167 |
|
| 168 |
subroutine cp_arg_store_real_scalar_a(x) |
| 169 |
C $OpenAD$ INLINE DECLS |
| 170 |
double precision :: x |
| 171 |
C $OpenAD$ END DECLS |
| 172 |
#ifdef OAD_DEBUG_CP |
| 173 |
write(standardmessageunit,*)'OAD: cp write x ', x%v |
| 174 |
#endif |
| 175 |
write(cp_io_unit) x%v |
| 176 |
end subroutine |
| 177 |
|
| 178 |
subroutine cp_arg_restore_real_scalar_a(x) |
| 179 |
C $OpenAD$ INLINE DECLS |
| 180 |
implicit none |
| 181 |
double precision :: x |
| 182 |
C $OpenAD$ END DECLS |
| 183 |
read(cp_io_unit) x%v |
| 184 |
#ifdef OAD_DEBUG_CP |
| 185 |
write(standardmessageunit,*)'OAD: cp read x ', x%v |
| 186 |
#endif |
| 187 |
end subroutine |
| 188 |
|
| 189 |
subroutine cp_arg_store_real_vector(x) |
| 190 |
C $OpenAD$ INLINE DECLS |
| 191 |
implicit none |
| 192 |
double precision, dimension(:) :: x |
| 193 |
C $OpenAD$ END DECLS |
| 194 |
#ifdef OAD_DEBUG_CP |
| 195 |
write(standardmessageunit,*)'OAD: cp write x ', x(1) |
| 196 |
#endif |
| 197 |
write(cp_io_unit) x |
| 198 |
end subroutine |
| 199 |
|
| 200 |
subroutine cp_arg_restore_real_vector(x) |
| 201 |
C $OpenAD$ INLINE DECLS |
| 202 |
implicit none |
| 203 |
double precision, dimension(:) :: x |
| 204 |
C $OpenAD$ END DECLS |
| 205 |
read(cp_io_unit) x |
| 206 |
#ifdef OAD_DEBUG_CP |
| 207 |
write(standardmessageunit,*)'OAD: cp read x ', x(1) |
| 208 |
#endif |
| 209 |
end subroutine |
| 210 |
|
| 211 |
subroutine cp_arg_store_real_vector_a(x) |
| 212 |
C $OpenAD$ INLINE DECLS |
| 213 |
implicit none |
| 214 |
double precision, dimension(:) :: x |
| 215 |
C $OpenAD$ END DECLS |
| 216 |
#ifdef OAD_DEBUG_CP |
| 217 |
write(standardmessageunit,*)'OAD: cp write x ', x(1)%v |
| 218 |
#endif |
| 219 |
write(cp_io_unit) x%v |
| 220 |
end subroutine |
| 221 |
|
| 222 |
subroutine cp_arg_restore_real_vector_a(x) |
| 223 |
C $OpenAD$ INLINE DECLS |
| 224 |
implicit none |
| 225 |
double precision, dimension(:) :: x |
| 226 |
C $OpenAD$ END DECLS |
| 227 |
read(cp_io_unit) x%v |
| 228 |
#ifdef OAD_DEBUG_CP |
| 229 |
write(standardmessageunit,*)'OAD: cp read x ', x(1)%v |
| 230 |
#endif |
| 231 |
end subroutine |
| 232 |
|
| 233 |
subroutine cp_arg_store_real_matrix(x) |
| 234 |
C $OpenAD$ INLINE DECLS |
| 235 |
implicit none |
| 236 |
double precision, dimension(::) :: x |
| 237 |
C $OpenAD$ END DECLS |
| 238 |
#ifdef OAD_DEBUG_CP |
| 239 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1) |
| 240 |
#endif |
| 241 |
write(cp_io_unit) x |
| 242 |
end subroutine |
| 243 |
|
| 244 |
subroutine cp_arg_restore_real_matrix(x) |
| 245 |
C $OpenAD$ INLINE DECLS |
| 246 |
implicit none |
| 247 |
double precision, dimension(::) :: x |
| 248 |
C $OpenAD$ END DECLS |
| 249 |
read(cp_io_unit) x |
| 250 |
#ifdef OAD_DEBUG_CP |
| 251 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1) |
| 252 |
#endif |
| 253 |
end subroutine |
| 254 |
|
| 255 |
subroutine cp_arg_store_real_matrix_a(x) |
| 256 |
C $OpenAD$ INLINE DECLS |
| 257 |
implicit none |
| 258 |
double precision, dimension(::) :: x |
| 259 |
C $OpenAD$ END DECLS |
| 260 |
#ifdef OAD_DEBUG_CP |
| 261 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1)%v |
| 262 |
#endif |
| 263 |
write(cp_io_unit) x%v |
| 264 |
end subroutine |
| 265 |
|
| 266 |
subroutine cp_arg_restore_real_matrix_a(x) |
| 267 |
C $OpenAD$ INLINE DECLS |
| 268 |
implicit none |
| 269 |
double precision, dimension(::) :: x |
| 270 |
C $OpenAD$ END DECLS |
| 271 |
read(cp_io_unit) x%v |
| 272 |
#ifdef OAD_DEBUG_CP |
| 273 |
write(standardmessageunit,*)'OAD: cp read x ', x(1.1)%v |
| 274 |
#endif |
| 275 |
end subroutine |
| 276 |
|
| 277 |
subroutine cp_arg_store_real_three_tensor(x) |
| 278 |
C $OpenAD$ INLINE DECLS |
| 279 |
implicit none |
| 280 |
double precision, dimension(::) :: x |
| 281 |
C $OpenAD$ END DECLS |
| 282 |
#ifdef OAD_DEBUG_CP |
| 283 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1) |
| 284 |
#endif |
| 285 |
write(cp_io_unit) x |
| 286 |
end subroutine |
| 287 |
|
| 288 |
subroutine cp_arg_store_real_three_tensor_a(x) |
| 289 |
C $OpenAD$ INLINE DECLS |
| 290 |
implicit none |
| 291 |
double precision, dimension(::) :: x |
| 292 |
C $OpenAD$ END DECLS |
| 293 |
#ifdef OAD_DEBUG_CP |
| 294 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1)%v |
| 295 |
#endif |
| 296 |
write(cp_io_unit) x%v |
| 297 |
end subroutine |
| 298 |
|
| 299 |
subroutine cp_arg_restore_real_three_tensor(x) |
| 300 |
C $OpenAD$ INLINE DECLS |
| 301 |
implicit none |
| 302 |
double precision, dimension(::) :: x |
| 303 |
C $OpenAD$ END DECLS |
| 304 |
read(cp_io_unit) x |
| 305 |
#ifdef OAD_DEBUG_CP |
| 306 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1) |
| 307 |
#endif |
| 308 |
end subroutine |
| 309 |
|
| 310 |
subroutine cp_arg_restore_real_three_tensor_a(x) |
| 311 |
C $OpenAD$ INLINE DECLS |
| 312 |
implicit none |
| 313 |
double precision, dimension(::) :: x |
| 314 |
C $OpenAD$ END DECLS |
| 315 |
#ifdef OAD_DEBUG_CP |
| 316 |
write(standardmessageunit,*)'OAD: cp read x ', x%v |
| 317 |
#endif |
| 318 |
read(cp_io_unit) x%v |
| 319 |
end subroutine |
| 320 |
|
| 321 |
subroutine cp_arg_store_real_four_tensor(x) |
| 322 |
C $OpenAD$ INLINE DECLS |
| 323 |
implicit none |
| 324 |
double precision, dimension(::) :: x |
| 325 |
C $OpenAD$ END DECLS |
| 326 |
#ifdef OAD_DEBUG_CP |
| 327 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1) |
| 328 |
#endif |
| 329 |
write(cp_io_unit) x |
| 330 |
end subroutine |
| 331 |
|
| 332 |
subroutine cp_arg_store_real_four_tensor_a(x) |
| 333 |
C $OpenAD$ INLINE DECLS |
| 334 |
implicit none |
| 335 |
double precision, dimension(::) :: x |
| 336 |
C $OpenAD$ END DECLS |
| 337 |
#ifdef OAD_DEBUG_CP |
| 338 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1)%v |
| 339 |
#endif |
| 340 |
write(cp_io_unit) x%v |
| 341 |
end subroutine |
| 342 |
|
| 343 |
subroutine cp_arg_restore_real_four_tensor(x) |
| 344 |
C $OpenAD$ INLINE DECLS |
| 345 |
implicit none |
| 346 |
double precision, dimension(::) :: x |
| 347 |
C $OpenAD$ END DECLS |
| 348 |
read(cp_io_unit) x |
| 349 |
#ifdef OAD_DEBUG_CP |
| 350 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1) |
| 351 |
#endif |
| 352 |
end subroutine |
| 353 |
|
| 354 |
subroutine cp_arg_restore_real_four_tensor_a(x) |
| 355 |
C $OpenAD$ INLINE DECLS |
| 356 |
implicit none |
| 357 |
double precision, dimension(::) :: x |
| 358 |
C $OpenAD$ END DECLS |
| 359 |
read(cp_io_unit) x%v |
| 360 |
#ifdef OAD_DEBUG_CP |
| 361 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1)%v |
| 362 |
#endif |
| 363 |
end subroutine |
| 364 |
|
| 365 |
subroutine cp_arg_store_real_five_tensor(x) |
| 366 |
C $OpenAD$ INLINE DECLS |
| 367 |
implicit none |
| 368 |
double precision, dimension(::) :: x |
| 369 |
C $OpenAD$ END DECLS |
| 370 |
#ifdef OAD_DEBUG_CP |
| 371 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1,1) |
| 372 |
#endif |
| 373 |
write(cp_io_unit) x |
| 374 |
end subroutine |
| 375 |
|
| 376 |
subroutine cp_arg_store_real_five_tensor_a(x) |
| 377 |
C $OpenAD$ INLINE DECLS |
| 378 |
implicit none |
| 379 |
double precision, dimension(::) :: x |
| 380 |
C $OpenAD$ END DECLS |
| 381 |
#ifdef OAD_DEBUG_CP |
| 382 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1,1)%v |
| 383 |
#endif |
| 384 |
write(cp_io_unit) x%v |
| 385 |
end subroutine |
| 386 |
|
| 387 |
subroutine cp_arg_restore_real_five_tensor(x) |
| 388 |
C $OpenAD$ INLINE DECLS |
| 389 |
implicit none |
| 390 |
double precision, dimension(::) :: x |
| 391 |
C $OpenAD$ END DECLS |
| 392 |
read(cp_io_unit) x |
| 393 |
#ifdef OAD_DEBUG_CP |
| 394 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1,1) |
| 395 |
#endif |
| 396 |
end subroutine |
| 397 |
|
| 398 |
subroutine cp_arg_restore_real_five_tensor_a(x) |
| 399 |
C $OpenAD$ INLINE DECLS |
| 400 |
implicit none |
| 401 |
double precision, dimension(::) :: x |
| 402 |
C $OpenAD$ END DECLS |
| 403 |
read(cp_io_unit) x%v |
| 404 |
#ifdef OAD_DEBUG_CP |
| 405 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1,1)%v |
| 406 |
#endif |
| 407 |
end subroutine |
| 408 |
|
| 409 |
|
| 410 |
C integers ----------------------------------------------------- |
| 411 |
subroutine cp_arg_store_integer_scalar(x) |
| 412 |
C $OpenAD$ INLINE DECLS |
| 413 |
implicit none |
| 414 |
integer :: x |
| 415 |
C $OpenAD$ END DECLS |
| 416 |
#ifdef OAD_DEBUG_CP |
| 417 |
write(standardmessageunit,*)'OAD: cp write x ', x |
| 418 |
#endif |
| 419 |
write(cp_io_unit) x |
| 420 |
end subroutine |
| 421 |
|
| 422 |
subroutine cp_arg_restore_integer_scalar(x) |
| 423 |
C $OpenAD$ INLINE DECLS |
| 424 |
implicit none |
| 425 |
integer :: x |
| 426 |
C $OpenAD$ END DECLS |
| 427 |
read(cp_io_unit) x |
| 428 |
#ifdef OAD_DEBUG_CP |
| 429 |
write(standardmessageunit,*)'OAD: cp read x ', x |
| 430 |
#endif |
| 431 |
end subroutine |
| 432 |
|
| 433 |
subroutine cp_arg_store_integer_vector(x) |
| 434 |
C $OpenAD$ INLINE DECLS |
| 435 |
implicit none |
| 436 |
integer, dimension(:) :: x |
| 437 |
C $OpenAD$ END DECLS |
| 438 |
#ifdef OAD_DEBUG_CP |
| 439 |
write(standardmessageunit,*)'OAD: cp write x ', x(1) |
| 440 |
#endif |
| 441 |
write(cp_io_unit) x |
| 442 |
end subroutine |
| 443 |
|
| 444 |
subroutine cp_arg_restore_integer_vector(x) |
| 445 |
C $OpenAD$ INLINE DECLS |
| 446 |
implicit none |
| 447 |
integer, dimension(:) :: x |
| 448 |
C $OpenAD$ END DECLS |
| 449 |
read(cp_io_unit) x |
| 450 |
#ifdef OAD_DEBUG_CP |
| 451 |
write(standardmessageunit,*)'OAD: cp read x ', x(1) |
| 452 |
#endif |
| 453 |
end subroutine |
| 454 |
|
| 455 |
subroutine cp_arg_store_integer_matrix(x) |
| 456 |
C $OpenAD$ INLINE DECLS |
| 457 |
implicit none |
| 458 |
integer, dimension(::) :: x |
| 459 |
C $OpenAD$ END DECLS |
| 460 |
#ifdef OAD_DEBUG_CP |
| 461 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1) |
| 462 |
#endif |
| 463 |
write(cp_io_unit) x |
| 464 |
end subroutine |
| 465 |
|
| 466 |
subroutine cp_arg_restore_integer_matrix(x) |
| 467 |
C $OpenAD$ INLINE DECLS |
| 468 |
implicit none |
| 469 |
integer, dimension(::) :: x |
| 470 |
C $OpenAD$ END DECLS |
| 471 |
read(cp_io_unit) x |
| 472 |
#ifdef OAD_DEBUG_CP |
| 473 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1) |
| 474 |
#endif |
| 475 |
end subroutine |
| 476 |
|
| 477 |
subroutine cp_arg_store_integer_three_tensor(x) |
| 478 |
C $OpenAD$ INLINE DECLS |
| 479 |
implicit none |
| 480 |
integer, dimension(::) :: x |
| 481 |
C $OpenAD$ END DECLS |
| 482 |
#ifdef OAD_DEBUG_CP |
| 483 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1) |
| 484 |
#endif |
| 485 |
write(cp_io_unit) x |
| 486 |
end subroutine |
| 487 |
|
| 488 |
subroutine cp_arg_restore_integer_three_tensor(x) |
| 489 |
C $OpenAD$ INLINE DECLS |
| 490 |
implicit none |
| 491 |
integer, dimension(::) :: x |
| 492 |
C $OpenAD$ END DECLS |
| 493 |
read(cp_io_unit) x |
| 494 |
#ifdef OAD_DEBUG_CP |
| 495 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1) |
| 496 |
#endif |
| 497 |
end subroutine |
| 498 |
|
| 499 |
subroutine cp_arg_store_integer_four_tensor(x) |
| 500 |
C $OpenAD$ INLINE DECLS |
| 501 |
implicit none |
| 502 |
integer, dimension(::) :: x |
| 503 |
C $OpenAD$ END DECLS |
| 504 |
#ifdef OAD_DEBUG_CP |
| 505 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1) |
| 506 |
#endif |
| 507 |
write(cp_io_unit) x |
| 508 |
end subroutine |
| 509 |
|
| 510 |
subroutine cp_arg_restore_integer_four_tensor(x) |
| 511 |
C $OpenAD$ INLINE DECLS |
| 512 |
implicit none |
| 513 |
integer, dimension(::) :: x |
| 514 |
C $OpenAD$ END DECLS |
| 515 |
read(cp_io_unit) x |
| 516 |
#ifdef OAD_DEBUG_CP |
| 517 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1) |
| 518 |
#endif |
| 519 |
end subroutine |
| 520 |
|
| 521 |
subroutine cp_arg_store_integer_five_tensor(x) |
| 522 |
C $OpenAD$ INLINE DECLS |
| 523 |
implicit none |
| 524 |
integer, dimension(::) :: x |
| 525 |
C $OpenAD$ END DECLS |
| 526 |
#ifdef OAD_DEBUG_CP |
| 527 |
write(standardmessageunit,*)'OAD: cp write x ', x(1,1,1,1,1) |
| 528 |
#endif |
| 529 |
write(cp_io_unit) x |
| 530 |
end subroutine |
| 531 |
|
| 532 |
subroutine cp_arg_restore_integer_five_tensor(x) |
| 533 |
C $OpenAD$ INLINE DECLS |
| 534 |
implicit none |
| 535 |
integer, dimension(::) :: x |
| 536 |
C $OpenAD$ END DECLS |
| 537 |
read (cp_io_unit) x |
| 538 |
#ifdef OAD_DEBUG_CP |
| 539 |
write(standardmessageunit,*)'OAD: cp read x ', x(1,1,1,1,1) |
| 540 |
#endif |
| 541 |
end subroutine |
| 542 |
|
| 543 |
C strings ----------------------------------------------------- |
| 544 |
subroutine cp_arg_store_string_scalar(x) |
| 545 |
C $OpenAD$ INLINE DECLS |
| 546 |
implicit none |
| 547 |
character*(80) :: x |
| 548 |
C $OpenAD$ END DECLS |
| 549 |
#ifdef OAD_DEBUG_CP |
| 550 |
write(standardmessageunit,*)'OAD: cp write x ', x |
| 551 |
#endif |
| 552 |
write(cp_io_unit) x |
| 553 |
end subroutine |
| 554 |
|
| 555 |
subroutine cp_arg_restore_string_scalar(x) |
| 556 |
C $OpenAD$ INLINE DECLS |
| 557 |
implicit none |
| 558 |
character*(80) :: x |
| 559 |
C $OpenAD$ END DECLS |
| 560 |
read (cp_io_unit) x |
| 561 |
#ifdef OAD_DEBUG_CP |
| 562 |
write(standardmessageunit,*)'OAD: cp read x ', x |
| 563 |
#endif |
| 564 |
end subroutine |
| 565 |
|
| 566 |
C bools ----------------------------------------------------- |
| 567 |
subroutine cp_arg_store_bool_scalar(x) |
| 568 |
C $OpenAD$ INLINE DECLS |
| 569 |
implicit none |
| 570 |
logical :: x |
| 571 |
C $OpenAD$ END DECLS |
| 572 |
#ifdef OAD_DEBUG_CP |
| 573 |
write(standardmessageunit,*)'OAD: cp write x ', x |
| 574 |
#endif |
| 575 |
write(cp_io_unit) x |
| 576 |
end subroutine |
| 577 |
|
| 578 |
subroutine cp_arg_restore_bool_scalar(x) |
| 579 |
C $OpenAD$ INLINE DECLS |
| 580 |
implicit none |
| 581 |
logical :: x |
| 582 |
C $OpenAD$ END DECLS |
| 583 |
read (cp_io_unit) x |
| 584 |
#ifdef OAD_DEBUG_CP |
| 585 |
write(standardmessageunit,*)'OAD: cp read x ', x |
| 586 |
#endif |
| 587 |
end subroutine |