Skip to content
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

Enable -std= for cmake builds, fix warnings #598

Merged
merged 1 commit into from
Mar 31, 2023
Merged

Conversation

sw
Copy link
Contributor

@sw sw commented Mar 29, 2023

The Makefile has -std=c11/-std=c++11, but those were missing in CMakeLists.txt. Add them and fix the warnings.

@sw
Copy link
Contributor Author

sw commented Mar 29, 2023

Hmm that doesn't trigger the CI - should I have made a branch on this repo instead of my own?

@sw sw requested a review from ggerganov March 29, 2023 15:47
@cornelk
Copy link

cornelk commented Mar 29, 2023

github actions are having issues: https://www.githubstatus.com/

@anzz1
Copy link
Contributor

anzz1 commented Mar 29, 2023

github actions are having issues: https://www.githubstatus.com/

Yeah github has been a mess yesterday and today. Getting unicorns all over the place.

@niclimcy
Copy link

niclimcy commented Mar 29, 2023

Isn’t this a thing:

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_C_STANDARD 11)

or is current cmake version too low for that

@sw
Copy link
Contributor Author

sw commented Mar 29, 2023

Isn’t this a thing: set(CMAKE_CXX_STANDARD 11) set(CMAKE_C_STANDARD 11)

You're right, and CMAKE_C[XX]_STANDARD_REQUIRED is already set anyway. They're all supported since cmake 3.1.

Updated it, and now it looks like CI is working again.

@slaren
Copy link
Member

slaren commented Mar 31, 2023

Looks like the recent changes broke this PR and needs to rebased.

@sw sw merged commit 3525899 into ggml-org:master Mar 31, 2023
@sw sw deleted the std-warn branch March 31, 2023 19:19
Nuked88 pushed a commit to Nuked88/llama.http that referenced this pull request Mar 31, 2023
@Green-Sky
Copy link
Collaborator

Green-Sky commented Mar 31, 2023

@sw
Copy link
Contributor Author

sw commented Mar 31, 2023

The point is that -std=c11 and -std=c++11 were not passed to the compiler before, but now they are. What cmake is doing to amuse itself is not really relevant ;-)

@Green-Sky
Copy link
Collaborator

That just seems wrong 🤔 can you point me to the logs? I can't find said warnings.

@sw
Copy link
Contributor Author

sw commented Apr 1, 2023

@Green-Sky :

That just seems wrong thinking can you point me to the logs? I can't find said warnings.

The warnings were about writing to the buffer returned by the data() method on std::string, which is UB, as I discussed with @anzz1 in the collapsed thread above. But that has been fixed in the meantime in another commit. The changes to ggml.c fix some other warnings, but they are a red herring here.

You never saw these warnings in the CI logs or when running cmake locally, precisely because the -std=c++11 wasn't passed to the compiler. You only got warnings with make.

@niclimcy
Copy link

niclimcy commented Apr 2, 2023

this is kinda bad, we already have it defined per target see

https://github.com/ggerganov/llama.cpp/blob/3525899277d2e2bdc8ec3f0e6e40c47251608700/CMakeLists.txt#L235

and
https://github.com/ggerganov/llama.cpp/blob/3525899277d2e2bdc8ec3f0e6e40c47251608700/CMakeLists.txt#L246

(and since they are public, they get inherited)

This looks wrong following cmake convention ngl. Should we remove it since cmake has the ability to differentiate c++ and c by itself?

@sw
Copy link
Contributor Author

sw commented Apr 2, 2023

I think it comes down to this:

https://cmake.org/cmake/help/latest/command/target_compile_features.html

If the use of the feature requires an additional compiler flag, such as -std=gnu++11, the flag will be added automatically.

Use of standard C++11 does not require -std=c++11. But we want that flag to be passed to the compiler so that it will warn us when we don't write standard C++11. Dito for C11.

You could argue that target_compile_features is now unnecessary, but I'm not 100% sure on this.

Deadsg pushed a commit to Deadsg/llama.cpp that referenced this pull request Dec 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants