I used these lines to set the DLA
(“config” is an Ibuilder config variable, DLACore is an integer equal to 0)
config->setDefaultDeviceType(nvinfer1::DeviceType::kDLA);
config->setEngineCapability(nvinfer1::EngineCapability::kDLA_STANDALONE);
config->setFlag(nvinfer1::BuilderFlag::kFP16);
config->setFlag(nvinfer1::BuilderFlag::kDIRECT_IO);
config->setDLACore(DLACore);
Hey thanks, removing that line helped.
Could you tell me why eaxctly that line would cause it to break, and what that Engine capability flag is used for if I can use the DLA without it?