I have a Fortran library archive (libmy.a) that contains various subroutines.
I then try to add another one with:
ifort -c -O3 ~/mydir/sub.f
ar -rv ~/mydir/libmy.a sub.o
However, while libmy's attributes change, its size does not, so it seems as if sub is not being incorporated (and trying to...
I have a working program (Fortran 77) that I’m trying to auto-parallelize on a cluster. The changes made in the compiling makefiles (abbreviated) are shown in the curly brackets below.
Build library:
FOR=ifort -c -O3 {-parallel}
LINK=ifort {-parallel}
PROG_DIR=/export/home/mydir/...
Hi
I’ve been struggling with this problem for a while, and perhaps somebody can help.
I have a 2-column array, e.g. as follows
3 2
6 4
12 0
- - - -
22 3
23 10
. .
. .
. .
66 4
I need to search column 1 (which is in ascending order) until I find a specified...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.