Navigation
API > API/Runtime > API/Runtime/NNE
References
| Module | NNE |
| Header | /Engine/Source/Runtime/NNE/Public/NNE.h |
| Include | #include "NNE.h" |
namespace UE
{
namespace NNE
{
template<class T>
TWeakInterfacePtr< T > UE::NNE::GetRuntime
(
const FString & Name
)
}
}
Remarks
Find and return a runtime by name and interface.
This function tries to find a runtime by name and casts it to the interface passed as template argument (e.g. INNERuntime, INNERuntimeCPU or INNERuntimeRDG). A weak pointer to the runtime if it has been found and implements the interface in the template argument or an invalid pointer otherwise.
Parameters
| Name | Description |
|---|---|
| Name | The name of the runtime. |