aboutsummaryrefslogtreecommitdiff
path: root/ggml.h
diff options
context:
space:
mode:
Diffstat (limited to 'ggml.h')
-rw-r--r--ggml.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ggml.h b/ggml.h
index 2745fb3..967ef72 100644
--- a/ggml.h
+++ b/ggml.h
@@ -243,6 +243,11 @@ extern "C" {
GGML_TYPE_COUNT,
};
+ enum ggml_backend {
+ GGML_BACKEND_CPU = 0,
+ GGML_BACKEND_CUDA = 1,
+ };
+
// model file types
enum ggml_ftype {
GGML_FTYPE_UNKNOWN = -1,
@@ -333,6 +338,7 @@ extern "C" {
// n-dimensional tensor
struct ggml_tensor {
enum ggml_type type;
+ enum ggml_backend backend;
int n_dims;
int64_t ne[GGML_MAX_DIMS]; // number of elements
@@ -363,7 +369,7 @@ extern "C" {
char name[32];
- char padding[8]; // TODO: remove and add padding to name?
+ char padding[9]; // TODO: remove and add padding to name?
};
// computation graph