Replies: 5 comments 5 replies
-
Additionally, even if I don't use MKL or don't link the ARPACK-NG library, the same errors occur. |
Beta Was this translation helpful? Give feedback.
-
All Line 365 in 4caa8f4 MKL is tricky to use: start simple with regular BLAS/LAPACK first. |
Beta Was this translation helpful? Give feedback.
-
You must link with the library: |
Beta Was this translation helpful? Give feedback.
-
Not sure arpack can be built on Windows the windows way (with IDE like VS) but it should be possible the unix way (using msys) arpack-ng/.github/workflows/jobs.yml Lines 253 to 293 in 4caa8f4 |
Beta Was this translation helpful? Give feedback.
-
...Maybe using |
Beta Was this translation helpful? Give feedback.
-
I'm a beginner, and the Fortran program provided by my teacher uses the ARPACK and LAPACK libraries. I have installed the ARPACK library and called it along with the MKL library, but I encountered the following errors:
zndrv1.obj : error LNK2019: unresolved external symbol ZNAUPD, referenced in function ZNAUPD.t871p.t872p.t873p.t874p.t875p.t876p.t877p.t878p.t879p.t880p.t881p.t882p.t883p.t884p.t885p.t886p.t887p.t3v.t3v
zndrv1.obj : error LNK2019: unresolved external symbol ZNEUPD, referenced in function ZNEUPD.t965p.t966p.t967p.t968p.t969p.t970p.t971p.t972p.t973p.t974p.t975p.t976p.t977p.t978p.t979p.t980p.t981p.t982p.t983p.t984p.t985p.t986p.t987p.t988p.t3v.t3v.t3v
eigenhh1.obj : error LNK2019: unresolved external symbol DSAUPD, referenced in function DSAUPD.t544p.t545p.t546p.t547p.t548p.t549p.t550p.t551p.t552p.t553p.t554p.t555p.t556p.t557p.t558p.t559p.t3v.t3v
eigenhh1.obj : error LNK2019: unresolved external symbol DSEUPD, referenced in function DSEUPD.t633p.t634p.t635p.t636p.t637p.t638p.t639p.t640p.t641p.t642p.t643p.t644p.t645p.t646p.t647p.t648p.t649p.t650p.t651p.t652p.t653p.t654p.t3v.t3v.t3v
eigenhh1.obj : error LNK2019: unresolved external symbol DMOUT, referenced in function DNRM2.void
Could you please confirm if these functions are not included in the ARPACK-NG library, or if there might be an issue with my installation? Thank you for your response.
Beta Was this translation helpful? Give feedback.
All reactions