| 86 | }; |
| 87 | |
| 88 | inline CLAccessor::CLAccessor(CLTensor &tensor) : _tensor{tensor} |
| 89 | { |
| 90 | if (!framework::Framework::get().configure_only() || !framework::Framework::get().new_fixture_call()) |
| 91 | { |
| 92 | _tensor.map(); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | inline CLAccessor::~CLAccessor() |
| 97 | { |
nothing calls this directly
no test coverage detected