Skip to content

Commit

Permalink
Update submodule to latest release b3166 (#102)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jan-service-account and github-actions[bot] authored Jun 17, 2024
1 parent ac43c71 commit d14f8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama.cpp
Submodule llama.cpp updated 70 files
+7 −5 .github/pull_request_template.md
+5 −0 CMakeLists.txt
+4 −0 Makefile
+16 −0 README-sycl.md
+1 −0 README.md
+8 −8 examples/cvector-generator/pca.hpp
+3 −3 flake.lock
+4 −0 ggml-cuda.cu
+1 −1 ggml-cuda/mmvq.cu
+28 −0 ggml-cuda/unary.cu
+3 −0 ggml-cuda/unary.cuh
+284 −367 ggml-quants.c
+8 −3 ggml-rpc.cpp
+27,564 −23,876 ggml-vulkan-shaders.hpp
+259 −353 ggml-vulkan.cpp
+109 −2,991 ggml_vk_generate_shaders.py
+262 −2 gguf-py/scripts/gguf-dump.py
+1 −1 llama.cpp
+28 −0 tests/test-backend-ops.cpp
+11 −11 unicode.cpp
+1 −1 unicode.h
+12 −0 vulkan-shaders/add.comp
+71 −0 vulkan-shaders/argsort.comp
+13 −0 vulkan-shaders/clamp.comp
+16 −0 vulkan-shaders/copy.comp
+20 −0 vulkan-shaders/dequant_f32.comp
+60 −0 vulkan-shaders/dequant_funcs.comp
+13 −0 vulkan-shaders/dequant_head.comp
+34 −0 vulkan-shaders/dequant_q2_k.comp
+42 −0 vulkan-shaders/dequant_q3_k.comp
+32 −0 vulkan-shaders/dequant_q4_0.comp
+32 −0 vulkan-shaders/dequant_q4_1.comp
+56 −0 vulkan-shaders/dequant_q4_k.comp
+34 −0 vulkan-shaders/dequant_q5_0.comp
+35 −0 vulkan-shaders/dequant_q5_1.comp
+58 −0 vulkan-shaders/dequant_q5_k.comp
+33 −0 vulkan-shaders/dequant_q6_k.comp
+31 −0 vulkan-shaders/dequant_q8_0.comp
+34 −0 vulkan-shaders/diag_mask_inf.comp
+12 −0 vulkan-shaders/div.comp
+25 −0 vulkan-shaders/gelu.comp
+48 −0 vulkan-shaders/generic_binary_head.comp
+9 −0 vulkan-shaders/generic_head.comp
+35 −0 vulkan-shaders/generic_unary_head.comp
+26 −0 vulkan-shaders/get_rows.comp
+31 −0 vulkan-shaders/get_rows_quant.comp
+12 −0 vulkan-shaders/mul.comp
+29 −0 vulkan-shaders/mul_mat_split_k_reduce.comp
+50 −0 vulkan-shaders/mul_mat_vec.comp
+81 −0 vulkan-shaders/mul_mat_vec_base.comp
+71 −0 vulkan-shaders/mul_mat_vec_nc.comp
+73 −0 vulkan-shaders/mul_mat_vec_p021.comp
+73 −0 vulkan-shaders/mul_mat_vec_q2_k.comp
+66 −0 vulkan-shaders/mul_mat_vec_q3_k.comp
+115 −0 vulkan-shaders/mul_mat_vec_q4_k.comp
+111 −0 vulkan-shaders/mul_mat_vec_q5_k.comp
+79 −0 vulkan-shaders/mul_mat_vec_q6_k.comp
+494 −0 vulkan-shaders/mul_mm.comp
+44 −0 vulkan-shaders/norm.comp
+21 −0 vulkan-shaders/relu.comp
+42 −0 vulkan-shaders/rms_norm.comp
+44 −0 vulkan-shaders/rope_head.comp
+37 −0 vulkan-shaders/rope_neox.comp
+37 −0 vulkan-shaders/rope_norm.comp
+12 −0 vulkan-shaders/scale.comp
+22 −0 vulkan-shaders/silu.comp
+106 −0 vulkan-shaders/soft_max.comp
+13 −0 vulkan-shaders/square.comp
+37 −0 vulkan-shaders/sum_rows.comp
+179 −0 vulkan-shaders/types.comp

0 comments on commit d14f8ef

Please sign in to comment.