Merge pull request #36 from hu-po/patch-1

typo
This commit is contained in:
Andrej
2023-07-24 07:27:36 -07:00
committed by GitHub
+1 -1
View File
@@ -225,7 +225,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;