From 4d71c98544c9150d974878867e1277a57d94ecb2 Mon Sep 17 00:00:00 2001 From: arthw <14088817+arthw@users.noreply.github.com> Date: Thu, 1 Aug 2024 12:52:06 +0800 Subject: [PATCH] mv dpct/helper.hpp to dpct.hpp --- ggml/src/ggml-sycl/common.hpp | 2 +- ggml/src/ggml-sycl/{dpct/helper.hpp => dpct.hpp} | 0 ggml/src/ggml-sycl/sycl_device.hpp | 2 +- ggml/src/ggml-sycl/vecdotq.hpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename ggml/src/ggml-sycl/{dpct/helper.hpp => dpct.hpp} (100%) diff --git a/ggml/src/ggml-sycl/common.hpp b/ggml/src/ggml-sycl/common.hpp index ccdd789cc..cb9514356 100644 --- a/ggml/src/ggml-sycl/common.hpp +++ b/ggml/src/ggml-sycl/common.hpp @@ -17,7 +17,7 @@ #include #include -#include "dpct/helper.hpp" +#include "dpct.hpp" #include "ggml-sycl.h" #include "presets.hpp" #include "sycl_hw.hpp" diff --git a/ggml/src/ggml-sycl/dpct/helper.hpp b/ggml/src/ggml-sycl/dpct.hpp similarity index 100% rename from ggml/src/ggml-sycl/dpct/helper.hpp rename to ggml/src/ggml-sycl/dpct.hpp diff --git a/ggml/src/ggml-sycl/sycl_device.hpp b/ggml/src/ggml-sycl/sycl_device.hpp index 900a77942..7bffe7556 100644 --- a/ggml/src/ggml-sycl/sycl_device.hpp +++ b/ggml/src/ggml-sycl/sycl_device.hpp @@ -7,7 +7,7 @@ #include -#include "dpct/helper.hpp" +#include "dpct.hpp" #include "ggml-sycl.h" #include "presets.hpp" diff --git a/ggml/src/ggml-sycl/vecdotq.hpp b/ggml/src/ggml-sycl/vecdotq.hpp index d2dccade2..a0ab8287c 100644 --- a/ggml/src/ggml-sycl/vecdotq.hpp +++ b/ggml/src/ggml-sycl/vecdotq.hpp @@ -13,7 +13,7 @@ #ifndef GGML_SYCL_VECDOTQ_HPP #define GGML_SYCL_VECDOTQ_HPP -#include "dpct/helper.hpp" +#include "dpct.hpp" typedef float (*vec_dot_q_sycl_t)(const void * __restrict__ vbq, const block_q8_1 * __restrict__ bq8_1, const int & iqs);