search for: flac__use_altivec

Displaying 4 results from an estimated 4 matches for "flac__use_altivec".

2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to get it. Here's what I have: -a new file, lpc_asm.s, which has the assembly routines -changes to cpu.h, cpu.c, and stream_decoder.c to enable them -changes to configure.in to support the new cpu stuff -a preliminary Makefile.am -maybe something else I'm forgetting Now automake complains that configure.in
2004 Sep 10
2
Altivec, automake
...+ AC_ARG_ENABLE(altivec, + [ --disable-altivec Disable Altivec optimizations], + [case "${enableval}" in + yes) use_altivec=true ;; + no) use_altivec=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;; + esac],[use_altivec=true]) + AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue) + if test x$use_altivec = xtrue ; then + AC_DEFINE(FLAC__USE_ALTIVEC) + fi + AC_ARG_ENABLE(local-xmms-plugin, [ --enable-local-xmms-plugin Install XMMS plugin to ~/.xmms/Plugins instead of system location], [case "${enableval}" in *************** *...
2013 Dec 04
1
[PATCH] Fix Makefile.am altivec logic
...m index 247e33c..258de40 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -47,8 +47,7 @@ CPUCFLAGS = -faltivec -force_cpusubtype_ALL -DFLAC__NO_ASM else # Linux-gcc for PPC does not have -force_cpusubtype_ALL, it is Darwin-specific CPUCFLAGS = -if FLaC__CPU_PPC_SPE -else +if FLaC__USE_ALTIVEC CPUCFLAGS += -maltivec -mabi=altivec endif #@@@ PPC optimizations temporarily disabled -- 1.8.3.2
2018 Jul 10
9
[PATCH 0/7] PowerPC64 performance improvements
The following series adds initial vector support for PowerPC64. On POWER9, flac --best is about 3.3x faster. Amitay Isaacs (2): Add m4 macro to check for C __attribute__ features Check if compiler supports target attribute on ppc64 Anton Blanchard (5): configure.ac: Remove SPE detection code configure.ac: Add VSX enable/disable configure.ac: Fix FLAC__CPU_PPC on little endian, and add