Commit 125c5d6 1 parent e4ae200 commit 125c5d6 Copy full SHA for 125c5d6
File tree 4 files changed +398
-13
lines changed
4 files changed +398
-13
lines changed Original file line number Diff line number Diff line change 2
2
# Core TensorRT nodes
3
3
comfyui-tensorrt :
4
4
name : " ComfyUI TensorRT"
5
- url : " https://github.com/yondonfu /ComfyUI_TensorRT"
6
- branch : " quantization_with_controlnet_fixes "
5
+ url : " https://github.com/ryanontheinside /ComfyUI_TensorRT"
6
+ branch : " hs-fix "
7
7
type : " tensorrt"
8
8
9
9
comfyui-depthanything-tensorrt :
Original file line number Diff line number Diff line change 4
4
import json
5
5
import logging
6
6
7
+ import torch
8
+
9
+ # Initialize CUDA before any other imports to prevent core dump.
10
+ if torch .cuda .is_available ():
11
+ torch .cuda .init ()
12
+
13
+
7
14
from twilio .rest import Client
8
15
from aiohttp import web
9
16
from aiortc import (
Original file line number Diff line number Diff line change 7
7
package_dir = {"" : "src" },
8
8
install_requires = [
9
9
"asyncio" ,
10
- # Pin opentelemetry versions until this comfyui PR is merged:
11
- # https://github.com/hiddenswitch/ComfyUI/pull/26
12
- "opentelemetry-distro==0.48b0" ,
13
- "opentelemetry-exporter-otlp==1.27.0" ,
14
- "opentelemetry-propagator-jaeger==1.27.0" ,
15
- "opentelemetry-instrumentation==0.48b0" ,
16
- "opentelemetry-util-http==0.48b0" ,
17
- "opentelemetry-instrumentation-aio-pika==0.48b0" ,
18
- "opentelemetry-instrumentation-requests==0.48b0" ,
19
- "opentelemetry-semantic-conventions==0.48b0" ,
20
- "comfyui @ git+https://github.com/hiddenswitch/ComfyUI.git@89d07f3adf32a6703181343bc732bd85104bb653" ,
10
+ "comfyui @ git+https://github.com/hiddenswitch/ComfyUI.git@ce3583ad42c024b8f060d0002cbe20c265da6dc8" ,
21
11
],
22
12
extras_require = {"dev" : ["pytest" ]},
23
13
url = "https://github.com/yondonfu/comfystream" ,
You can’t perform that action at this time.
0 commit comments