From d95c7617c6fb45963a65c89c52084be6b4ee4e71 Mon Sep 17 00:00:00 2001 From: hu-po <8493427+hu-po@users.noreply.github.com> Date: Mon, 24 Jul 2023 07:35:12 -0500 Subject: [PATCH] typo --- run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.c b/run.c index fded591..f39f763 100644 --- a/run.c +++ b/run.c @@ -223,7 +223,7 @@ void matmul(float* xout, float* x, float* w, int n, int d) { void transformer(int token, int pos, Config* p, RunState* s, TransformerWeights* w) { - // a few convenice variables + // a few convenience variables float *x = s->x; int dim = p->dim; int hidden_dim = p->hidden_dim;