Skip to content

Commit

Permalink
Fixing slowdown with cuda
Browse files Browse the repository at this point in the history
see #134
  • Loading branch information
kaixxx committed Feb 21, 2025
1 parent 8f08058 commit 2e94225
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noScribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1627,9 +1627,9 @@ def adjust_for_pause(segment):
def button_start_event(self):
wkr = Thread(target=self.transcription_worker)
wkr.start()
while wkr.is_alive():
self.update()
time.sleep(0.1)
#while wkr.is_alive():
# self.update()
# time.sleep(0.1)

# End main function Button Start
################################################################################################
Expand Down

0 comments on commit 2e94225

Please sign in to comment.