eltwise: sort includes

This commit is contained in:
Akarshan Biswas 2025-02-01 10:59:28 +05:30
parent aaf9ed070d
commit a16b6b7681
No known key found for this signature in database
GPG key ID: 52A578A14B32134D
3 changed files with 2 additions and 5 deletions

View file

@ -12,9 +12,6 @@
#include "common.hpp"
#include "ggml-backend-impl.h"
#include "ggml-impl.h"
int get_current_device_id() {
return dpct::dev_mgr::instance().current_device_id();
}

View file

@ -31,7 +31,9 @@
#pragma clang diagnostic ignored "-Wnested-anon-types"
#include "ggml-common.h"
#pragma clang diagnostic pop
#include "ggml-backend-impl.h"
#include "ggml-impl.h"
#include "ggml.h"
void* ggml_sycl_host_malloc(size_t size);
void ggml_sycl_host_free(void* ptr);

View file

@ -1,6 +1,4 @@
#include "common.hpp"
#include "element_wise.hpp"
#include "ggml.h"
void acc_f32(const float * x, const float * y, float * dst, const int ne,
const int ne10, const int ne11, const int ne12,