fffiloni commited on
Commit
d947f4e
1 Parent(s): 8198c95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,5 +1,8 @@
1
  import gradio as gr
2
  import subprocess
 
 
 
3
 
4
  def execute_command(command: str) -> None:
5
  subprocess.run(command, check=True)
 
1
  import gradio as gr
2
  import subprocess
3
+ import os
4
+
5
+ os.environ['MKL_THREADING_LAYER'] = 'GNU'
6
 
7
  def execute_command(command: str) -> None:
8
  subprocess.run(command, check=True)