We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 981e961 commit 5309562Copy full SHA for 5309562
src/plugins/intel_cpu/src/utils/blob_dump.cpp
@@ -250,6 +250,20 @@ void BlobDumper::dumpAsTxt(std::ostream& stream) const {
250
}
251
break;
252
253
+ case ov::element::boolean: {
254
+ auto* blob_ptr = reinterpret_cast<const bool*>(ptr);
255
+ for (size_t i = 0; i < data_size; i++) {
256
+ stream << (blob_ptr[desc.getElementOffset(i)] ? 1 : 0) << '\n';
257
+ }
258
+ break;
259
260
+ case ov::element::string: {
261
+ auto* blob_ptr = reinterpret_cast<const std::string*>(ptr);
262
263
+ stream << blob_ptr[desc.getElementOffset(i)] << '\n';
264
265
266
267
default:
268
269
OPENVINO_THROW("Dumper. Unsupported precision");
0 commit comments