0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-29 15:28:20 +02:00

ircd::gpt: Remove unnecessary packed attribute.

This commit is contained in:
Jason Volk 2021-08-01 03:20:13 -07:00
parent 5518daf197
commit 1eec9bfd64

View file

@ -69,8 +69,7 @@ struct ircd::gpt::model::block
norm ln2;
model::ffnn ffnn;
}
__attribute__((packed));
};
/// Vocabulary embeddings
struct ircd::gpt::model::embed
@ -86,5 +85,4 @@ struct ircd::gpt::model::decoder
norm f;
embed word;
}
__attribute__((packed));
};