// Iterate and write all the keys first, each row is a cell
// Get whole range at a time
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers (read_data will handle this by checking "r_l" and "s_l" for null)
+ if (r_l[il] == nullptr) continue;
// Write key type
const int32_t r_type_i = (int32_t)r_l[il]->type;
if (!s_trans) {
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers (read_data will handle this by checking "r_l" and "s_l" for null)
+ if (s_l[il] == nullptr) continue;
// Write value type
const int32_t s_type_i = (int32_t)s_l[il]->type;
// When v is transposed, we also need the element size and get the element ranges from each row
const uint32_t mem_size = size;
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers (read_data will handle this by checking "r_l" and "s_l" for null)
+ if (s_l[il] == nullptr) continue;
+
const uint32_t n_embd_s = hparams.n_embd_s();
// Write value type
// For each layer, read the keys for each cell, one row is one cell, read as one contiguous block
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers
+ if (r_l[il] == nullptr) continue;
// Read type of key
int32_t r_type_i_ref;
if (!s_trans) {
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers
+ if (s_l[il] == nullptr) continue;
// Read type of value
int32_t s_type_i_ref;
io.read_to(&s_type_i_ref, sizeof(s_type_i_ref));
const int32_t s_type_i = (int32_t)s_l[il]->type;
+
if (s_type_i != s_type_i_ref) {
LLAMA_LOG_ERROR("%s: mismatched s type (%d != %d, layer %d)\n", __func__, s_type_i, s_type_i_ref, il);
return false;
} else {
// For each layer, read the values for each cell (transposed)
for (uint32_t il = 0; il < n_layer; ++il) {
+ // skip null layers
+ if (s_l[il] == nullptr) continue;
+
const uint32_t n_embd_s = hparams.n_embd_s();
// Read type of value