You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After today's changes, I can no longer build the project with Visual Studio's Cmake. Build fails with compiler error C1061.
It seems like there is too many nested block scopes for MSVC to handle in common.cpp.
877b4d0c628cc70dddb5df72ed8fc14d126ca7e8 is the first bad commit
commit 877b4d0c628cc70dddb5df72ed8fc14d126ca7e8
Author: Theia Vogel <theia@vgel.me>
Date: Fri Mar 15 13:43:02 2024 -0700
llama : add support for control vectors (#5970)
* control vector api and implementation
* control-vectors : minor code style updates
* disable control vector when data == nullptr
use -1 for disabled range (also on init) in case we ever support controlling layer 0 (embeddings)
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
common/common.cpp | 215 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
common/common.h | 31 +++++++-
llama.cpp | 128 ++++++++++++++++++++++++++++++++
llama.h | 23 +++++-
4 files changed, 392 insertions(+), 5 deletions(-)
The text was updated successfully, but these errors were encountered:
After today's changes, I can no longer build the project with Visual Studio's Cmake. Build fails with compiler error C1061.
It seems like there is too many nested block scopes for MSVC to handle in
common.cpp
.using
git bisect
:The text was updated successfully, but these errors were encountered: