arjunanand13 commited on
Commit
6c69f7c
1 Parent(s): 4777fa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -147,8 +147,9 @@ def qa_infer(query):
147
  return result['answer']
148
 
149
  EXAMPLES = ["How to use IPU1_0 instead of A15_0 to process NDK in TDA2x-EVM",
150
- "Can BQ25896 support I2C interface?",
151
- "Does TDA2 vout support bt656 8-bit mode?"]
 
152
 
153
  demo = gr.Interface(fn=qa_infer, inputs="text", allow_flagging='never', examples=EXAMPLES, cache_examples=False, outputs="text")
154
  demo.launch()
 
147
  return result['answer']
148
 
149
  EXAMPLES = ["How to use IPU1_0 instead of A15_0 to process NDK in TDA2x-EVM",
150
+ "
151
+ I am using Code Composer Studio 5.4.0.00091 and enabled FPv4SPD16 floating point support for CortexM4 in TDA2. However, after building the project, the .asm file shows --float_support=vfplib instead of FPv4SPD16. Why is this happening?",
152
+ "Master core in TDA2XX is a15 and in TDA3XX it is m4,so we have to shift all modules that are being used by a15 in TDA2XX to m4 in TDA3xx."]
153
 
154
  demo = gr.Interface(fn=qa_infer, inputs="text", allow_flagging='never', examples=EXAMPLES, cache_examples=False, outputs="text")
155
  demo.launch()