Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
Printout inference steps|total steps (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: Greg Boland <[email protected]>
  • Loading branch information
faberga and boland25 authored Jul 28, 2020
1 parent d5bc881 commit e961f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/credit_card_fraud/credit_card_fraud.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ int main(int argc,char** argv){
nn=numBatches;
for(int i=0; i<nn; ++i){

cout << endl << "*** Performing inference on batch " << i+1 << "/" << numBatches << " ***" << endl;
cout << endl << "*** Performing inference on batch " << i+1 << "/" << nn << " ***" << endl;
HELIB_NTIMER_START(time_for_single_batch);
// define names of files to be used to save encrypted batch of samples and their correspondent predictions
const string encryptedSamplesFile = outDir + "/encrypted_batch_samples_" + to_string(i) + ".bin";
Expand Down

0 comments on commit e961f6b

Please sign in to comment.