Merge remote-tracking branch 'origin/main' into dev

This commit is contained in:
Austin Huang 2024-02-24 11:06:31 -05:00
commit ff8fb8cb9d
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
FetchContent_Declare(highway GIT_REPOSITORY https://github.com/google/highway.git GIT_TAG da250571a45826b21eebbddc1e50d0c1137dee5f) FetchContent_Declare(highway GIT_REPOSITORY https://github.com/google/highway.git GIT_TAG da250571a45826b21eebbddc1e50d0c1137dee5f)
FetchContent_MakeAvailable(highway) FetchContent_MakeAvailable(highway)
## Note: absl meeds tp be installed by sentencepiece. This will only happen if ## Note: absl needs to be installed by sentencepiece. This will only happen if
## cmake is invoked with -DSPM_ENABLE_SHARED=OFF and -DSPM_ABSL_PROVIDER=module ## cmake is invoked with -DSPM_ENABLE_SHARED=OFF and -DSPM_ABSL_PROVIDER=module
FetchContent_Declare(sentencepiece GIT_REPOSITORY https://github.com/google/sentencepiece GIT_TAG 53de76561cfc149d3c01037f0595669ad32a5e7c) FetchContent_Declare(sentencepiece GIT_REPOSITORY https://github.com/google/sentencepiece GIT_TAG 53de76561cfc149d3c01037f0595669ad32a5e7c)
FetchContent_MakeAvailable(sentencepiece) FetchContent_MakeAvailable(sentencepiece)
@ -50,7 +50,7 @@ endif()
# Allowable types for WEIGHT_TYPE: # Allowable types for WEIGHT_TYPE:
# float - slow, not recommended # float - slow, not recommended
# hwy::bfloat16_t - bfloat16 as impemented by https://github.com/google/highway # hwy::bfloat16_t - bfloat16 as implemented by https://github.com/google/highway
# SfpStream - 8-bit switched floating point (recommended) # SfpStream - 8-bit switched floating point (recommended)
# NuqStream - experimental, work-in-progress # NuqStream - experimental, work-in-progress
option(WEIGHT_TYPE "Set weight type" "") option(WEIGHT_TYPE "Set weight type" "")