Displaying 4 results from an estimated 4 matches for "30c7423".
Did you mean:
30723
2015 Jan 29
2
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...ch someone may ultimately build on
a completely different system, but I'm not sure how much effort it's
worth to try to fix that. Probably not much.
> diff --git a/celt/dump_modes/dump_mode_arm_ne10.c b/celt/dump_modes/dump_mode_arm_ne10.c
> new file mode 100644
> index 0000000..30c7423
> --- /dev/null
> +++ b/celt/dump_modes/dump_mode_arm_ne10.c
"dump_modes_arm_ne10.c"
> + fprintf(file, "{%f,%f},%c", cfg->twiddles[j].r, cfg->twiddles[j].i,(j+4)%3==0?'\n':' ');
Please use the same conversion specification as dump_modes....
2015 Jan 29
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
...n a
> completely different system, but I'm not sure how much effort it's worth to
> try to fix that. Probably not much.
>
>> diff --git a/celt/dump_modes/dump_mode_arm_ne10.c
>> b/celt/dump_modes/dump_mode_arm_ne10.c
>> new file mode 100644
>> index 0000000..30c7423
>> --- /dev/null
>> +++ b/celt/dump_modes/dump_mode_arm_ne10.c
>
>
> "dump_modes_arm_ne10.c"
>
>> + fprintf(file, "{%f,%f},%c", cfg->twiddles[j].r,
>> cfg->twiddles[j].i,(j+4)%3==0?'\n':' ');
>
>
> Please...
2015 Jan 20
6
[RFC PATCH v1 0/2] Encode optimize using libNE10
Hello opus-dev,
I've been cooking up this patchset to integrate NE10 library into opus.
Current patchset focuses on encode use case mainly effecting performance of
clt_mdct_forward() and opus_fft() (for float only)
Glad to report the following on Encode use case:
(Measured on my Beaglebone Black Cortex-A8 board)
- Performance improvement for encode use case ~= 12.34% (Based on time -p
2015 Jan 20
0
[RFC PATCH v1 2/2] armv7(float): Optimize encode usecase using NE10 library
..../mdct.c ../kiss_fft.c -o dump_modes -lm
+ $(PREFIX)$(CC) $(CFLAGS) $(INCLUDES) -DCUSTOM_MODES_ONLY -DCUSTOM_MODES $(SOURCES) -o $@ $(LIBDIR) -lm
clean:
rm -f dump_modes
diff --git a/celt/dump_modes/dump_mode_arm_ne10.c b/celt/dump_modes/dump_mode_arm_ne10.c
new file mode 100644
index 0000000..30c7423
--- /dev/null
+++ b/celt/dump_modes/dump_mode_arm_ne10.c
@@ -0,0 +1,103 @@
+/* Copyright (c) 2015-2016 Xiph.Org Foundation
+ Written by Viswanath Puttagunta */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following co...