Skip to content

Commit

Permalink
[XSICPP] typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maltanar committed Jan 10, 2025
1 parent 5003647 commit 8e7311a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/finn/qnn-data/cpp/xsi_simdriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,9 @@ int main(int argc, char *argv[]) {
results_file << "cycles" << "\t" << iters << endl;
results_file << "N" << "\t" << n_inferences << endl;
results_file << "latency_cycles" << "\t" << latency << endl;
results_file << "TIMEOUT" << "\t" << timeout ? 1 : 0<< endl;
results_file << "INPUT_DONE" << "\t" << input_done ? 1 : 0 << endl;
results_file << "OUTPUT_DONE" << "\t" << output_done ? 1 : 0 << endl;
results_file << "TIMEOUT" << "\t" << (timeout ? 1 : 0) << endl;
results_file << "INPUT_DONE" << "\t" << (input_done ? 1 : 0) << endl;
results_file << "OUTPUT_DONE" << "\t" << (output_done ? 1 : 0) << endl;
// optionally, extract more data from final status
@POSTPROC_CPP@
results_file.close();
Expand Down

0 comments on commit 8e7311a

Please sign in to comment.