-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmul.c
70 lines (59 loc) · 2.06 KB
/
mul.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <stdio.h>
#include "ggml.h"
#include "ggml-cpu.h"
#include "ggml-alloc.h"
#include "ggml-backend.h"
int main(int argc, char **argv) {
printf("GGML mul example\n");
struct ggml_init_params params = {
.mem_size = 16*1024*1024,
.mem_buffer = NULL,
};
struct ggml_context* ctx = ggml_init(params);
struct ggml_tensor* a = ggml_new_tensor_2d(ctx, GGML_TYPE_F32, 2, 3);
ggml_set_name(a, "a");
ggml_set_i32_nd(a, 0, 0, 0, 0, 1);
ggml_set_i32_nd(a, 1, 0, 0, 0, 2);
ggml_set_i32_nd(a, 0, 1, 0, 0, 3);
ggml_set_i32_nd(a, 1, 1, 0, 0, 4);
ggml_set_i32_nd(a, 0, 2, 0, 0, 5);
ggml_set_i32_nd(a, 1, 2, 0, 0, 6);
printf("matrix a %ldx%ld:\n", a->ne[0], a->ne[1]);
for (int y = 0; y < a->ne[1]; y++) {
for (int x = 0; x < a->ne[0]; x++) {
printf("%.2f ", *(float *) ((char *) a->data + y * a->nb[1] + x * a->nb[0]));
}
printf("\n");
}
printf("\n");
struct ggml_tensor* b = ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 2);
ggml_set_name(b, "b");
ggml_set_i32_nd(b, 0, 0, 0, 0, 2);
ggml_set_i32_nd(b, 1, 0, 0, 0, 4);
// Note that ggml_mul_mat() transposes the second matrix b.
struct ggml_tensor* result = ggml_mul(ctx, a, b);
ggml_set_name(result, "result");
struct ggml_cgraph* c_graph = ggml_new_graph(ctx);
ggml_build_forward_expand(c_graph, result);
int n_threads = 4;
enum ggml_status st = ggml_graph_compute_with_ctx(ctx, c_graph, n_threads);
if (st != GGML_STATUS_SUCCESS) {
printf("could not compute graph\n");
return 1;
}
printf("result tensor type: %s\n", ggml_type_name(result->type));
printf("result dim: %d\n", ggml_n_dims(result));
printf("result dim[0]: %ld\n", result->ne[0]);
printf("result dim[1]: %ld\n", result->ne[1]);
printf("\n");
printf("result matrix %ldx%ld:\n", result->ne[0], result->ne[1]);
for (int y = 0; y < result->ne[1]; y++) {
for (int x = 0; x < result->ne[0]; x++) {
printf("%.2f ", *(float *) ((char *) result->data + y * result->nb[1] + x * result->nb[0]));
}
printf("\n");
}
printf("\n");
ggml_free(ctx);
return 0;
}