search for: bigfib

Displaying 20 results from an estimated 52 matches for "bigfib".

2007 Aug 25
0
[LLVMdev] ccbench: compiler shotout benchmark script
...produces VERY large programs for any program that uses libstdc++, because it was compiled with --disable-shared. Here is an example where you can see the effect of the "-Os" compiler switch to various C++ programs: $ ./ccbench -- "-O0" "-O2" "-Os" | sort bigfib.cpp 0.16 5.28 18763 432 572 g++-4.2 -O2 bigfib.cpp 0.17 2.42 371805 12589 23736 llvm-g++ -Os bigfib.cpp 0.17 3.75 26810 1116 1380 icc -Os bigfib.cpp 0.17 3.85 28902 1116 1380 icc -O2 bigfib...
2004 Oct 05
0
[LLVMdev] Starting with LLVM-GCC on Cygwin
...testsuite "Computing very large Fibonacci numbers" at > http://article.gmane.org/gmane.comp.lang.c%2B%2B.perfometer/37. Out of curiousity, I ran some quick tests on a AMD Athlon(TM) MP 2100+ box running Redhat linux 7.1. With the LLVM C backend and GCC 3.3 -O3, I got: $ time Output/bigfib.cbe th 50000 > /dev/null 0.800u 0.190s 0:00.99 100.0% 0+0k 0+0io 245pf+0w $ time Output/bigfib.cbe th 50000 > /dev/null 0.800u 0.190s 0:00.99 100.0% 0+0k 0+0io 245pf+0w $ time Output/bigfib.cbe th 50000 > /dev/null 0.770u 0.230s 0:00.99 101.0% 0+0k 0+0io 245pf+0w Native GCC 3.3 -...
2004 Oct 05
5
[LLVMdev] Starting with LLVM-GCC on Cygwin
Hi, I would like to use LLVM-GCC to compare its performance with other compilers. Something like testsuite "Computing very large Fibonacci numbers" at http://article.gmane.org/gmane.comp.lang.c%2B%2B.perfometer/37. My environment: ----------------- Windows 2000 Cygwin $ uname -srom CYGWIN_NT-5.0 1.5.11(0.116/4/2) i686 Cygwin ----------------- What do I have to download from
2006 Nov 08
0
[LLVMdev] 1.9 Next Steps
...4 llc /SingleSource/Benchmarks/CoyoteBench/fftbench jit /SingleSource/Benchmarks/CoyoteBench/fftbench ^^ PR990 llc /SingleSource/Benchmarks/Shootout-C++/except jit /SingleSource/Benchmarks/Shootout-C++/except cbe /SingleSource/Benchmarks/Shootout-C++/except llc /SingleSource/Benchmarks/Misc-C++/bigfib jit /SingleSource/Benchmarks/Misc-C++/bigfib ^^ C++ EH again llc /SingleSource/CustomChecked/oopack_v1p8 cbe /SingleSource/CustomChecked/oopack_v1p8 ^^ Not sure, but I suspect its lack of vector support again. On Tue, 2006-11-07 at 22:39 -0800, Tanya M. Lattner wrote: > I created the 1.9 r...
2004 Oct 06
0
[LLVMdev] Re: Starting with LLVM-GCC on Cygwin
On Wed, 6 Oct 2004, Alex Vinokur wrote: > > have less impact than for a CPU bound program). In any case, I've added > > this program to the LLVM testsuite as > > SingleSource/Benchmarks/Misc-C++/bigfib.cpp, so we should have numbers for > > it generated every night on multiple platforms. > > > [snip] > > Newsgroup http://news.gmane.org/gmane.comp.lang.c%2B%2B.perfometer contains another testsuites. > For instance: > 2. C/C++ Program Perfometer > http://sourceforge.n...
2004 Oct 06
3
[LLVMdev] Re: Starting with LLVM-GCC on Cygwin
...roups?selm=2paj5hFim4q1U1%40uni-berlin.de > so it's not a wonderful benchmark of CPU bound tasks (also, the compiler in use will > have less impact than for a CPU bound program). In any case, I've added > this program to the LLVM testsuite as > SingleSource/Benchmarks/Misc-C++/bigfib.cpp, so we should have numbers for > it generated every night on multiple platforms. > [snip] Newsgroup http://news.gmane.org/gmane.comp.lang.c%2B%2B.perfometer contains another testsuites. For instance: 1. Simple C++ Perfometer Methods of copying files http://article.gmane.org/gmane.comp.l...
2006 Nov 08
6
[LLVMdev] 1.9 Next Steps
I created the 1.9 release branch last night. As a reminder, please do not check in any code changes to the release branch. Please send me email if you have changes that need to be merged into the release branch. To check out the release branch: cvs -d <CVS Repository> co -r release_19 llvm cvs -d <CVS Repository> co -r release_19 llvm-test cvs -d <CVS Repository> co -r
2004 Oct 06
1
[LLVMdev] Re: Starting with LLVM-GCC on Cygwin
...news:Pine.LNX.4.44.0410061044190.367-100000 at nondot.org... > On Wed, 6 Oct 2004, Alex Vinokur wrote: > > > have less impact than for a CPU bound program). In any case, I've added > > > this program to the LLVM testsuite as > > > SingleSource/Benchmarks/Misc-C++/bigfib.cpp, so we should have numbers for > > > it generated every night on multiple platforms. > > > > > [snip] > > > > Newsgroup http://news.gmane.org/gmane.comp.lang.c%2B%2B.perfometer contains another testsuites. > > For instance: > > > 2. C/C++ Progr...
2010 Mar 24
1
[LLVMdev] [cfe-dev] 2.7 Pre-release1 available for testing
...ifferences (is llvm-gcc considered baseline for clang?): ALL FAIL (pass in llvm-gcc): MultiSource/Benchmarks/PAQ8p/paq8p MultiSource/Benchmarks/tramp3d-v4/tramp3d-v4 MultiSource/Benchmarks/Prolangs-C/archie-client/archie MultiSource/Benchmarks/Prolangs-C/cdecl/cdecl SingleSource/Benchmarks/Misc-C++/bigfib SingleSource/Regression/C++/EH/ConditionalExpr SingleSource/Regression/C++/EH/ctor_dtor_count-2 SingleSource/Regression/C++/EH/function_try_block SingleSource/Regression/C++/EH/simple_throw SingleSource/UnitTests/2006-12-04-DynAllocAndRestore SingleSource/UnitTests/Vector/SSE/sse.expandfft SingleSo...
2009 Mar 09
2
[LLVMdev] [llvm-testresults] cfarm-x86-64 x86_64 nightly tester results
.../Benchmarks/Adobe-C++/simple_types_loop_invariant: -19.15% (3.4882 => 4.1562) > singlesource/Benchmarks/Adobe-C++/stepanov_abstraction: -97.63% (1.0080 => 1.9921) > singlesource/Benchmarks/Adobe-C++/stepanov_vector: -171.51% (0.8280 => 2.2481) > singlesource/Benchmarks/Misc-C++/bigfib: -43.51% (0.5240 => 0.7520) > singlesource/Benchmarks/Misc-C++/stepanov_container: -110.33% (1.0080 => 2.1201) > singlesource/Benchmarks/Shootout-C++/wordfreq: -43.20% (0.5000 => 0.7160) > multisource/Applications/hbd/hbd: -31.91% (1.7801 => 2.3481) > multisource/Applica...
2006 Nov 17
2
[LLVMdev] 1.9 Prerelease Available for Testing (TAKE TWO)
...t; TEST-FAIL: cbe /SingleSource/Benchmarks/Shootout-C++/sumcol > TEST-FAIL: llc /SingleSource/Benchmarks/Shootout-C++/wc > TEST-FAIL: jit /SingleSource/Benchmarks/Shootout-C++/wc > TEST-FAIL: cbe /SingleSource/Benchmarks/Shootout-C++/wc > TEST-FAIL: llc /SingleSource/Benchmarks/Misc-C++/bigfib > TEST-FAIL: jit /SingleSource/Benchmarks/Misc-C++/bigfib > TEST-FAIL: cbe /SingleSource/Benchmarks/Misc-C++/bigfib > TEST-FAIL: llc /MultiSource/Applications/hexxagon/hexxagon > TEST-FAIL: jit /MultiSource/Applications/hexxagon/hexxagon > TEST-FAIL: cbe /MultiSource/Applications/hex...
2010 Mar 30
0
[LLVMdev] [cfe-dev] 2.7 Pre-release1 available for testing
...ered baseline for clang?): > ALL FAIL (pass in llvm-gcc): > MultiSource/Benchmarks/PAQ8p/paq8p > MultiSource/Benchmarks/tramp3d-v4/tramp3d-v4 > MultiSource/Benchmarks/Prolangs-C/archie-client/archie > MultiSource/Benchmarks/Prolangs-C/cdecl/cdecl > SingleSource/Benchmarks/Misc-C++/bigfib > SingleSource/Regression/C++/EH/ConditionalExpr > SingleSource/Regression/C++/EH/ctor_dtor_count-2 > SingleSource/Regression/C++/EH/function_try_block > SingleSource/Regression/C++/EH/simple_throw > SingleSource/UnitTests/2006-12-04-DynAllocAndRestore > SingleSource/UnitTests/Vec...
2006 Nov 16
0
[LLVMdev] 1.9 Prerelease Available for Testing
...ks/Shootout-C++/sumcol TEST-FAIL: cbe /SingleSource/Benchmarks/Shootout-C++/sumcol TEST-FAIL: llc /SingleSource/Benchmarks/Shootout-C++/wc TEST-FAIL: jit /SingleSource/Benchmarks/Shootout-C++/wc TEST-FAIL: cbe /SingleSource/Benchmarks/Shootout-C++/wc TEST-FAIL: llc /SingleSource/Benchmarks/Misc-C++/bigfib TEST-FAIL: jit /SingleSource/Benchmarks/Misc-C++/bigfib TEST-FAIL: cbe /SingleSource/Benchmarks/Misc-C++/bigfib TEST-FAIL: llc /MultiSource/Applications/hexxagon/hexxagon TEST-FAIL: jit /MultiSource/Applications/hexxagon/hexxagon TEST-FAIL: cbe /MultiSource/Applications/hexxagon/hexxagon TEST-FAIL:...
2006 Nov 14
5
[LLVMdev] 1.9 Prerelease Available for Testing
LLVMers, The LLVM 1.9 Prerelease is available for testing: http://llvm.org/prereleases/1.9/ If anyone can spare some time, please download the appropriate tarballs for your platform and test the release (at least with make check). I'd also appreciate any documentation reviews. Please note that llvm-gcc3 on x86 may not have a clean dejagnu run. You should see one XPASS for
2005 Nov 10
0
[Bug 3253] New: Feature request - Sync perms/ownership/time etc but with no file transfer
...no file transfer Product: rsync Version: 2.6.7 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: travis@bigfiber.net QAContact: rsync-qa@samba.org Feature Request: It would be very useful to be able to specify the normal options such as --numeric-ids --owner --group --perms --recursive --existing etc but with --no-transfer or something similar that would allow you to sync the attributes of the fi...
2010 Mar 17
9
[LLVMdev] 2.7 Pre-release1 available for testing
The 2.7 binaries are available for testing: http://llvm.org/pre-releases/2.7/pre-release1/ You will also find the source tarballs there as well. We rely on the community to help make our releases great, so please help test 2.7 if you can. Please follow these instructions to test 2.7: To test llvm-gcc: 1) Compile llvm from source and untar the llvm-test in the projects directory (name it
2010 Aug 30
2
[LLVMdev] [REQUEST FOR FEEDBACK] Inline asm multiple alternative constraints
...*********** ******************** TEST (cbe) '2004-03-15-IndirectGoto' FAILED! ******************** ******************** TEST (cbe) 'except' FAILED! ******************** ******************** TEST (jit) 'except' FAILED! ******************** ******************** TEST (cbe) 'bigfib' FAILED! ******************** ******************** TEST (llc) 'spirit' FAILED! ******************** ******************** TEST (cbe) 'spirit' FAILED! ******************** ******************** TEST (jit) 'spirit' FAILED! ******************** ******************** TEST (cbe)...
2010 Aug 30
0
[LLVMdev] [REQUEST FOR FEEDBACK] Inline asm multiple alternative constraints
...********** TEST (cbe) '2004-03-15-IndirectGoto' FAILED! > ******************** > ******************** TEST (cbe) 'except' FAILED! ******************** > ******************** TEST (jit) 'except' FAILED! ******************** > ******************** TEST (cbe) 'bigfib' FAILED! ******************** > ******************** TEST (llc) 'spirit' FAILED! ******************** > ******************** TEST (cbe) 'spirit' FAILED! ******************** > ******************** TEST (jit) 'spirit' FAILED! ******************** > ***********...
2010 Aug 30
2
[LLVMdev] [REQUEST FOR FEEDBACK] Inline asm multiple alternative constraints
...************ TEST (cbe) '2004-03-15-IndirectGoto' FAILED! > ******************** > ******************** TEST (cbe) 'except' FAILED! ******************** > ******************** TEST (jit) 'except' FAILED! ******************** > ******************** TEST (cbe) 'bigfib' FAILED! ******************** > ******************** TEST (llc) 'spirit' FAILED! ******************** > ******************** TEST (cbe) 'spirit' FAILED! ******************** > ******************** TEST (jit) 'spirit' FAILED! ******************** > ***********...
2010 Mar 30
2
[LLVMdev] [cfe-dev] 2.7 Pre-release1 available for testing
...): >> ALL FAIL (pass in llvm-gcc): >> MultiSource/Benchmarks/PAQ8p/paq8p >> MultiSource/Benchmarks/tramp3d-v4/tramp3d-v4 >> MultiSource/Benchmarks/Prolangs-C/archie-client/archie >> MultiSource/Benchmarks/Prolangs-C/cdecl/cdecl >> SingleSource/Benchmarks/Misc-C++/bigfib >> SingleSource/Regression/C++/EH/ConditionalExpr >> SingleSource/Regression/C++/EH/ctor_dtor_count-2 >> SingleSource/Regression/C++/EH/function_try_block >> SingleSource/Regression/C++/EH/simple_throw >> SingleSource/UnitTests/2006-12-04-DynAllocAndRestore >> Si...