-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
set(TEST_TARGET test-tokenizer-0) | ||
add_executable(${TEST_TARGET} ${TEST_TARGET}.cpp) | ||
target_link_libraries(${TEST_TARGET} PRIVATE llama ggml utils) | ||
add_test(NAME ${TEST_TARGET} COMMAND $<TARGET_FILE:${TEST_TARGET}> ${CMAKE_CURRENT_SOURCE_DIR}/../models/ggml-vocab.bin) | ||
function(llama_add_test source) | ||
get_filename_component(TEST_TARGET ${source} NAME_WE) | ||
add_executable(${TEST_TARGET} ${source}) | ||
target_link_libraries(${TEST_TARGET} PRIVATE llama ggml utils) | ||
add_test(NAME ${TEST_TARGET} COMMAND $<TARGET_FILE:${TEST_TARGET}> ${ARGN}) | ||
endfunction() | ||
|
||
llama_add_test(test-quantize.c) | ||
llama_add_test(test-tokenizer-0.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../models/ggml-vocab.bin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#include "ggml.h" | ||
#undef NDEBUG | ||
#include <assert.h> | ||
#include <math.h> | ||
|
||
int main(void) { | ||
#define QK 32 | ||
float src[QK]; | ||
uint8_t dst[24]; | ||
int64_t hist[16]; | ||
|
||
for (int i = 0; i < QK; i++) { | ||
src[i] = (float)(i + 1); | ||
} | ||
|
||
size_t size = ggml_quantize_q4_0(src, dst, QK, QK, QK, hist); | ||
assert(size == 20); | ||
float max_result = ((float *)dst)[0]; | ||
float max_expected = src[31] / ((1 << 3) - 1); | ||
assert(max_result == max_expected); | ||
for (int i = 0; i < QK; i++) { | ||
uint8_t q4_result = (i % 2) ? (dst[sizeof(float) + i/2] >> 4) : (dst[sizeof(float) + i/2] & 0xF); | ||
uint8_t q4_expected = roundf(src[i] / max_expected) + 8; | ||
assert(q4_result == q4_expected); | ||
} | ||
|
||
size = ggml_quantize_q4_1(src, dst, QK, QK, QK, hist); | ||
assert(size == 24); | ||
float delta_result = ((float *)dst)[0]; | ||
float delta_expected = (src[31] - src[0]) / ((1 << 4) - 1); | ||
assert(delta_result == delta_expected); | ||
float min_result = ((float *)dst)[1]; | ||
float min_expected = src[0]; | ||
assert(min_result == min_expected); | ||
for (int i = 0; i < QK; i++) { | ||
uint8_t q4_result = (i % 2) ? (dst[sizeof(float)*2 + i/2] >> 4) : (dst[sizeof(float)*2 + i/2] & 0xF); | ||
uint8_t q4_expected = roundf((src[i] - min_expected) / delta_expected); | ||
assert(q4_result == q4_expected); | ||
} | ||
|
||
return 0; | ||
} |