The input embedding starts all HC streams with the same token vector. */
| 6502 | if (!cursor_read(&c, &v, sizeof(v))) ds4_die(c.error); |
| 6503 | got = (float)v; |
| 6504 | } |
| 6505 | config_expect_f32("swiglu_clamp_exp", got, DS4_SWIGLU_CLAMP_EXP); |
| 6506 | } |
| 6507 | } |
| 6508 | |
| 6509 | static void config_expect_u32(const char *name, uint32_t got, uint32_t expected) { |
| 6510 | if (got == expected) return; |
| 6511 | fprintf(stderr, "ds4: expected %s=%u for %s, got %u\n", |
no outgoing calls
no test coverage detected