Skip to content

Commit

Permalink
[DAP/Whisper] Remove perprocess result printing method.
Browse files Browse the repository at this point in the history
  • Loading branch information
taiqzheng committed Jul 2, 2024
1 parent c622a8f commit bb4627b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions examples/DAPDialect/WhisperPreprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,17 @@ int main() {
<< "s\n"
<< std::endl;

/// Print output to txt.
ofstream fout("output.txt");
// Generate whisper preprocessor result.
fout << "-----------------------------------------" << std::endl;
fout << "[ whisper preprocessor result ]" << std::endl;
fout << "-----------------------------------------" << std::endl;
// Print reuslt data.
for (int i = 0; i < 240000; ++i) {
fout << outputContainer[i] << std::endl;
}
fout.close();
// /// Print output to txt.
// ofstream fout("output.txt");
// // Generate whisper preprocessor result.
// fout << "-----------------------------------------" << std::endl;
// fout << "[ whisper preprocessor result ]" << std::endl;
// fout << "-----------------------------------------" << std::endl;
// // Print reuslt data.
// for (int i = 0; i < 240000; ++i) {
// fout << outputContainer[i] << std::endl;
// }
// fout.close();

return 0;
}

0 comments on commit bb4627b

Please sign in to comment.