mirror of
https://github.com/jasonppy/VoiceCraft.git
synced 2025-03-01 09:57:44 +01:00
Merge pull request #75 from Ph0rk0z/patch-2
Empty cuda cache between inferences.
This commit is contained in:
commit
2ae80ef87a
@ -98,7 +98,9 @@ def inference_one_sample(model, model_args, phn2num, text_tokenizer, audio_token
|
|||||||
gen_sample = audio_tokenizer.decode(
|
gen_sample = audio_tokenizer.decode(
|
||||||
[(gen_frames, None)]
|
[(gen_frames, None)]
|
||||||
)
|
)
|
||||||
|
#Empty cuda cache between runs
|
||||||
|
if torch.cuda.is_available():
|
||||||
|
torch.cuda.empty_cache()
|
||||||
# return
|
# return
|
||||||
return concat_sample, gen_sample
|
return concat_sample, gen_sample
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user