-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clang64 flang compile failure #3509
Comments
Not sure why it did not identify the clang64 version of flang - we rely on the standard "CheckLanguage" module of cmake (called in cmake/f_check,cmake as check_language(Fortran)). Perhaps cmake failed to link the small test program it tries to compile, or the flang command itself was not available in the system path ? (There may be some information in the |
Hi,Martin -- The ASM compiler identification is Clang -- Looking for stdatomic.h Detailed CMakeError log info: The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Checking whether the Fortran compiler is Compaq using "-what" did not match "Compaq Visual Fortran": |
it seems flang-new.exe lack cc1 tool, so I use f18,but it still failed C:\msys64\clang64\bin>f18.exe -cc1 OutPut compile info: CMAKE error log: The Fortran compiler identification could not be found in "D:/code/OpenBLAS/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdFortran/a.exe" The Fortran compiler identification could not be found in "D:/code/OpenBLAS/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdFortran/CMakeFortranCompilerId.o" Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Compilation of the Fortran compiler identification source "CMakeFortranCompilerId.F" did not produce an executable in "D:/code/ OpenBLAS/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdFortran". The Fortran compiler identification could not be found in "D:/code/OpenBLAS/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdFortran/a.exe" The Fortran compiler identification could not be found in "D:/code/OpenBLAS/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdFortran/CMakeFortranCompilerId.o" Compiling the Fortran compiler identification source file "CMakeFortranCompilerId.F" failed. The output was: Checking whether the Fortran compiler is Compaq using "-what" terminated after 10 s due to timeout.Checking whether the Fortran compiler is NAG using "-V" did not match "NAG Fortran Compiler": f18 compiler (under development), version 13.0.0 f18 compiler (under development), version 13.0.0 |
Thanks a lot MehdiChinoune ! As you said , CMake dosen't support Clang64 Flang ,so we can't compile lapack of openblas on windows by this way. Is there any other solution we can compile lapack of openblas successfully on windows? |
thanks MehdiChinoune ! yes, mingw64 is ok I've already tried before. But our project need use clang64...... |
Building flang (-classic) from source used to be fairly straightforward on Linux, but i have no idea if it would be as easy on Windows. As far as I know, the llvm-related commercial compilers (nvidia hpc, amd aocc) are not available for Windows. |
MehdiChinoune, we need compile openblas with LAPACK, bcos we need compile Armadillo,which will calculate data very quickly with openblas, but openblas also depends LAPACK to calculate some data.our project use Clang to compile all the modules and third party libs, and we can't use mingw64 to compile openblas. |
thanks Martin, but we don't select commercial compilers ,it's better if we can use opensource compiler. |
i.e it is a wrapper for gfrotran or a commercial compiler. SOURCE: https://releases.llvm.org/13.0.0/tools/flang/docs/ReleaseNotes.html |
@bmiyuan, if you work with the msys2 clang64 environent you can try to use mingw-w64-clang-x86_64-f2cblaslapack. It provides you with two static libraries:
You can try the latter library ( The reason why f2cblaslapack was added to msys2 is described here: msys2/MINGW-packages#10386 (comment) BTW: clang64 provides you with mingw-w64-clang-x86_64-armadillo which depends on mingw-w64-clang-x86_64-openblas. The clang64 version of OpenBLAS is compiled without LAPACK and LAPACKE support. AFAIK this is not needed for Armadillo anyway. |
One can use binary cross-built on Linux with Armadillo, or use clang and gfortran, much like the only free option OSX users have. CMake says you dont have fortran compiler - indeed flang without gfortran is no fortran compiler. |
@carlkl if this is based on |
@martin-frbg probably latest version that did away with f2c.... I thing OP thinks he talks with @MehdiChinoune from |
PKGBUILD uses the latest version from PETCS: https://ftp.mcs.anl.gov/pub/petsc/externalpackages/f2cblaslapack-3.4.2.q4.tar.gz (2020). However, Lapack version 3.4.2 is from 2012. |
You never know if you dont try. That tarball is providing fortran API, so OpenBLAs built with DYNAMIC_ARCH=1 NO_CBLAS=1 NO_FORTRAN=1 (please skip experimental cmake part and use gnu make) will make a compatible library. |
@carlkl should be possible, except obviously your code would not be able to use the (smallish) number of LAPACK functions added since then, and more importantly might suffer from LAPACK bugs that got fixed in the meantime. Also you would miss out on the parallelized/optimized versions of potrf/getrf and friends if you built OpenBLAS without LAPACK. |
I have no problem with that. (And I find it quite frustrating myself that the LLVM developers chose to replace a working - if not perfect - compiler implementation with a not-yet-functional redesign that bears the same name) |
As much as it pertains OpenBLAS - it happily detected and avoided another non-compiler. It is always frustrating that software that is supposed to do something actually does exactly nothing )or half of that expected something) |
@MehdiChinoune, do you have contact to FLANG developers? it is not easy to find information about the status of FLANG, especially when it comes to Windows. |
@MehdiChinoune, thank you! |
@bmiyuan - since it's the same issue - please take a look at: |
Could you drop a line if you manage to build openblas BLAS with f2cblaslapack into same frankenstein library? That would ease life of android/iOPS people a bit. |
Maybe I also should try to build and test scipy with clang64 then. Lets see... |
Thank you already, just tell approximately how (if/when) you succeed on mingw, somebody may pick that up and extend the success to mobile phones. |
Thanks Carlkl, I just update the mingw-w64-clang-x86_64-f2cblaslapack, but it still has ld.lld: error: undefined symbol: wrapper2_dgelsd_ such error. Actually, I added -DARMA_DONT_USE_WRAPPER in CMakeFile to fixed wrapper issue. |
You nred to use consistent function prefixes across armadillo wrapper and callers, indeed taking wrapper away solves the confusion. |
If and when this works, it would probably make sense to look into updating at least those parts of their 2012 version of LAPACK that have not morphed into Fortran95 or later code (that f2c cannot handle). I have not found the original toclapack.sh script mentioned in an old posting on the petsc-users mailing list, but a derivative work can be found in the |
it works fine when I use mingw64 to compile openblas on windows, but it compiles failure when I use clang64 flang with Ninja generator .
I try to fix the issue, and add the FC environment variable, it can build successfully, but it seems the lapack isn't compiled. the prebuild log also shows the info :
-- Looking for a Fortran compiler - NOTFOUND
-- No Fortran compiler found, can build only BLAS but not LAPACK
Is threre a solution that can build LAPACK successfully on windows with clang64 ? thanks in advance!
The text was updated successfully, but these errors were encountered: