Submit
Path:
~
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
f2py
/
tests
/
src
/
assumed_shape
/
File Content:
foo_free.f90
subroutine sum(x, res) implicit none real, intent(in) :: x(:) real, intent(out) :: res integer :: i !print *, "sum: size(x) = ", size(x) res = 0.0 do i = 1, size(x) res = res + x(i) enddo end subroutine sum function fsum(x) result (res) implicit none real, intent(in) :: x(:) real :: res integer :: i !print *, "fsum: size(x) = ", size(x) res = 0.0 do i = 1, size(x) res = res + x(i) enddo end function fsum
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
.f2py_f2cmap
29 bytes
0644
foo_free.f90
460 bytes
0644
foo_mod.f90
499 bytes
0644
foo_use.f90
269 bytes
0644
precision.f90
130 bytes
0644
N4ST4R_ID | Naxtarrr