similar to: [LLVMdev] advice on default options for building LLVM-GCC on Ubuntu Linux

Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] advice on default options for building LLVM-GCC on Ubuntu Linux"

2012 Feb 08
0
[LLVMdev] Clarifying FMA-related TargetOptions
Hi Owen, Having looked into this due to Clang failing PlumHall with it recently I can give an opinion... I think !NoExcessFPPrecision covers FMA completely. There are indeed some algorithms which give incorrect results when FMA is enabled, examples being those that do floating point comparisons such as: a * b + c - d. If c == d, it is still possible for that result not to equal a*b, as "+c
2012 Feb 08
1
[LLVMdev] Clarifying FMA-related TargetOptions
On Feb 8, 2012, at 10:44 AM, James Molloy wrote: > Hi Owen, > > Having looked into this due to Clang failing PlumHall with it recently I can give an opinion... > > I think !NoExcessFPPrecision covers FMA completely. There are indeed some algorithms which give incorrect results when FMA is enabled, examples being those that do floating point comparisons such as: a * b + c - d. If
2013 Oct 11
1
Centos 6.4 - doesnt power off with shutdown/poweroff cmd
Hello, I'm looking for help figuring out why I am having problems with shutting down a machine. I have tested the machine using Fedora 19 and Ubuntu 12 Live CD's and both power down without issues. I added acpi.debug_level=1 to the grub boot as it was suggested to see more info about ACPI in the logs I found the following ACPI Errors in the /var/log/messages Oct 11
2007 Mar 04
5
div & span support
> [John Fraser:] Being able to wrap Markdown text in divs and spans ... I find div and span tags quite useful. Here is an example of the syntax I'm presently using. [[ {#orchard} Contents of div here. And ~this{.plum}~ is how I do spans. ]] becomes <div id="orchard"> <p>Contents of div here. And <span class="plum">this</span> is how I do
2005 Apr 22
1
buggy? error reporting on remote symlinks
Is this considered a bug? $ /usr/local/rsync-cvs/bin/rsync -ve ssh plum:tmp/other ~/tmp/other skipping non-regular file "/Users/nick/tmp/other" sent 16 bytes received 40 bytes 7.47 bytes/sec total size is 4 speedup is 0.07 $ ls -l /Users/nick/tmp/other -rw-r--r-- 1 nick nick 0 22 Apr 11:22 /Users/nick/tmp/other Looks pretty regular to me... The true non-regular file is
2005 Jul 11
1
indexing into and modifying dendrograms
I would like to be able to exert certain types of control over the plotting of dendrograms (representing hierarchical clusterings) that I think is best achieved by modifying the dendrogram object prior to plotting. I am using the "dendrogram" class and associated methods. Define the cluster number of each cluster formed as the corresponding row of the merge object. So, if you are
2006 Sep 01
1
Reading many files at once
dear group, i have 100 files starting with 'hsa-*'. ex. file: fruit p-value ------------ apple 0.0003 orange 0.004 kiwi 0.0003 peach 0.0004 I want to read all these files and create a single matrix. here each file may have different fruit names. in the matrix i want to have a union of all fruits and those should be the rows in the matrix and file names should be columns.
2013 Sep 19
0
[LLVMdev] Experimental Evaluation of the Schedulers in LLVM 3.3
On 19 September 2013 17:25, Ghassan Shobaki <ghassan_shobaki at yahoo.com>wrote: > Ghassan: You have made me so curious to try other benchmarks in our future > work. Most academic publications on CPU performance though use SPEC. You > can even find some recent publications that are still using SPEC CPU2000! > When I was at AMD in 2009, performance optimization and benchmarking
2012 Feb 08
6
[LLVMdev] Clarifying FMA-related TargetOptions
Hello everyone, I'd like to propose the attached patch to form FMA intrinsics aggressively, but in order to do so I need some clarification on the intended semantics for the various FP precision-related TargetOptions. I've summarized the three relevant ones below: UnsafeFPMath - Defaults to off, enables "less precise" results than permitted by IEEE754. Comments specifically
2006 Jun 30
5
Reading the api docs help
Ok so I am at a point that I read my entire book front to back and around and a around. And now digging through it again .. But I am now missing a key piece to the clues is the api. I found http://www.gotapi.com/index.html as a great search tool. But I can''t make heads or tails of it besides a basic search for exactly what I am looking for by word. But if I dont know the word I am
2011 Oct 13
3
[LLVMdev] LLC ARM Backend maintainer
> The ARM Holdings emulator does this; I used it with great success to > profile an Advanced Encryption Standard encryptor a while back. It is indeed a useful piece of kit. We do a lot of our internal regression tests on it, and also run LLVM's regression tests every night on it (as well as PlumHall, EEMBC and SpecInt). Unfortunately it's not exactly software we can give away or
2005 Mar 18
0
Yet another cisco 9760 7.x firmware failure
John; I'm trying to flash 7.1. What I followwd was the wiki page you refer to. My real question is do I need the .load file tftp debug shows the 7960G is asking for? Voipsupply didn't supply it. I'm trying to verify that's what I need befor I start hounding them. -JB Hawaii John Bittner wrote: >John, > >You have to go to 7.1 before 7.3 >Also look at this.
2010 Oct 25
2
extracting characteristics of datasets from data()
I can use data() to find the available datasets in a package, but I'd like to extract and display some additional information for each dataset than what is provided by data(), e.g., class() and dim() for datasets for which these are available. I'm stuck on using using lapply properly with objects, rather than the names of objects that I get from data() Example: > DS <-
2012 Jan 10
5
Puppet proxies
I''ve seen a couple of examples of using puppet to control services where you can''t run a puppet agent on the resource. As far as I can tell they work by having puppet proxy through some external-service control mechanism, such as fog. The question is: where does the proxy run? I assume a puppet agent needs to run somewhere. Where do you put that agent, how do you configure it,
2011 Jul 09
0
[LLVMdev] LLVM position with MIPS, Sunnyvale, CA
MIPS Technologies has a new open position in its Sunnyvale, CA headquarters for an LLVM QA Engineer. This engineer will work on testing, QA, building, and benchmarking of the clang/llvm and gcc compilers. They will be responsible for generating test cases to augment already existing test suites, and to test features such as debugging. This engineer will get requirements from the compiler
2007 Jun 13
2
Formatted Data File Question for Clustering -Quickie Project
I am trying to learn how to format Ascii data files for scan or read into R. Precisely for a quickie project, I found some code (at end of this email) to do exactly what I need: To cluster and graph a dendrogram from package (stats). I am stuck on how to format a text file to run the script. I looked at the dataset USArrests (which would be replaced by my data and labels) using UltraEdit. That
2015 Jun 19
1
setting quota through IMAP
Am 19.06.2015 um 16:16 schrieb Steffen Kaiser: > On Fri, 19 Jun 2015, Daniel Tr?der wrote: > >> I'd like to set the quota of a user through the IMAP protocol. I use >> Pythons imaplib: > >> imap.setquota("test1m at uni.dtr", "(storage 8192)") >> ('NO', ['Quota can be changed only by admin.']) > >> So... which user
2011 Jan 28
2
[LLVMdev] Non-standard byte sizes
On 28/01/11 14:14, Ken Dyck wrote: [...] > I've developed an LLVM back end for a DSP with 24-bit word-addressable > memory, basically by defining the alignment of i8 to be the word size > of the machine. So it _is_ possible. I think I might have an easier job of it, as I don't want to use any of the standard C sizes at all --- my char will be ~64 bits wide (in fact, my
2020 Jul 06
4
Outlook vs Thunderbird
Got a client that usually uses Outlook I think 2010. This person tends to move their e-mails to certain folers. On Thunderbird, the move shows. Not on Outlook. Any explanation? -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising! https://www.empire.kred/ROOTNK?t=94a1f39b A
2013 Sep 19
2
[LLVMdev] Experimental Evaluation of the Schedulers in LLVM 3.3
Hi Renato, Please see my answers below. Thanks -Ghassan ________________________________ From: Renato Golin <renato.golin at linaro.org> To: Ghassan Shobaki <ghassan_shobaki at yahoo.com> Cc: Andrew Trick <atrick at apple.com>; "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Thursday, September 19, 2013 5:30 PM Subject: Re: [LLVMdev] Experimental