Spaces:
Runtime error
Runtime error
File size: 2,898 Bytes
46a5dbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# ltx_upscaler_manager_helpers.py
# Gerente de Pool para o revezamento de workers de Upscaling.
# Este arquivo Γ© parte do projeto Euia-AducSdr e estΓ‘ sob a licenΓ§a AGPL v3.
# Copyright (C) 4 de Agosto de 2025 Carlos Rodrigues dos Santos
import torch
import gc
import os
import threading
from ltx_worker_upscaler import LtxUpscaler
class LtxUpscalerPoolManager:
"""
Gerencia um pool de LtxUpscalerWorkers, orquestrando um revezamento entre GPUs
para a tarefa de upscaling.
"""
def __init__(self, device_ids=['cuda:2', 'cuda:3']):
print(f"LTX UPSCALER POOL MANAGER: Criando workers para os dispositivos: {device_ids}")
self.workers = [LtxUpscaler(device_id) for device_id in device_ids]
self.current_worker_index = 0
self.lock = threading.Lock()
self.last_cleanup_thread = None
def _cleanup_worker(self, worker):
"""FunΓ§Γ£o alvo para a thread de limpeza em background."""
print(f"UPSCALER CLEANUP THREAD: Iniciando limpeza da GPU {worker.device}...")
worker.to_cpu()
print(f"UPSCALER CLEANUP THREAD: Limpeza da GPU {worker.device} concluΓda.")
def upscale_video_fragment(self, video_path_low_res: str, output_path: str, video_fps: int):
"""
Seleciona um worker livre, faz o upscale de um fragmento e limpa o worker anterior.
"""
worker_to_use = None
try:
with self.lock:
if self.last_cleanup_thread and self.last_cleanup_thread.is_alive():
print("UPSCALER POOL MANAGER: Aguardando limpeza da GPU anterior...")
self.last_cleanup_thread.join()
worker_to_use = self.workers[self.current_worker_index]
previous_worker_index = (self.current_worker_index - 1 + len(self.workers)) % len(self.workers)
worker_to_cleanup = self.workers[previous_worker_index]
cleanup_thread = threading.Thread(target=self._cleanup_worker, args=(worker_to_cleanup,))
cleanup_thread.start()
self.last_cleanup_thread = cleanup_thread
worker_to_use.to_gpu()
self.current_worker_index = (self.current_worker_index + 1) % len(self.workers)
print(f"UPSCALER POOL MANAGER: Worker em {worker_to_use.device} iniciando upscale de {os.path.basename(video_path_low_res)}...")
worker_to_use.upscale_video_fragment(video_path_low_res, output_path, video_fps)
print(f"UPSCALER POOL MANAGER: Upscale de {os.path.basename(video_path_low_res)} concluΓdo.")
finally:
# A limpeza do worker_to_use serΓ‘ feita na prΓ³xima chamada
pass
# --- InstΓ’ncia Singleton do Gerenciador de Upscaling ---
ltx_upscaler_manager_singleton = LtxUpscalerPoolManager(device_ids=['cuda:2', 'cuda:3']) |