You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+146Lines changed: 146 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -283,6 +283,152 @@ if torchada.is_gpu_device(tensor):
283
283
284
284
This is a fundamental limitation because `device.type` is a C-level property that cannot be patched from Python. Downstream projects that check `device.type == "cuda"` need to be patched to use `torchada.is_gpu_device()` or check for both types: `device.type in ("cuda", "musa")`.
285
285
286
+
## Real-World Integrations
287
+
288
+
torchada has been successfully integrated into several popular PyTorch-based projects. Below are examples demonstrating the typical integration patterns.
289
+
290
+
### Integrated Projects
291
+
292
+
| Project | Category | PR | Status |
293
+
|---------|----------|--------|--------|
294
+
|[ComfyUI](https://github.com/comfyanonymous/ComfyUI)| Image/Video Generation |[#11618](https://github.com/comfyanonymous/ComfyUI/pull/11618)| Open |
295
+
|[LightLLM](https://github.com/ModelTC/LightLLM)| LLM Inference |[#1162](https://github.com/ModelTC/LightLLM/pull/1162)| Open |
296
+
|[Xinference](https://github.com/xorbitsai/inference)| Model Serving |[#4425](https://github.com/xorbitsai/inference/pull/4425)| ✅ Merged |
0 commit comments