Aditya Sahu commited on
Commit
54fdf87
·
verified ·
1 Parent(s): c817689

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -226,7 +226,10 @@ footer, .gradio-footer, .svelte-1ipelgc, .gradio-logo, .gradio-app__settings {
226
  with gr.Blocks(css=custom_css) as demo:
227
  gr.Markdown("<h1 style='font-size:2.5em; color:#007dc3; margin-bottom:0;'>SR100 Model Compiler</h1>", elem_id="main_title")
228
  gr.Markdown("<h3 style='margin-top:0; color:#000;'>Bring a TFlite INT8 model and compile it for Synaptics Astra SR100. Learn more at <a href='https://developer.synaptics.com/docs/sr/sr100/quick-start?utm_source=hf' target='_blank' style='color:#007dc3; text-decoration:underline;'>Synaptics AI Developer Zone</a></h3>", elem_id="subtitle")
229
- gr.Markdown("<p style='margin-top:0; color:#000; font-style:italic;'>Please note: VMEM is fast memory, LPMEM is slow memory. Always make sure the Arena cache size is less than the VMEM for the model to fit correctly.</p>", elem_id="memory_note")
 
 
 
230
 
231
  with gr.Row():
232
  vmem_slider = gr.Slider(minimum=1, maximum=1536, step=1.024, label="Set total VMEM SRAM size available in kB", value=1536.0)
 
226
  with gr.Blocks(css=custom_css) as demo:
227
  gr.Markdown("<h1 style='font-size:2.5em; color:#007dc3; margin-bottom:0;'>SR100 Model Compiler</h1>", elem_id="main_title")
228
  gr.Markdown("<h3 style='margin-top:0; color:#000;'>Bring a TFlite INT8 model and compile it for Synaptics Astra SR100. Learn more at <a href='https://developer.synaptics.com/docs/sr/sr100/quick-start?utm_source=hf' target='_blank' style='color:#007dc3; text-decoration:underline;'>Synaptics AI Developer Zone</a></h3>", elem_id="subtitle")
229
+ gr.Markdown(
230
+ "<p style='margin-top:0; color:#000; font-style:italic;'>VMEM is fast memory used for high-speed operations, while LPMEM is slower and mainly for less performance-critical data.<br>Keep the Arena cache size smaller than VMEM to ensure the model fits and runs correctly.</p>",
231
+ elem_id="memory_note"
232
+ )
233
 
234
  with gr.Row():
235
  vmem_slider = gr.Slider(minimum=1, maximum=1536, step=1.024, label="Set total VMEM SRAM size available in kB", value=1536.0)