fixed whitepace

This commit is contained in:
l3utterfly 2023-08-03 21:03:29 +08:00
parent 30144f7634
commit 142da8f9dc

View file

@ -67,7 +67,7 @@ int main(int argc, char ** argv) {
// Save state (rng, logits, embedding and kv_cache) to file
{
FILE *fp_write = fopen("dump_state.bin", "wb");
FILE *fp_write = fopen("dump_state.bin", "wb");
llama_copy_state_data(ctx, state_mem); // could also copy directly to memory mapped file
fwrite(state_mem, 1, state_size, fp_write);
fclose(fp_write);