#ifndef WEIGHTS_LOADER_H #define WEIGHTS_LOADER_H #include struct ModelWeights; __INFINI_C __export void loadModelWeight(struct ModelWeights *weights, const char *name, void *data); __INFINI_C __export void loadModelWeightDistributed(struct ModelWeights *weights, const char *name, void *data, int *ranks, int nrank); #endif // WEIGHTS_LOADER_H