Move ggml-cpu-traits.h to source file

This commit is contained in:
Charles Xu 2025-02-10 15:32:06 +01:00
parent ca0c8b6b73
commit 02315a8dbe
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,8 @@
// SPDX-License-Identifier: MIT
//
#pragma once
enum cpu_feature {
CPU_FEATURE_NONE = 0,
CPU_FEATURE_DOTPROD = 1,

View file

@ -24,6 +24,7 @@
#include "ggml-impl.h"
#include "ggml-backend-impl.h"
#include "ggml-threading.h"
#include "ggml-cpu-traits.h"
#include "kernels.h"

View file

@ -4,7 +4,7 @@
#pragma once
#include "ggml-cpu-traits.h"
#include "ggml-alloc.h"
#ifdef __cplusplus
extern "C" {