OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
numpy
/
f2py
/
tests
/
src
/
assumed_shape
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 05:59:26 AM
rwxr-xr-x
📄
.f2py_f2cmap
29 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
foo_free.f90
460 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
foo_mod.f90
499 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
foo_use.f90
269 bytes
10/28/2024 05:59:24 AM
rw-r--r--
📄
precision.f90
130 bytes
10/28/2024 05:59:24 AM
rw-r--r--
Editing: foo_use.f90
Close
subroutine sum_with_use(x, res) use precision implicit none real(kind=rk), intent(in) :: x(:) real(kind=rk), intent(out) :: res integer :: i !print *, "size(x) = ", size(x) res = 0.0 do i = 1, size(x) res = res + x(i) enddo end subroutine