We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For neural-fortran I had to do the following line to pickup the hdf5 dependency from Conda:
neural-fortran
$ fpm run --example cnn_mnist --profile release --flag "-fno-frontend-optimize -I$CONDA_PREFIX/include -L$CONDA_PREFIX/lib -Wl,-rpath -Wl,$CONDA_PREFIX/lib"
It would be great to be able to do just add a flag --conda:
--conda
$ fpm run --example cnn_mnist --profile release --conda --flag "-fno-frontend-optimize"
(The -fno-frontend-optimize is a neural-fortran specific flag that we don't need to worry about for this conda issue.)
-fno-frontend-optimize
The text was updated successfully, but these errors were encountered:
fixes fortran-lang#1008
47d411a
No branches or pull requests
For
neural-fortran
I had to do the following line to pickup the hdf5 dependency from Conda:It would be great to be able to do just add a flag
--conda
:(The
-fno-frontend-optimize
is a neural-fortran specific flag that we don't need to worry about for this conda issue.)The text was updated successfully, but these errors were encountered: