全功能实现,验证通过,暂未精简

This commit is contained in:
Qiea
2024-11-11 14:34:09 +08:00
parent 2a6580ac30
commit f52b9f1aee
4 changed files with 115 additions and 27 deletions

View File

@@ -8,6 +8,7 @@
#include <stdint.h>
typedef struct {
char* name;
char* dname;
@@ -33,7 +34,11 @@ typedef struct {
#define FC1_WEIGHT_ARRSIZE (128*18432) //2359296
#define FC2_BIAS_ARRSIZE (7)
#define FC2_WEIGHT_ARRSIZE (7*128) //896
#define DATA_ARRSIZE (100*100) //1250000
#if 1
#define DATA_ARRSIZE (1250000)
#else
#define DATA_ARRSIZE (100 * 100)
#endif