MCPcopy Create free account
hub / github.com/NVIDIA/DALI / load_test_operator_plugin

Function load_test_operator_plugin

dali/test/python/test_utils.py:1041–1048  ·  view source on GitHub ↗

Load plugin containing the test operators from: `dali/test/operators`.

()

Source from the content-addressed store, hash-verified

1039
1040
1041def load_test_operator_plugin():
1042 """Load plugin containing the test operators from: `dali/test/operators`."""
1043 test_bin_dir = os.path.dirname(dali.__file__) + "/test"
1044 try:
1045 plugin_manager.load_library(test_bin_dir + "/libtestoperatorplugin.so")
1046 except RuntimeError:
1047 # in conda "libtestoperatorplugin" lands inside lib/ dir
1048 plugin_manager.load_library("libtestoperatorplugin.so")
1049
1050
1051def is_of_supported(device_id=0):

Callers 4

setUpModuleFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected