Start devloping vulkan

This commit is contained in:
2026-04-29 21:08:19 +07:00
parent c02a886327
commit 1a05d3a6d9
10 changed files with 70 additions and 37 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef TYPEDEF_H
#define TYPEDEF_H
const int MAX_CONTEXT = 32; // Сколько токенов видит сеть
const int EMBED_DIM = 8; // Размер вектора одного токена
const int MAX_VOCAB = 90; // Размер словаря
typedef enum { SIGMOID } FunctionActivate_t;
typedef struct { int size; FunctionActivate_t activate; } LayerStructure_t;
#endif