Displaying 17 results from an estimated 17 matches for "faltivec".
Did you mean:
altivec
2006 Oct 10
0
compiling error R-2.4.0
...arwinport, the Tcl/Tk package
from the dmg available from CRAN but without success.
The PATH is correct.
tclConfig.sh is localised in /opt/local/lib and have those permission:
-rw-r--r-- 2 root admin 7K Oct 9 09:49 tclConfig.sh
Here is the error produce by ./configure CFLAGS='-O3 -faltivec -fgcse-
sm -funroll-loops -fstrict-aliasing -fsched-interblock -falign-
loops=16 -falign-jumps=16 -falign-functions=16 -malign-natural -
freorder-blocks -freorder-blocks-and-partition -mpowerpc-gfxopt -
mpowerpc-gpopt -fstrict-aliasing -ftree-vectorize -mtune=G5 -mcpu=G5'
FFLAGS='-O3...
2008 May 16
2
Configure errors say to report here... (PR#11470)
...efix=/usr/local --with-x --without-R-framework --without-aqua --with-blas="/usr/local/lib/libptf77blas.a /usr/local/lib/libatlas.a" --with-lapack="/usr/local/lib/liblapack.a /usr/local/lib/libptf77blas.a /usr/local/lib/libatlas.a" CFLAGS="-maltivec -mabi=altivec -mtune=970 -faltivec -O3" CXXFLAGS="-maltivec -mabi=altivec -mtune=970 -faltivec -O3"
...the rest of configure completes fine, though when I try to build R, I
make eventually ends up failing in this manner:
gcc -std=gnu99 -I. -I../../src/include -I../../src/include -I/sw/include
-I/usr/
local/include -...
2004 Aug 06
3
libspeex/SSE Intrinsics with GCC 3.3.x
...Add to configure.in ++++++++
echo -n "Checking for Platform ASM Speedups..."
case "$target" in
i?86*)
CFLAGS="$CFLAGS -D_USE_SSE -O3 -msse"
echo "Found and Activating SSE"
;;
powerpc-apple-darwin*)
CFLAGS="-faltivec"
echo "Found and Activating Altivec"
;;
*)
echo "None Found"
;;
esac
<p>At 09:08 PM 4/1/2004, you wrote:
>I'm aware of the problem, but I don't know how to get autoconf to handle
>that properly. If someone knows...
2008 Oct 31
1
[LLVMdev] r57326 malfunctions?
...k/gcc/config/i386/darwin.h 2008/10/01 17:38:40 56923
+++ llvm-gcc-4.2/trunk/gcc/config/i386/darwin.h 2008/10/02 06:16:08 56946
@@ -101,6 +101,8 @@
%{!mmacosx-version-min=*: %{!miphoneos-version-min=*: %(darwin_cc1_minversion)}} \
"/* APPLE LOCAL ignore -mcpu=G4 -mcpu=G5 */"\
%<faltivec %<mno-fused-madd %<mlong-branch %<mlongcall %<mcpu=G4 %<mcpu=G5 \
+ "/* APPLE LOCAL enable format security warnings */"\
+ %{!Wno-format:-Wformat -Wformat-security} \
%{g: %{!fno-eliminate-unused-debug-symbols: -feliminate-unused-debug-symbols }}"
/* APPLE LOCA...
2004 Aug 06
0
Speex 1.1.4 is out
...t; in
i?86*)
CFLAGS="$CFLAGS -D_USE_SSE"
CXXFLAGS="$CXXFLAGS -march=pentium3 -D_USE_SSE"
echo "Found x86 - Adding SSE."
;;
powerpc-apple-darwin*)
CFLAGS="-D_USE_ALTIVEC"
CXXFLAGS="$CXXFLAGS -faltivec -O3 -fPIC -D_USE_ALTIVEC"
echo "Found Altivec"
;;
*)
echo "None Found"
;;
esac
<p>Since speex only uses .c files, 2b is a viable option.
Aron Rosenberg
SightSpeed
At 12:28 PM 1/21/2004, you wrote:
> > Is it a...
2004 Aug 06
0
libspeex/SSE Intrinsics with GCC 3.3.x
...-n "Checking for Platform ASM Speedups..."
> case "$target" in
> i?86*)
> CFLAGS="$CFLAGS -D_USE_SSE -O3 -msse"
> echo "Found and Activating SSE"
> ;;
> powerpc-apple-darwin*)
> CFLAGS="-faltivec"
> echo "Found and Activating Altivec"
> ;;
> *)
> echo "None Found"
> ;;
> esac
--
Jean-Marc Valin
http://www.xiph.org/~jm/
LABORIUS
Université de Sherbrooke, Québec, Canada
-------------- next part ----------...
2005 Jan 30
2
Patch : Fix one more Linux PowerPC problem
...erPC does not have the
-force_cpusubtype_ALL flag. On the Debian man page, that
compiler option is listed as being Darwin specific.
Erik
--- src/libFLAC/Makefile.am 30 Jan 2005 18:44:46 -0000 1.58
+++ src/libFLAC/Makefile.am 31 Jan 2005 02:33:14 -0000
@@ -40,7 +40,7 @@
CPUCFLAGS = -faltivec -force_cpusubtype_ALL -DFLAC__NO_ASM
else
#@@@@@@ PPC optimizations temporarily disabled
-CPUCFLAGS = -maltivec -mabi=altivec -force_cpusubtype_ALL -DFLAC__NO_ASM
+CPUCFLAGS = -maltivec -mabi=altivec -DFLAC__NO_ASM
endif
endif
--
+-----------------------------------------------------------+...
2013 Dec 04
1
[PATCH] Fix Makefile.am altivec logic
...ustavo at zacarias.com.ar>
---
src/libFLAC/Makefile.am | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am
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
2003 Oct 12
1
Altivec-enabled libvorbis...
...dct.c...where most of
the vectorization occurs...these files lean towards a 50% speedup.
Anyhow, if someone wanted to get these changes into a mainline
libvorbis, they should:
- diff libogg and libvorbis from that CVS.
- Make sure the build system #defines MACOSX=1 and gcc is invoked with
the -faltivec command line (-O3, -ffast-math, and -falign-loops=16 are
huge helps, too).
- Change the _al_has_vector_unit() define in misc.h to point to a static
variable in libvorbis and set that variable in a convenient place during
initialization. Currently this variable exists in my AL implementation
and...
2004 Aug 06
3
Speex 1.1.4 is out
> Is it a problem if all the files are compiled with -march=pentium3
> ? The patch that we sent in already detects in the configure.in script
> which system you are on and sets a define correctly, i.e. _USE_SSE.
Well, if what you want is auto-detection, turning on -march=pentium3
means that the code will crash on anything lower than a pentium3. Not
really useful. Of course,
2006 Jun 04
1
Help with compilation of app_conference in x86_64
...-mfpmath=sse,387 -ffast-math
# PERF: below is 10% faster than -O2 or -O3 alone.
#CFLAGS += -O3 -ffast-math -funroll-loops
# below is another 5% faster or so.
CFLAGS += -O3 -ffast-math -funroll-all-loops -fprefetch-loop-arrays
-fsingle-precision-constant
# this is fun for PPC
#CFLAGS += -mcpu=7450 -faltivec -mabi=altivec -mdynamic-no-pic
# this is fun for x86
# The line below was commented by Erick Perez eaperezh@gmail.com
#CFLAGS += -march=pentium3 -msse -mfpmath=sse,387
# adding -msse -mfpmath=sse has little effect.
#CFLAGS += -O3 -msse -mfpmath=sse
#CFLAGS += $(shell if $(CC) -march=$(PROC) -S -...
2006 Jun 04
1
Compiling VD_app_conference for x86_64
Do anybody could compile app_conference on x86_64??? I tryied with two
versions of app_conference and got the same problem on compiling:
relocation R_X86_64_32 against `a local symbol' can not be used when
making a shared recompile with -fPIC
app_conference.o: could not read symbols: Bad value"
ENVIRONMENT:
2006 Apr 14
2
[LLVMdev] [DRAFT] LLVM 1.7 release announcement notes [DRAFT]
...ation of SSE3 instructions (e.g. fisttp) on
subtargets that support it.
PowerPC-Specific Code Generator Improvements:
* Full support for the Altivec instruction set, accessible with the GCC
generic vector extension and the altivec.h intrinsics (llvmgcc4 only),
including support for -faltivec and -maltivec.
* Nate greatly simplified the PowerPC branch selector, making it more
aggressive and removing support code from the target-independent code
in the process.
* Support for -static and -fpic codegen on Darwin.
* Many improvements in the generated code.
IA64-Specific Code Ge...
2006 Apr 20
0
[LLVMdev] [DRAFT] LLVM 1.7 release announcement notes [DRAFT]
.... fisttp) on
> subtargets that support it.
>
>
> PowerPC-Specific Code Generator Improvements:
>
> * Full support for the Altivec instruction set, accessible with the GCC
> generic vector extension and the altivec.h intrinsics (llvmgcc4 only),
> including support for -faltivec and -maltivec.
> * Nate greatly simplified the PowerPC branch selector, making it more
> aggressive and removing support code from the target-independent code
> in the process.
> * Support for -static and -fpic codegen on Darwin.
> * Many improvements in the generated code.
&g...
2004 Aug 06
4
libspeex/SSE Intrinsics with GCC 3.3.x
When compiling Speex 1.1.4 with GCC 3.3.2, the option -msse must be
added to the CFLAGS in libspeex/Makefile.
GCC 3.1.1 added a new option "-msse" (see
http://gcc.gnu.org/gcc-3.1/changes.html , specifically under "New
Targets and Target Specific Improvements") to enable SSE instructions
within the compiler's output (for appropriate architectures).
Compiling speex on
2006 Apr 20
0
LLVM 1.7 Release!
...on subtargets that support it.
PowerPC-Specific Code Generator Improvements:
49. The PowerPC backend now includes full support for the Altivec
instruction set, accessible with the GCC generic vector extension and
the altivec.h intrinsics (llvmgcc4 only), including support for
-faltivec and -maltivec.
50. Nate greatly simplified the PowerPC branch selector, making it more
aggressive and removing support code from the target-independent code
in the process.
51. The PowerPC backend now supports -static and -fpic codegen on Darwin.
52. Many improvements in the generated cod...
2008 Nov 02
1
[LLVMdev] llvm-2.4 prerelease gfortran results
...008-11-01 22:59:42.000000000 -0400
+++ llvm-gcc4.2-2.4.source/gcc/config/i386/darwin.h 2008-11-01 23:00:37.000000000 -0400
@@ -101,8 +101,6 @@
%{!mmacosx-version-min=*: %{!miphoneos-version-min=*: %(darwin_cc1_minversion)}} \
"/* APPLE LOCAL ignore -mcpu=G4 -mcpu=G5 */"\
%<faltivec %<mno-fused-madd %<mlong-branch %<mlongcall %<mcpu=G4 %<mcpu=G5 \
- "/* APPLE LOCAL enable format security warnings */"\
- %{!Wno-format:-Wformat -Wformat-security} \
%{g: %{!fno-eliminate-unused-debug-symbols: -feliminate-unused-debug-symbols }}"
/* APPLE LOCA...