Skip to content

Commit 8ee0c96

Browse files
committed
fix compile warn
1 parent e683b9a commit 8ee0c96

File tree

1 file changed

+1
-1
lines changed
  • examples/control-vector-generator

1 file changed

+1
-1
lines changed

examples/control-vector-generator/pca.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ static void run_pca(
325325
params.i_layer = il;
326326
params.n_layers = v_input.size();
327327
power_iteration(params, v_input[il], ctrl_out);
328-
printf("%s: Done layer %d / %d\n", __func__, (int) il+1, v_input.size());
328+
printf("%s: Done layer %d / %d\n", __func__, (int) il+1, (int) v_input.size());
329329
//print_debug_tensor(ctrl_out);
330330
}
331331
}

0 commit comments

Comments
 (0)