Skip to content

Commit 920cad0

Browse files
committed
Print correct blob size for CiD
1 parent bc166ed commit 920cad0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/plugins/intel_npu/src/compiler_adapter/src/driver_graph.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ void DriverGraph::custom_export(std::ostream& stream,
114114
} else {
115115
if (_logger.level() >= ov::log::Level::INFO) {
116116
std::stringstream str;
117-
str << "Blob size: " << mainBlobSize + initBlobSize + 4 * sizeof(uint32_t) + xmlSize + binSize << std::endl;
117+
str << "Blob size: " << mainBlobSize + initBlobSize << std::endl;
118+
str << "Blob size with weights: "
119+
<< _blob.size() + initBlob.size() + 4 * sizeof(uint32_t) + xmlSize + binSize << std::endl;
118120
_logger.info(str.str().c_str());
119121
}
120122
_logger.info("Write blob to stream successfully.");

0 commit comments

Comments
 (0)