diff --git a/ggml/src/ggml-hexagon/ggml-hexagon.cpp b/ggml/src/ggml-hexagon/ggml-hexagon.cpp index ea797b1663..c3d2598b03 100644 --- a/ggml/src/ggml-hexagon/ggml-hexagon.cpp +++ b/ggml/src/ggml-hexagon/ggml-hexagon.cpp @@ -3018,7 +3018,7 @@ static bool ggml_backend_hexagon_device_supports_op(ggml_backend_dev_t dev, cons case GGML_OP_SCALE: supp = ggml_hexagon_supported_unary(sess, op); break; - + case GGML_OP_SQR: case GGML_OP_SQRT: supp = ggml_hexagon_supported_unary(sess, op); @@ -3027,7 +3027,7 @@ static bool ggml_backend_hexagon_device_supports_op(ggml_backend_dev_t dev, cons case GGML_OP_SUM_ROWS: supp = ggml_hexagon_supported_sum_rows(sess, op); break; - + case GGML_OP_SOFT_MAX: supp = ggml_hexagon_supported_softmax(sess, op); break; diff --git a/ggml/src/ggml-hexagon/htp/sum-rows-ops.c b/ggml/src/ggml-hexagon/htp/sum-rows-ops.c index 79676a57f9..62e45da2b3 100644 --- a/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +++ b/ggml/src/ggml-hexagon/htp/sum-rows-ops.c @@ -5,8 +5,8 @@ #include #include -#include #include +#include #include "hex-dma.h" #include "hvx-utils.h" @@ -111,4 +111,5 @@ int op_sum_rows(struct htp_ops_context * octx) { worker_pool_run_func(octx->ctx->worker_pool, sum_rows_work_f32, octx, n_jobs); return HTP_STATUS_OK; -} \ No newline at end of file +} +