From 1eec9bfd64a44738f37169d67dbaaf6872dad388 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sun, 1 Aug 2021 03:20:13 -0700 Subject: [PATCH] ircd::gpt: Remove unnecessary packed attribute. --- include/ircd/gpt/model.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/ircd/gpt/model.h b/include/ircd/gpt/model.h index 2f124e3fd..59ebaeb42 100644 --- a/include/ircd/gpt/model.h +++ b/include/ircd/gpt/model.h @@ -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)); +};