CMSIS-DSP: Updated html generation script.

Updated f16 header.
pull/19/head
Christophe Favergeon 5 years ago
parent 9168382637
commit c73527d560

@ -48,7 +48,7 @@ If it is not available, f16 version of the kernels
won't be built.
*/
#if !(__ARM_FEATURE_MVE & 2) && !(__ARM_NEON)
#if !(__ARM_FEATURE_MVE & 2)
#if defined(__ARM_FP16_FORMAT_IEEE) || defined(__ARM_FP16_FORMAT_ALTERNATIVE)
typedef __fp16 float16_t;
#define ARM_FLOAT16_SUPPORTED

@ -516,10 +516,14 @@ def regressionTableFor(byname,name,section,ref,toSort,indexCols,field):
values=[field], aggfunc='first',fill_value="NA")
data=data.sort_values(toSort)
cores = [c[1] for c in list(data.columns)]
if args.byc:
cores = [(c[1] + ":" + c[2]) for c in list(data.columns)]
else:
cores = [c[1] for c in list(data.columns)]
columns = diff(indexCols,['name'])
dataTable=Table(columns,cores)
section.addContent(dataTable)

Loading…
Cancel
Save