mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-09-21 12:42:22 +08:00
11 lines
152 B
Python
11 lines
152 B
Python
import pytest
|
|
import torch
|
|
|
|
def clear_gpu_memory():
|
|
'''
|
|
clear GPU memory
|
|
'''
|
|
torch.cuda.empty_cache()
|
|
print("GPU memory cleared.")
|
|
|