This commit is contained in:
hu-po
2023-07-24 07:35:12 -05:00
committed by GitHub
parent d548245321
commit d95c7617c6
+1 -1
View File
@@ -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;