mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-08 10:07:01 +00:00
ggml-zdnn: disable op_none initialisation for testing
Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
This commit is contained in:
@@ -55,6 +55,11 @@ inline void ggml_zdnn_load_tensor(zdnn_ztensor & ztensor,
|
|||||||
|
|
||||||
inline void ggml_zdnn_init_tensor(ggml_backend_zdnn_buffer * buffer, const ggml_tensor * tensor) {
|
inline void ggml_zdnn_init_tensor(ggml_backend_zdnn_buffer * buffer, const ggml_tensor * tensor) {
|
||||||
switch (tensor->op) {
|
switch (tensor->op) {
|
||||||
|
case GGML_OP_NONE:
|
||||||
|
{
|
||||||
|
// noop here because we will initialise it during the compute graph execution
|
||||||
|
} break;
|
||||||
|
|
||||||
case GGML_OP_MUL_MAT:
|
case GGML_OP_MUL_MAT:
|
||||||
{
|
{
|
||||||
zdnn_init_pre_transformed_desc(
|
zdnn_init_pre_transformed_desc(
|
||||||
@@ -64,6 +69,7 @@ inline void ggml_zdnn_init_tensor(ggml_backend_zdnn_buffer * buffer, const ggml_
|
|||||||
tensor->ne[1], tensor->ne[0]
|
tensor->ne[1], tensor->ne[0]
|
||||||
);
|
);
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
zdnn_init_pre_transformed_desc(
|
zdnn_init_pre_transformed_desc(
|
||||||
|
|||||||
Reference in New Issue
Block a user