Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit c642b9c

Browse files
committed
CIFAR importer fix: cout names_array[fi]
1 parent f491e27 commit c642b9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data_io/CIFARImporter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class CIFARImporter: public mic::data_io::Importer< mic::types::Tensor<eT>, unsi
106106
LOG(LSTATUS) << "Opening file containing CIFAR file: " << names_array[fi];
107107
std::ifstream cifar_file(names_array[fi], std::ios::in | std::ios::binary);
108108
if (!cifar_file.is_open()) {
109-
LOG(LFATAL) << "Oops! Couldn't find file: " << cifar_file;
109+
LOG(LFATAL) << "Oops! Couldn't find file: " << names_array[fi];
110110
return false;
111111
}//: else
112112

0 commit comments

Comments
 (0)