| 367 | } |
| 368 | |
| 369 | IConnectableLayer* INetwork::AddPrecompiledLayer(const PreCompiledDescriptor& preCompiledDescriptor, |
| 370 | CompiledBlobPtr compiledBlobPtr, |
| 371 | const Optional<BackendId>& backend, |
| 372 | const char* name) |
| 373 | { |
| 374 | return pNetworkImpl->AddPrecompiledLayer(preCompiledDescriptor, std::move(compiledBlobPtr), backend, name); |
| 375 | } |
| 376 | |
| 377 | IConnectableLayer* INetwork::AddActivationLayer(const ActivationDescriptor& activationDescriptor, |
| 378 | const char* name) |
no test coverage detected