similar to: [help] How to speed up compilation?

Displaying 20 results from an estimated 6000 matches similar to: "[help] How to speed up compilation?"

2016 Oct 18
3
[help] How to speed up compilation?
I'm adding feature to detect customized pragma and mark those region in LLVM IR using Metadata. I want to let programmer give additional directives to compiler. So I put some functions, variables, and 'cout' on clang. So, based on my understanding on your comment, it may be natural to have long compilation time. My machine has Intel Xeon(R) CPU E31230 @ 3.20GHz * 8 with 8GM RAM, which
2016 Oct 18
3
[help] How to speed up compilation?
I'll try those guys! Thanks for advices, all! Btw, I have a question. Personally, it feels like compilation become much slower than previous versions after adopting 'cmake'. Is this natural when we adopt cmake or are there other big changes on build structure? I'm not that familiar with huge system like llvm yet, so I want to catch up how professionals design their system. On
2016 Oct 18
3
[help] How to speed up compilation?
On 18 October 2016 at 07:51, Renato Golin via llvm-dev <llvm-dev at lists.llvm.org> wrote: > A few hints: Another one for debug builds on Linux is using split debug info: -DLLVM_USE_SPLIT_DWARF=ON. This speeds up links dramatically (and reduces memory consumption) as long as you've got a new enough gdb (I think lldb is still not quite up to it). It has no effect on macOS though,
2016 Oct 25
2
[Help] Add custom pragma
Yes. I checked that file, but I wasn't sure whether that is right one to look at. What is *.td extension btw? When I google it, it says this is for Windows Debug Simulator. Why clang use this extension, which is limited to Windows environment? On Tue, Oct 25, 2016 at 7:00 PM, Vedant Kumar <vsk at apple.com> wrote: > That file is generated by the clang-tblgen tool: > >
2016 Oct 25
0
[Help] Add custom pragma
> Yes. I checked that file, but I wasn't sure whether that is right one to look at. It seems promising. I imagine you'd want something like the LoopHint attr. > What is *.td extension btw? The llvm project uses that extension to identify TableGen inputs (http://llvm.org/docs/TableGen/). vedant > On Oct 25, 2016, at 4:12 PM, Sunghyun Park <sunggg at umich.edu> wrote:
2016 Oct 25
2
[Help] Add custom pragma
Hi, all. I want to give programmer ability to tell LLVM that certain region of code is expected to get specialized optimization. So, I'm trying to make custom pragma to mark certain region of code and pass this information to LLVM, in the similar way that '#pragma clang loop unroll_count(N)' works. By tracking the framework of loop unroll pragma, I found out it works in the way below.
2007 Mar 19
1
font replacement not completely,howto?
i added the following in ~/.wine/user.reg [SoftwareWineFontsReplacements] "System"="AR PL New Sung" "Arial"="AR PL New Sung" "Fixedsys"="AR PL New Sung" "Microsoft Sans Serif"="AR PL New Sung" "MS UI Gothic"="AR PL New Sung" "Tahoma"="AR PL New Sung"
2017 Oct 04
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
> On 4 Oct 2017, at 04:43, Chris Bieneman <beanz at apple.com> wrote: > > I want to make sure I understand the problem so I can try to reproduce it. > > When you say "make changes to the runtime" you mean code in compiler-rt/lib/xray ? > Yes. > Are you using the mono-repo prototype? If not, where do you have compiler-rt's sources (llvm/projects or
2003 Sep 10
2
Samba 3.0rc3 - German Umlauts
Hi, i have still the same problem. I use 3.0RC3 with lib/charcnv.c of the actual CVS (Sep 10 15:19). I works not realy: I can create (Windows XP + Explorer) the filename "L?sung.txt" but not "?sung.txt". -- Greetings M. Ungermann
2004 May 04
2
Sampling 1000 times from a bivariate normal distibution
Dear expert, I have two coefficients and covariance matrix. My objective is sampling 1000 times from the mean and covariance matrix. In order to get that, what kind of commend should I use? If you do not mind, could you tell me the comment in detail about parameter used in that commend also? Thank you. Sung. [[alternative HTML version deleted]]
2017 Oct 03
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
Hi llvm-dev, I have unit tests set up in the XRay implementation (compiler-rt/lib/xray/tests/unit) following the pattern that the TSAN and other sanitiser unit tests. However, I'm running into the following problem: When I make changes to the runtime (in this case, XRay) and do `ninja all check-xray`, it seems that the unit tests don't get re-liked to the new version of the runtime. It
2007 Feb 19
1
hosts allow on smb.conf
Hi, I have some query about the samba security, we are trying to setup remote map drive for vpn client, since this kind of client connection which using different IP address, the only way we can do is to set 'hosts allow' to nothing. We just want to know if this change is risky or not, our samba was setup as a DC, and client computers already join to Linux Domain. The VPN protocol
2005 Oct 19
2
Test message
Just testing the list. I see my messages going through, but didn''t know if anyone else was seeing them. Still having mind boggling problems with Lost MySQL connections. Is no one else seeing this problem? Thanks, M Damon Hill Project Manager IFWORLD, Inc. www.ifworld.com <http://www.ifworld.com/> "..as we''re sung to sleep by philosophies that sing save the trees
2002 Dec 18
3
workspace vs. image
Hello [R]ians, I'm hoping someone can clarify the difference between a Workspace Image and Working Directory. I created a directory on my PC, say, "C:\Program Files\R\Project1" and then saved my objects in "C:\Program Files\R\Project1\.Rdata". Then, in a subsequent session, I reloaded these objects using > load("C:/Program Files/R/Project1/.RData") At
2004 Apr 02
3
social network bug! (PR#6729)
Full_Name: Yoon, hye sung Version: 1.8.1 OS: window Submission from: (NULL) (203.255.177.155) > library(sna) Warning message: package sna was built under R version 1.9.0 > What's this message mean?
2003 Apr 18
1
MCMCpack gelman.plot and gelman.diag
Hi, A question. When I run gelman.diag and gelman.plot with mcmc lists obtained from MCMCregress, the results are following. > post.R <- MCMCregress(Size~Age+Status, data = data, burnin = 5000, mcmc = 100000, + thin = 10, verbose = FALSE, beta.start = NA, sigma2.start = NA, + b0 = 0, B0 = 0, nu = 0.001, delta = 0.001) > post1.R <- MCMCregress(Size~Age+Status, data
2015 Jul 16
2
[LLVMdev] Improving loop vectorizer support for loops with a volatile iteration variable
----- Original Message ----- > From: "Chandler Carruth" <chandlerc at google.com> > To: "Hal Finkel" <hfinkel at anl.gov> > Cc: "Hyojin Sung" <hsung at us.ibm.com>, llvmdev at cs.uiuc.edu > Sent: Thursday, July 16, 2015 1:06:03 AM > Subject: Re: [LLVMdev] Improving loop vectorizer support for loops > with a volatile iteration
2007 Jan 18
2
the one minute perl expert :p
Ok, ok I am a "one minute" perl expert now (sung to the tune of "I read the One Minute Manager Book today yeah yeah yeah baby baby" :p My first perl research and program called test.pl use Net::DNS; print Net::DNS->version, "\n"; the result of "perl test.pl" as expected was 0.48 Please keep the applause to a minimum please. Tens and twenties work
2004 Jul 19
1
Bug in cor() with named array and matrix (PR#7116)
Full_Name: Ju-Sung Lee Version: 1.9.1 OS: Windows XP Submission from: (NULL) (128.2.79.102) The following commands causes R to crash: a = array(1:3) dimnames(a)[[1]] = c('1','2','3') cor(a,matrix(1:3)) not naming the array seems to work.
2005 Oct 16
1
BIC doesn't work for glm(family=binomial()) (PR#8208)
Full_Name: Ju-Sung Lee Version: 2.2.0 OS: Windows XP Submission from: (NULL) (66.93.61.221) BIC() requires the attribute $nobs from the logLik object but the logLik of a glm(formula,family=binomial()) object does not include $nobs. Adding attr(obj,'nobs') = value, seems to allow BIC() to work. Reproducing the problem: library(nmle); BIC(logLik(glm(1~1,family=binomial())));