Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
1deafd82
Unverified
Commit
1deafd82
authored
Jan 08, 2025
by
Jeffrey Morgan
Committed by
GitHub
Jan 08, 2025
Browse files
llama: update vendored code to commit 46e3556 (#8308)
parent
57f038ec
Changes
305
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
22 additions
and
20 deletions
+22
-20
llama/ggml-cuda/common.cuh
llama/ggml-cuda/common.cuh
+1
-1
llama/ggml-cuda/concat.cu
llama/ggml-cuda/concat.cu
+1
-1
llama/ggml-cuda/concat.cuh
llama/ggml-cuda/concat.cuh
+1
-1
llama/ggml-cuda/conv-transpose-1d.cu
llama/ggml-cuda/conv-transpose-1d.cu
+1
-1
llama/ggml-cuda/conv-transpose-1d.cuh
llama/ggml-cuda/conv-transpose-1d.cuh
+1
-1
llama/ggml-cuda/convert.cu
llama/ggml-cuda/convert.cu
+3
-1
llama/ggml-cuda/convert.cuh
llama/ggml-cuda/convert.cuh
+1
-1
llama/ggml-cuda/count-equal.cu
llama/ggml-cuda/count-equal.cu
+1
-1
llama/ggml-cuda/count-equal.cuh
llama/ggml-cuda/count-equal.cuh
+1
-1
llama/ggml-cuda/cpy.cu
llama/ggml-cuda/cpy.cu
+1
-1
llama/ggml-cuda/cpy.cuh
llama/ggml-cuda/cpy.cuh
+1
-1
llama/ggml-cuda/cross-entropy-loss.cu
llama/ggml-cuda/cross-entropy-loss.cu
+1
-1
llama/ggml-cuda/cross-entropy-loss.cuh
llama/ggml-cuda/cross-entropy-loss.cuh
+1
-1
llama/ggml-cuda/dequantize.cuh
llama/ggml-cuda/dequantize.cuh
+1
-1
llama/ggml-cuda/diagmask.cu
llama/ggml-cuda/diagmask.cu
+1
-1
llama/ggml-cuda/diagmask.cuh
llama/ggml-cuda/diagmask.cuh
+1
-1
llama/ggml-cuda/fattn-common.cuh
llama/ggml-cuda/fattn-common.cuh
+1
-1
llama/ggml-cuda/fattn-tile-f16.cu
llama/ggml-cuda/fattn-tile-f16.cu
+1
-1
llama/ggml-cuda/fattn-tile-f16.cuh
llama/ggml-cuda/fattn-tile-f16.cuh
+1
-1
llama/ggml-cuda/fattn-tile-f32.cu
llama/ggml-cuda/fattn-tile-f32.cu
+1
-1
No files found.
llama/ggml-cuda/common.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/concat.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/concat.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/conv-transpose-1d.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/conv-transpose-1d.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/convert.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
@@ -706,6 +706,8 @@ to_fp32_cuda_t ggml_get_to_fp32_cuda(ggml_type type) {
return
dequantize_row_iq3_s_cuda
;
case
GGML_TYPE_F16
:
return
convert_unary_cuda
<
half
>
;
case
GGML_TYPE_BF16
:
return
convert_unary_cuda
<
nv_bfloat16
>
;
default:
return
nullptr
;
}
...
...
llama/ggml-cuda/convert.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/count-equal.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/count-equal.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/cpy.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/cpy.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/cross-entropy-loss.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/cross-entropy-loss.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/dequantize.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/diagmask.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/diagmask.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/fattn-common.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/fattn-tile-f16.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/fattn-tile-f16.cuh
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
llama/ggml-cuda/fattn-tile-f32.cu
View file @
1deafd82
/**
* llama.cpp - commit
ba1cb19cdd0d92e012e0f6e009e0620f854b6afd
- do not edit this file
* llama.cpp - commit
46e3556e01b824e52395fb050b29804b6cff2a7c
- do not edit this file
*
* MIT License
*
...
...
Prev
1
2
3
4
5
6
7
…
16
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment