Skip to content

Commit

Permalink
offload: do not always sequentially offload, what the hell
Browse files Browse the repository at this point in the history
  • Loading branch information
bghira committed Jul 16, 2023
1 parent c733e0a commit 09e9803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord_tron_client/classes/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_identifier(cls):
def should_offload(self):
return self.get_video_memory_info() == 'Unknown' or self.video_memory_amount < 48
def should_sequential_offload(self):
return self.should_offload() or self.video_memory_amount < 10
return self.should_offload() and self.video_memory_amount < 10

def get_system_capabilities(self):
self.get_gpu_info()
Expand Down

0 comments on commit 09e9803

Please sign in to comment.