MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / get_padding_info

Function get_padding_info

src/core/Utils.cpp:462–475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460}
461
462std::unordered_map<const ITensorInfo *, PaddingSize> get_padding_info(std::initializer_list<const ITensor *> tensors)
463{
464 std::unordered_map<const ITensorInfo *, PaddingSize> res;
465
466 for (const ITensor *tensor : tensors)
467 {
468 if (tensor)
469 {
470 res.insert({tensor->info(), tensor->info()->padding()});
471 }
472 }
473
474 return res;
475}
476
477std::unordered_map<const ITensorInfo *, PaddingSize> get_padding_info(std::initializer_list<const ITensorInfo *> infos)
478{

Callers 15

configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85
configureMethod · 0.85

Calls 2

infoMethod · 0.45
paddingMethod · 0.45

Tested by

no test coverage detected