ggml.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. #pragma once
  2. //
  3. // GGML Tensor Library
  4. //
  5. // This documentation is still a work in progress.
  6. // If you wish some specific topics to be covered, feel free to drop a comment:
  7. //
  8. // https://github.com/ggerganov/whisper.cpp/issues/40
  9. //
  10. // ## Overview
  11. //
  12. // This library implements:
  13. //
  14. // - a set of tensor operations
  15. // - automatic differentiation
  16. // - basic optimization algorithms
  17. //
  18. // The aim of this library is to provide a minimalistic approach for various machine learning tasks. This includes,
  19. // but is not limited to, the following:
  20. //
  21. // - linear regression
  22. // - support vector machines
  23. // - neural networks
  24. //
  25. // The library allows the user to define a certain function using the available tensor operations. This function
  26. // definition is represented internally via a computation graph. Each tensor operation in the function definition
  27. // corresponds to a node in the graph. Having the computation graph defined, the user can choose to compute the
  28. // function's value and/or its gradient with respect to the input variables. Optionally, the function can be optimized
  29. // using one of the available optimization algorithms.
  30. //
  31. // For example, here we define the function: f(x) = a*x^2 + b
  32. //
  33. // {
  34. // struct ggml_init_params params = {
  35. // .mem_size = 16*1024*1024,
  36. // .mem_buffer = NULL,
  37. // };
  38. //
  39. // // memory allocation happens here
  40. // struct ggml_context * ctx = ggml_init(params);
  41. //
  42. // struct ggml_tensor * x = ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 1);
  43. //
  44. // ggml_set_param(ctx, x); // x is an input variable
  45. //
  46. // struct ggml_tensor * a = ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 1);
  47. // struct ggml_tensor * b = ggml_new_tensor_1d(ctx, GGML_TYPE_F32, 1);
  48. // struct ggml_tensor * x2 = ggml_mul(ctx, x, x);
  49. // struct ggml_tensor * f = ggml_add(ctx, ggml_mul(ctx, a, x2), b);
  50. //
  51. // ...
  52. // }
  53. //
  54. // Notice that the function definition above does not involve any actual computation. The computation is performed only
  55. // when the user explicitly requests it. For example, to compute the function's value at x = 2.0:
  56. //
  57. // {
  58. // ...
  59. //
  60. // struct ggml_cgraph gf = ggml_build_forward(f);
  61. //
  62. // // set the input variable and parameter values
  63. // ggml_set_f32(x, 2.0f);
  64. // ggml_set_f32(a, 3.0f);
  65. // ggml_set_f32(b, 4.0f);
  66. //
  67. // ggml_graph_compute(ctx0, &gf);
  68. //
  69. // printf("f = %f\n", ggml_get_f32_1d(f, 0));
  70. //
  71. // ...
  72. // }
  73. //
  74. // The actual computation is performed in the ggml_graph_compute() function.
  75. //
  76. // The ggml_new_tensor_...() functions create new tensors. They are allocated in the memory buffer provided to the
  77. // ggml_init() function. You have to be careful not to exceed the memory buffer size. Therefore, you have to know
  78. // in advance how much memory you need for your computation. Alternatively, you can allocate a large enough memory
  79. // and after defining the computation graph, call the ggml_used_mem() function to find out how much memory was
  80. // actually needed.
  81. //
  82. // The ggml_set_param() function marks a tensor as an input variable. This is used by the automatic
  83. // differentiation and optimization algorithms.
  84. //
  85. // The described approach allows to define the function graph once and then compute its forward or backward graphs
  86. // multiple times. All computations will use the same memory buffer allocated in the ggml_init() function. This way
  87. // the user can avoid the memory allocation overhead at runtime.
  88. //
  89. // The library supports multi-dimensional tensors - up to 4 dimensions. The FP16 and FP32 data types are first class
  90. // citizens, but in theory the library can be extended to support FP8 and integer data types.
  91. //
  92. // Each tensor operation produces a new tensor. Initially the library was envisioned to support only the use of unary
  93. // and binary operations. Most of the available operations fall into one of these two categories. With time, it became
  94. // clear that the library needs to support more complex operations. The way to support these operations is not clear
  95. // yet, but a few examples are demonstrated in the following operations:
  96. //
  97. // - ggml_permute()
  98. // - ggml_conv_1d_1s()
  99. // - ggml_conv_1d_2s()
  100. //
  101. // For each tensor operator, the library implements a forward and backward computation function. The forward function
  102. // computes the output tensor value given the input tensor values. The backward function computes the adjoint of the
  103. // input tensors given the adjoint of the output tensor. For a detailed explanation of what this means, take a
  104. // calculus class, or watch the following video:
  105. //
  106. // What is Automatic Differentiation?
  107. // https://www.youtube.com/watch?v=wG_nF1awSSY
  108. //
  109. //
  110. // ## Tensor data (struct ggml_tensor)
  111. //
  112. // The tensors are stored in memory via the ggml_tensor struct. The structure provides information about the size of
  113. // the tensor, the data type, and the memory buffer where the tensor data is stored. Additionally, it contains
  114. // pointers to the "source" tensors - i.e. the tensors that were used to compute the current tensor. For example:
  115. //
  116. // {
  117. // struct ggml_tensor * c = ggml_add(ctx, a, b);
  118. //
  119. // assert(c->src[0] == a);
  120. // assert(c->src[1] == b);
  121. // }
  122. //
  123. // The multi-dimensional tensors are stored in row-major order. The ggml_tensor struct contains fields for the
  124. // number of elements in each dimension ("ne") as well as the number of bytes ("nb", a.k.a. stride). This allows
  125. // to store tensors that are not contiguous in memory, which is useful for operations such as transposition and
  126. // permutation. All tensor operations have to take the stride into account and not assume that the tensor is
  127. // contiguous in memory.
  128. //
  129. // The data of the tensor is accessed via the "data" pointer. For example:
  130. //
  131. // {
  132. // struct ggml_tensor * a = ggml_new_tensor_2d(ctx, GGML_TYPE_F32, 2, 3);
  133. //
  134. // // a[1, 2] = 1.0f;
  135. // *(float *) ((char *) a->data + 2*a->nb[1] + 1*a->nb[0]) = 1.0f;
  136. //
  137. // // a[2, 0] = 2.0f;
  138. // *(float *) ((char *) a->data + 0*a->nb[1] + 2*a->nb[0]) = 2.0f;
  139. //
  140. // ...
  141. // }
  142. //
  143. // Alternatively, there are helper functions, such as ggml_get_f32_1d() and ggml_set_f32_1d() that can be used.
  144. //
  145. // ## The matrix multiplication operator (ggml_mul_mat)
  146. //
  147. // TODO
  148. //
  149. //
  150. // ## Multi-threading
  151. //
  152. // TODO
  153. //
  154. //
  155. // ## Overview of ggml.c
  156. //
  157. // TODO
  158. //
  159. //
  160. // ## SIMD optimizations
  161. //
  162. // TODO
  163. //
  164. //
  165. // ## Debugging ggml
  166. //
  167. // TODO
  168. //
  169. //
  170. #ifdef __cplusplus
  171. extern "C" {
  172. #endif
  173. #include <stdint.h>
  174. #include <stddef.h>
  175. #include <stdbool.h>
  176. #define GGML_MAX_DIMS 4
  177. #define GGML_MAX_NODES 4096
  178. #define GGML_MAX_PARAMS 16
  179. #define GGML_MAX_CONTEXTS 64
  180. #define GGML_MAX_OPT 4
  181. #define GGML_DEFAULT_N_THREADS 4
  182. #ifdef __ARM_NEON
  183. // we use the built-in 16-bit float type
  184. typedef __fp16 ggml_fp16_t;
  185. #else
  186. typedef uint16_t ggml_fp16_t;
  187. #endif
  188. // convert FP16 <-> FP32
  189. float ggml_fp16_to_fp32(ggml_fp16_t x);
  190. ggml_fp16_t ggml_fp32_to_fp16(float x);
  191. struct ggml_object;
  192. struct ggml_context;
  193. enum ggml_type {
  194. // explicitly numbered values are used in llama.cpp files
  195. GGML_TYPE_F32 = 0,
  196. GGML_TYPE_F16 = 1,
  197. GGML_TYPE_Q4_0 = 2,
  198. GGML_TYPE_Q4_1 = 3,
  199. GGML_TYPE_Q4_2 = 4,
  200. GGML_TYPE_Q8_0 = 5,
  201. GGML_TYPE_I8,
  202. GGML_TYPE_I16,
  203. GGML_TYPE_I32,
  204. GGML_TYPE_COUNT,
  205. };
  206. // available tensor operations:
  207. enum ggml_op {
  208. GGML_OP_NONE = 0,
  209. GGML_OP_DUP,
  210. GGML_OP_ADD,
  211. GGML_OP_SUB,
  212. GGML_OP_MUL,
  213. GGML_OP_DIV,
  214. GGML_OP_SQR,
  215. GGML_OP_SQRT,
  216. GGML_OP_SUM,
  217. GGML_OP_MEAN,
  218. GGML_OP_REPEAT,
  219. GGML_OP_ABS,
  220. GGML_OP_SGN,
  221. GGML_OP_NEG,
  222. GGML_OP_STEP,
  223. GGML_OP_RELU,
  224. GGML_OP_GELU,
  225. GGML_OP_SILU,
  226. GGML_OP_NORM, // normalize
  227. GGML_OP_RMS_NORM,
  228. GGML_OP_MUL_MAT,
  229. GGML_OP_SCALE,
  230. GGML_OP_CPY,
  231. GGML_OP_CONT,
  232. GGML_OP_RESHAPE,
  233. GGML_OP_VIEW,
  234. GGML_OP_PERMUTE,
  235. GGML_OP_TRANSPOSE,
  236. GGML_OP_GET_ROWS,
  237. GGML_OP_DIAG_MASK_INF,
  238. GGML_OP_SOFT_MAX,
  239. GGML_OP_ROPE,
  240. GGML_OP_CONV_1D_1S,
  241. GGML_OP_CONV_1D_2S,
  242. GGML_OP_FLASH_ATTN,
  243. GGML_OP_FLASH_FF,
  244. GGML_OP_MAP_UNARY,
  245. GGML_OP_MAP_BINARY,
  246. GGML_OP_COUNT,
  247. };
  248. // ggml object
  249. struct ggml_object {
  250. size_t offs;
  251. size_t size;
  252. struct ggml_object * next;
  253. char padding[8];
  254. };
  255. static const size_t GGML_OBJECT_SIZE = sizeof(struct ggml_object);
  256. // n-dimensional tensor
  257. struct ggml_tensor {
  258. enum ggml_type type;
  259. int n_dims;
  260. int64_t ne[GGML_MAX_DIMS]; // number of elements
  261. size_t nb[GGML_MAX_DIMS]; // stride in bytes:
  262. // nb[0] = sizeof(type)
  263. // nb[1] = nb[0] * ne[0] + padding
  264. // nb[i] = nb[i-1] * ne[i-1]
  265. // compute data
  266. enum ggml_op op;
  267. bool is_param;
  268. struct ggml_tensor * grad;
  269. struct ggml_tensor * src0;
  270. struct ggml_tensor * src1;
  271. struct ggml_tensor * opt[GGML_MAX_OPT];
  272. // thread scheduling
  273. int n_tasks;
  274. // performance
  275. int perf_runs;
  276. int64_t perf_cycles;
  277. int64_t perf_time_us;
  278. void * data;
  279. char padding[8];
  280. };
  281. // computation graph
  282. struct ggml_cgraph {
  283. int n_nodes;
  284. int n_leafs;
  285. int n_threads;
  286. size_t work_size;
  287. struct ggml_tensor * work;
  288. struct ggml_tensor * nodes[GGML_MAX_NODES];
  289. struct ggml_tensor * grads[GGML_MAX_NODES];
  290. struct ggml_tensor * leafs[GGML_MAX_NODES];
  291. // performance
  292. int perf_runs;
  293. int64_t perf_cycles;
  294. int64_t perf_time_us;
  295. };
  296. // scratch buffer
  297. struct ggml_scratch {
  298. size_t offs;
  299. size_t size;
  300. void * data;
  301. };
  302. struct ggml_init_params {
  303. // memory pool
  304. size_t mem_size; // bytes
  305. void * mem_buffer; // if NULL, memory will be allocated internally
  306. bool no_alloc; // don't allocate memory for the tensor data
  307. };
  308. void ggml_time_init(void); // call this once at the beginning of the program
  309. int64_t ggml_time_ms(void);
  310. int64_t ggml_time_us(void);
  311. int64_t ggml_cycles(void);
  312. int64_t ggml_cycles_per_ms(void);
  313. void ggml_print_object (const struct ggml_object * obj);
  314. void ggml_print_objects(const struct ggml_context * ctx);
  315. int64_t ggml_nelements(const struct ggml_tensor * tensor);
  316. size_t ggml_nbytes (const struct ggml_tensor * tensor);
  317. int ggml_blck_size (enum ggml_type type);
  318. size_t ggml_type_size (enum ggml_type type); // size in bytes for all elements in a block
  319. float ggml_type_sizef(enum ggml_type type); // ggml_type_size()/ggml_blck_size() as float
  320. const char * ggml_type_name(enum ggml_type type);
  321. size_t ggml_element_size(const struct ggml_tensor * tensor);
  322. struct ggml_context * ggml_init(struct ggml_init_params params);
  323. void ggml_free(struct ggml_context * ctx);
  324. size_t ggml_used_mem(const struct ggml_context * ctx);
  325. size_t ggml_set_scratch(struct ggml_context * ctx, struct ggml_scratch scratch);
  326. struct ggml_tensor * ggml_new_tensor(
  327. struct ggml_context * ctx,
  328. enum ggml_type type,
  329. int n_dims,
  330. const int64_t *ne);
  331. struct ggml_tensor * ggml_new_tensor_1d(
  332. struct ggml_context * ctx,
  333. enum ggml_type type,
  334. int64_t ne0);
  335. struct ggml_tensor * ggml_new_tensor_2d(
  336. struct ggml_context * ctx,
  337. enum ggml_type type,
  338. int64_t ne0,
  339. int64_t ne1);
  340. struct ggml_tensor * ggml_new_tensor_3d(
  341. struct ggml_context * ctx,
  342. enum ggml_type type,
  343. int64_t ne0,
  344. int64_t ne1,
  345. int64_t ne2);
  346. struct ggml_tensor * ggml_new_tensor_4d(
  347. struct ggml_context * ctx,
  348. enum ggml_type type,
  349. int64_t ne0,
  350. int64_t ne1,
  351. int64_t ne2,
  352. int64_t ne3);
  353. struct ggml_tensor * ggml_new_i32(struct ggml_context * ctx, int32_t value);
  354. struct ggml_tensor * ggml_new_f32(struct ggml_context * ctx, float value);
  355. struct ggml_tensor * ggml_dup_tensor (struct ggml_context * ctx, const struct ggml_tensor * src);
  356. struct ggml_tensor * ggml_view_tensor(struct ggml_context * ctx, const struct ggml_tensor * src);
  357. struct ggml_tensor * ggml_set_zero(struct ggml_tensor * tensor);
  358. struct ggml_tensor * ggml_set_i32 (struct ggml_tensor * tensor, int32_t value);
  359. struct ggml_tensor * ggml_set_f32 (struct ggml_tensor * tensor, float value);
  360. int32_t ggml_get_i32_1d(const struct ggml_tensor * tensor, int i);
  361. void ggml_set_i32_1d(const struct ggml_tensor * tensor, int i, int32_t value);
  362. float ggml_get_f32_1d(const struct ggml_tensor * tensor, int i);
  363. void ggml_set_f32_1d(const struct ggml_tensor * tensor, int i, float value);
  364. void * ggml_get_data (const struct ggml_tensor * tensor);
  365. float * ggml_get_data_f32(const struct ggml_tensor * tensor);
  366. //
  367. // operations on tensors with backpropagation
  368. //
  369. struct ggml_tensor * ggml_dup(
  370. struct ggml_context * ctx,
  371. struct ggml_tensor * a);
  372. struct ggml_tensor * ggml_add(
  373. struct ggml_context * ctx,
  374. struct ggml_tensor * a,
  375. struct ggml_tensor * b);
  376. struct ggml_tensor * ggml_add_inplace(
  377. struct ggml_context * ctx,
  378. struct ggml_tensor * a,
  379. struct ggml_tensor * b);
  380. struct ggml_tensor * ggml_sub(
  381. struct ggml_context * ctx,
  382. struct ggml_tensor * a,
  383. struct ggml_tensor * b);
  384. struct ggml_tensor * ggml_mul(
  385. struct ggml_context * ctx,
  386. struct ggml_tensor * a,
  387. struct ggml_tensor * b);
  388. struct ggml_tensor * ggml_div(
  389. struct ggml_context * ctx,
  390. struct ggml_tensor * a,
  391. struct ggml_tensor * b);
  392. struct ggml_tensor * ggml_sqr(
  393. struct ggml_context * ctx,
  394. struct ggml_tensor * a);
  395. struct ggml_tensor * ggml_sqrt(
  396. struct ggml_context * ctx,
  397. struct ggml_tensor * a);
  398. // return scalar
  399. // TODO: compute sum along rows
  400. struct ggml_tensor * ggml_sum(
  401. struct ggml_context * ctx,
  402. struct ggml_tensor * a);
  403. // mean along rows
  404. struct ggml_tensor * ggml_mean(
  405. struct ggml_context * ctx,
  406. struct ggml_tensor * a);
  407. // if a is the same shape as b, and a is not parameter, return a
  408. // otherwise, return a new tensor: repeat(a) to fit in b
  409. struct ggml_tensor * ggml_repeat(
  410. struct ggml_context * ctx,
  411. struct ggml_tensor * a,
  412. struct ggml_tensor * b);
  413. struct ggml_tensor * ggml_abs(
  414. struct ggml_context * ctx,
  415. struct ggml_tensor * a);
  416. struct ggml_tensor * ggml_sgn(
  417. struct ggml_context * ctx,
  418. struct ggml_tensor * a);
  419. struct ggml_tensor * ggml_neg(
  420. struct ggml_context * ctx,
  421. struct ggml_tensor * a);
  422. struct ggml_tensor * ggml_step(
  423. struct ggml_context * ctx,
  424. struct ggml_tensor * a);
  425. struct ggml_tensor * ggml_relu(
  426. struct ggml_context * ctx,
  427. struct ggml_tensor * a);
  428. // TODO: double-check this computation is correct
  429. struct ggml_tensor * ggml_gelu(
  430. struct ggml_context * ctx,
  431. struct ggml_tensor * a);
  432. struct ggml_tensor * ggml_silu(
  433. struct ggml_context * ctx,
  434. struct ggml_tensor * a);
  435. // normalize along rows
  436. // TODO: eps is hardcoded to 1e-5 for now
  437. struct ggml_tensor * ggml_norm(
  438. struct ggml_context * ctx,
  439. struct ggml_tensor * a);
  440. struct ggml_tensor * ggml_rms_norm(
  441. struct ggml_context * ctx,
  442. struct ggml_tensor * a);
  443. // A: m rows, n columns
  444. // B: p rows, n columns (i.e. we transpose it internally)
  445. // result is m columns, p rows
  446. struct ggml_tensor * ggml_mul_mat(
  447. struct ggml_context * ctx,
  448. struct ggml_tensor * a,
  449. struct ggml_tensor * b);
  450. //
  451. // operations on tensors without backpropagation
  452. //
  453. // in-place, returns view(a)
  454. struct ggml_tensor * ggml_scale(
  455. struct ggml_context * ctx,
  456. struct ggml_tensor * a,
  457. struct ggml_tensor * b);
  458. // a -> b, return view(b)
  459. struct ggml_tensor * ggml_cpy(
  460. struct ggml_context * ctx,
  461. struct ggml_tensor * a,
  462. struct ggml_tensor * b);
  463. // make contiguous
  464. struct ggml_tensor * ggml_cont(
  465. struct ggml_context * ctx,
  466. struct ggml_tensor * a);
  467. // return view(a), b specifies the new shape
  468. // TODO: when we start computing gradient, make a copy instead of view
  469. struct ggml_tensor * ggml_reshape(
  470. struct ggml_context * ctx,
  471. struct ggml_tensor * a,
  472. struct ggml_tensor * b);
  473. // return view(a)
  474. // TODO: when we start computing gradient, make a copy instead of view
  475. struct ggml_tensor * ggml_reshape_2d(
  476. struct ggml_context * ctx,
  477. struct ggml_tensor * a,
  478. int64_t ne0,
  479. int64_t ne1);
  480. // return view(a)
  481. // TODO: when we start computing gradient, make a copy instead of view
  482. struct ggml_tensor * ggml_reshape_3d(
  483. struct ggml_context * ctx,
  484. struct ggml_tensor * a,
  485. int64_t ne0,
  486. int64_t ne1,
  487. int64_t ne2);
  488. // offset in bytes
  489. struct ggml_tensor * ggml_view_1d(
  490. struct ggml_context * ctx,
  491. struct ggml_tensor * a,
  492. int64_t ne0,
  493. size_t offset);
  494. struct ggml_tensor * ggml_view_2d(
  495. struct ggml_context * ctx,
  496. struct ggml_tensor * a,
  497. int64_t ne0,
  498. int64_t ne1,
  499. size_t nb1, // row stride in bytes
  500. size_t offset);
  501. struct ggml_tensor * ggml_view_3d(
  502. struct ggml_context * ctx,
  503. struct ggml_tensor * a,
  504. int64_t ne0,
  505. int64_t ne1,
  506. int64_t ne2,
  507. size_t nb1, // row stride in bytes
  508. size_t nb2, // slice stride in bytes
  509. size_t offset);
  510. struct ggml_tensor * ggml_permute(
  511. struct ggml_context * ctx,
  512. struct ggml_tensor * a,
  513. int axis0,
  514. int axis1,
  515. int axis2,
  516. int axis3);
  517. // alias for ggml_permute(ctx, a, 1, 0, 2, 3)
  518. struct ggml_tensor * ggml_transpose(
  519. struct ggml_context * ctx,
  520. struct ggml_tensor * a);
  521. struct ggml_tensor * ggml_get_rows(
  522. struct ggml_context * ctx,
  523. struct ggml_tensor * a,
  524. struct ggml_tensor * b);
  525. // set elements above the diagonal to -INF
  526. // in-place, returns view(a)
  527. struct ggml_tensor * ggml_diag_mask_inf(
  528. struct ggml_context * ctx,
  529. struct ggml_tensor * a,
  530. int n_past);
  531. // in-place, returns view(a)
  532. struct ggml_tensor * ggml_soft_max(
  533. struct ggml_context * ctx,
  534. struct ggml_tensor * a);
  535. // rotary position embedding
  536. // in-place, returns view(a)
  537. // if mode == 1, skip n_past elements
  538. // TODO: avoid creating a new tensor every time
  539. struct ggml_tensor * ggml_rope(
  540. struct ggml_context * ctx,
  541. struct ggml_tensor * a,
  542. int n_past,
  543. int n_dims,
  544. int mode);
  545. // padding = 1
  546. // TODO: we don't support extra parameters for now
  547. // that's why we are hard-coding the stride, padding, and dilation
  548. // not great ..
  549. struct ggml_tensor * ggml_conv_1d_1s(
  550. struct ggml_context * ctx,
  551. struct ggml_tensor * a,
  552. struct ggml_tensor * b);
  553. struct ggml_tensor * ggml_conv_1d_2s(
  554. struct ggml_context * ctx,
  555. struct ggml_tensor * a,
  556. struct ggml_tensor * b);
  557. struct ggml_tensor * ggml_flash_attn(
  558. struct ggml_context * ctx,
  559. struct ggml_tensor * q,
  560. struct ggml_tensor * k,
  561. struct ggml_tensor * v,
  562. bool masked);
  563. struct ggml_tensor * ggml_flash_ff(
  564. struct ggml_context * ctx,
  565. struct ggml_tensor * a,
  566. struct ggml_tensor * b0,
  567. struct ggml_tensor * b1,
  568. struct ggml_tensor * c0,
  569. struct ggml_tensor * c1);
  570. // Mapping operations
  571. typedef void (*ggml_unary_op_f32_t)(const int, float *, const float *);
  572. typedef void (*ggml_binary_op_f32_t)(const int, float *, const float *, const float *);
  573. struct ggml_tensor * ggml_map_unary_f32(
  574. struct ggml_context * ctx,
  575. struct ggml_tensor * a,
  576. const ggml_unary_op_f32_t fun);
  577. struct ggml_tensor * ggml_map_binary_f32(
  578. struct ggml_context * ctx,
  579. struct ggml_tensor * a,
  580. struct ggml_tensor * b,
  581. const ggml_binary_op_f32_t fun);
  582. //
  583. // automatic differentiation
  584. //
  585. void ggml_set_param(
  586. struct ggml_context * ctx,
  587. struct ggml_tensor * tensor);
  588. void ggml_build_forward_expand(struct ggml_cgraph * cgraph, struct ggml_tensor * tensor);
  589. struct ggml_cgraph ggml_build_forward (struct ggml_tensor * tensor);
  590. struct ggml_cgraph ggml_build_backward(struct ggml_context * ctx, struct ggml_cgraph * gf, bool keep);
  591. void ggml_graph_compute(struct ggml_context * ctx, struct ggml_cgraph * cgraph);
  592. void ggml_graph_reset (struct ggml_cgraph * cgraph);
  593. // print info and performance information for the graph
  594. void ggml_graph_print(const struct ggml_cgraph * cgraph);
  595. // dump the graph into a file using the dot format
  596. void ggml_graph_dump_dot(const struct ggml_cgraph * gb, const struct ggml_cgraph * gf, const char * filename);
  597. //
  598. // optimization
  599. //
  600. // optimization methods
  601. enum ggml_opt_type {
  602. GGML_OPT_ADAM,
  603. GGML_OPT_LBFGS,
  604. };
  605. // linesearch methods
  606. enum ggml_linesearch {
  607. GGML_LINESEARCH_DEFAULT = 1,
  608. GGML_LINESEARCH_BACKTRACKING_ARMIJO = 0,
  609. GGML_LINESEARCH_BACKTRACKING_WOLFE = 1,
  610. GGML_LINESEARCH_BACKTRACKING_STRONG_WOLFE = 2,
  611. };
  612. // optimization return values
  613. enum ggml_opt_result {
  614. GGML_OPT_OK = 0,
  615. GGML_OPT_DID_NOT_CONVERGE,
  616. GGML_OPT_NO_CONTEXT,
  617. GGML_OPT_INVALID_WOLFE,
  618. GGML_OPT_FAIL,
  619. GGML_LINESEARCH_FAIL = -128,
  620. GGML_LINESEARCH_MINIMUM_STEP,
  621. GGML_LINESEARCH_MAXIMUM_STEP,
  622. GGML_LINESEARCH_MAXIMUM_ITERATIONS,
  623. GGML_LINESEARCH_INVALID_PARAMETERS,
  624. };
  625. // optimization parameters
  626. //
  627. // see ggml.c (ggml_opt_default_params) for default values
  628. //
  629. struct ggml_opt_params {
  630. enum ggml_opt_type type;
  631. int n_threads;
  632. // delta-based convergence test
  633. //
  634. // if past == 0 - disabled
  635. // if past > 0:
  636. // stop if |f(x) - f(x_past)| < delta * max(1, |f(x)|)
  637. //
  638. int past;
  639. float delta;
  640. // maximum number of iterations without improvement
  641. //
  642. // if 0 - disabled
  643. // if > 0:
  644. // assume convergence if no cost improvement in this number of iterations
  645. //
  646. int max_no_improvement;
  647. bool print_forward_graph;
  648. bool print_backward_graph;
  649. // ADAM parameters
  650. struct {
  651. int n_iter;
  652. float alpha; // learning rate
  653. float beta1;
  654. float beta2;
  655. float eps; // epsilon for numerical stability
  656. float eps_f; // epsilon for convergence test
  657. float eps_g; // epsilon for convergence test
  658. } adam;
  659. // LBFGS parameters
  660. struct {
  661. int m; // number of corrections to approximate the inv. Hessian
  662. int n_iter;
  663. int max_linesearch;
  664. float eps; // convergence tolerance
  665. float ftol; // line search tolerance
  666. float wolfe;
  667. float min_step;
  668. float max_step;
  669. enum ggml_linesearch linesearch;
  670. } lbfgs;
  671. };
  672. struct ggml_opt_params ggml_opt_default_params(enum ggml_opt_type type);
  673. // optimize the function defined by the tensor f
  674. enum ggml_opt_result ggml_opt(
  675. struct ggml_context * ctx,
  676. struct ggml_opt_params params,
  677. struct ggml_tensor * f);
  678. //
  679. // quantization
  680. //
  681. size_t ggml_quantize_q4_0(const float * src, void * dst, int n, int k, int64_t * hist);
  682. size_t ggml_quantize_q4_1(const float * src, void * dst, int n, int k, int64_t * hist);
  683. size_t ggml_quantize_q4_2(const float * src, void * dst, int n, int k, int64_t * hist);
  684. //
  685. // system info
  686. //
  687. int ggml_cpu_has_avx(void);
  688. int ggml_cpu_has_avx2(void);
  689. int ggml_cpu_has_avx512(void);
  690. int ggml_cpu_has_avx512_vbmi(void);
  691. int ggml_cpu_has_avx512_vnni(void);
  692. int ggml_cpu_has_fma(void);
  693. int ggml_cpu_has_neon(void);
  694. int ggml_cpu_has_arm_fma(void);
  695. int ggml_cpu_has_f16c(void);
  696. int ggml_cpu_has_fp16_va(void);
  697. int ggml_cpu_has_wasm_simd(void);
  698. int ggml_cpu_has_blas(void);
  699. int ggml_cpu_has_cublas(void);
  700. int ggml_cpu_has_sse3(void);
  701. int ggml_cpu_has_vsx(void);
  702. //
  703. // Internal types and functions exposed for tests and benchmarks
  704. //
  705. #ifdef __cplusplus
  706. // restrict not standard in C++
  707. #define GGML_RESTRICT
  708. #else
  709. #define GGML_RESTRICT restrict
  710. #endif
  711. typedef void (*dequantize_row_q_t)(const void * GGML_RESTRICT x, float * GGML_RESTRICT y, int k);
  712. typedef void (*quantize_row_q_t)(const float * GGML_RESTRICT x, void * GGML_RESTRICT y, int k);
  713. typedef void (*vec_dot_q_t)(const int n, float * GGML_RESTRICT s, const void * GGML_RESTRICT x, const void * GGML_RESTRICT y);
  714. typedef struct {
  715. dequantize_row_q_t dequantize_row_q;
  716. quantize_row_q_t quantize_row_q;
  717. quantize_row_q_t quantize_row_q_reference;
  718. quantize_row_q_t quantize_row_q_dot;
  719. vec_dot_q_t vec_dot_q;
  720. } quantize_fns_t;
  721. quantize_fns_t ggml_internal_get_quantize_fn(size_t i);
  722. #ifdef __cplusplus
  723. }
  724. #endif