Skip to content

Commit

Permalink
Merge branch 'ggerganov:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
sealad886 authored May 22, 2024
2 parents cdf3bc1 + cd93a28 commit e828560
Show file tree
Hide file tree
Showing 47 changed files with 2,217 additions and 1,423 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/zig-build.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,12 @@ if (LLAMA_VULKAN)

add_compile_definitions(GGML_USE_VULKAN)

# Workaround to the "can't dereference invalidated vector iterator" bug in clang-cl debug build
# Posssibly relevant: https://stackoverflow.com/questions/74748276/visual-studio-no-displays-the-correct-length-of-stdvector
if (MSVC AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
add_compile_definitions(_ITERATOR_DEBUG_LEVEL=0)
endif()

if (LLAMA_VULKAN_CHECK_RESULTS)
add_compile_definitions(GGML_VULKAN_CHECK_RESULTS)
endif()
Expand Down
172 changes: 0 additions & 172 deletions build.zig

This file was deleted.

Loading

0 comments on commit e828560

Please sign in to comment.