Upload custom_nodes/comfyui_controlnet_aux/src/custom_mmpkg/custom_mmcv/engine/__init__.py with huggingface_hub
Browse files
custom_nodes/comfyui_controlnet_aux/src/custom_mmpkg/custom_mmcv/engine/__init__.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright (c) OpenMMLab. All rights reserved.
|
| 2 |
+
from .test import (collect_results_cpu, collect_results_gpu, multi_gpu_test,
|
| 3 |
+
single_gpu_test)
|
| 4 |
+
|
| 5 |
+
__all__ = [
|
| 6 |
+
'collect_results_cpu', 'collect_results_gpu', 'multi_gpu_test',
|
| 7 |
+
'single_gpu_test'
|
| 8 |
+
]
|