search for: nae

Displaying 20 results from an estimated 27 matches for "nae".

Did you mean: name
2006 Aug 20
4
[LLVMdev] bytecode didn't read correctly under cygwin
...: single gcc version 4.0.1 LLVM (Apple Computer, Inc. build 5400) and LLVM version (as llc gives it) Low Level Virtual Machine (http://llvm.org/): llvm version 1.9cvs DEBUG build with assertions. I use cygwin. Thanks a lot for help. Tony. P.S. compiled.o from ackermann.c is attached. -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060820/c8041d8d/attachment.html> -------------- next part -------------- A non-text attach...
2006 Aug 20
1
[LLVMdev] make builds Release configuration by default
...build LLVM. I run make command from llvmobjdir and it builds Release configuration. I didn't set ENABLE_OPTIMIZED variable to 1 and I didn't configure LLVM with --enable-optimized switch. What can cause building Release configuration and how can I switch to Debug one? Thanks. Tony. -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060820/28f0a7fd/attachment.html>
2009 Mar 03
1
zoo and coredata() classes
...been able to find a satisfactory workaround yet. Heres a simple example of what I'm talking about (the following data frame contains numeric columns that contains NAs): > head(ebs) time src tstamp code bid ask 1 2009-03-03 13:03:29.536 perf.Tib_listener 14980321164 EBS.REC.EURJPY=EBS.NaE 123.48 NA 2 2009-03-03 13:03:29.786 perf.FilteringPublisher 14980565658 EUR.JPY.SPOT 123.48 123.51 3 2009-03-03 13:03:29.786 perf.Tib_listener 14980566116 EBS.REC.EURJPY=EBS.NaE NA 123.51 4 2009-03-03 13:03:30.036 perf.FilteringPublisher 14980824852 EUR.JPY.SPOT 123.49 123.50 5 2009-03-03 13:...
2006 Aug 21
2
[LLVMdev] Recalculating live intervals
...VirtRegMap return true for these intervals' > reg > > members? > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060821/1c8f5715/attachment.html>
2006 Aug 20
0
[LLVMdev] bytecode didn't read correctly under cygwin
...ion (as llc gives it) > > Low Level Virtual Machine (http://llvm.org/): > llvm version 1.9cvs > DEBUG build with assertions. > > I use cygwin. > > Thanks a lot for help. > > Tony. > > P.S. compiled.o from ackermann.c is attached. > > -- > Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled > again! > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2006 Aug 21
0
[LLVMdev] Recalculating live intervals
Well, someone correct me if am wrong, but, you still have to allocate physical registers to them, because their values must be reloaded before been used. But after you spill a register, you break its live ranges, so, each use of that register can be loaded into a different physical. In my register allocator, after I spill reg_v: For each use of reg_v: create a new reg_v' replace reg_v
2006 Aug 24
1
[LLVMdev] strlcpy
The current CVS version doesn't compile on Linux: MachOWriter.h:583: error: 'strlcpy' was not declared in this scope Rafael
2006 Aug 22
0
[LLVMdev] Adding register allocator to LLVM
...oringRegAlloc not defined" occurs. > > > > What am I doing wrong? :) > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060822/43daee34/attachment.html>
2006 Aug 20
0
[LLVMdev] Adding register allocator to LLVM
...dynamic library, like this: > http://llvm.org/docs/WritingAnLLVMPass.html#makefile > > They you should be able to use: > > llc -load yourregalloc.so -regalloc=yours ... > > -Chris BTW, do you know what the extension cygwin uses instead of ".so"? Thanks, Tony. -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060820/b3a00b49/attachment.html>
2006 Aug 20
2
[LLVMdev] Adding register allocator to LLVM
Dear Anton, you can add your register allocator strait iin the "lib/CodeGen/Passes.cpp", and then 're-make' it: "makellvm llc", on the top of lib/CodeGen. It is faster than running make from LLVMOBJDIR. The problem is that it only add to llc the changes on the lib/CodeGen directory. If you change other parts, a make from LLVMOBJDIR will synchronize it. Try adding
2006 Aug 21
2
[LLVMdev] Recalculating live intervals
On 8/7/06, Chris Lattner <sabre at nondot.org> wrote: > > On Sun, 6 Aug 2006, Anton Vayvod wrote: > > I'm developing a register allocator that works iteratively. It spills > some > > virtual registers on each iteration until all the rest have physical > ones > > assigned. > > Take a look at the linear scan allocator. It is also iterative: it uses >
2006 Aug 03
3
[LLVMdev] Adding register allocator to LLVM
On Thu, 3 Aug 2006, Jim Laskey wrote: > To force the load/linking of your register allocator into the llc/lli tools, > add your create function's global declaration to "Passes.h" and add a > "pseudo" call line to "llvm/Codegen/LinkAllCodegenComponents.h" . Another note: with this new functionality you should be able to dynamically load register
2006 Sep 01
3
[LLVMdev] Testing a register allocator
...its efficiency. Can I do this using llvm-test package? Do llvm tests check all available regalloc options automatically? If not, then what modifications should I do to the test files? It would be great if I could test my algo along with linearscan and compare the results. Thanks. Tony. -- "Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again!", Nac Mac Feegles (Terry Pratchett, "The Wee Free Men") "Self improvement is masturbation. Self destruction is the answer.", Tyler Durden (Chuck Palahniuk, "The Fight Club") -------------- next pa...
2006 Aug 21
0
[LLVMdev] Recalculating live intervals
> So what addIntervalsToSpills returns are new intervals to allocate with > infinite weights, right? > And I need not to allocate the old interval. Should hasStackSlot return true > on its register then? > I am not very sure about addIntervalsToSpill, but, for all the registers created to replace a spilled registers, they must have a stack slot assigned to them. I am sending you my
2006 Aug 21
3
[LLVMdev] Recalculating live intervals
...ping->liberate_color(p_reg); > > clean_live_range(ks, v_reg, mbb); > } > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -- Nae king! Nae quin! Nae laird! Nae master! We willnae be fooled again! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060822/d6f2cc53/attachment.html>
2018 May 22
2
Nelson-Aalen Estimator in R: Error Message
...ing my analysis in R. I am performing the multiple imputation right now. I want to perform a survival analysis later, but therefore I need to specify the Nelson-Aalen estimator. My dataset is called DF1, the event indicator is Falls and the time variable is Time. The code that I use is as follows: NAE <- nelsonaalen(data = DF1, statusvar = Falls, timevar = Time) However, I get this error: Error in Surv(time, status) : Time variable is not numeric If I do the following: class(DF1$Time) [1] "numeric" It shows that my variable is numeric. Can you help me with how I can solve this i...
2010 Jun 03
2
two columns into one
...variable from two variables incorporating all possible combinations of the values?? test<-sample(c("A",NA,"B"),100,replace=T) test2<-sample(c("E",F,"A"),100,replace=T) tes<-cbind(test,test2) pseduocode: r<-function(test,test2) r AE AF AA NAE NAF NAA BE BF BA //M [[alternative HTML version deleted]]
2005 Oct 16
1
measurement error model - "simple" linear regression
Dear friends, I found the thread on this subject this summer but wonder whether it has been taken any further. I have an important medical problem where X is computed from a three independent and complicated measurements (exchangeable sodium and potassium and total body water - i.e. X = (Nae+Ke)/TBW ) and Y is serum sodium concentration (all data in Edelman, JCI 1958). I have the individual data in the paper (but have not yet had time to enter it) and Edelman et al in fact reported measurement errors for most individual items. Edelman and coworkers made a linear regression of Y on...
2020 Sep 09
0
[PATCH v7 71/72] x86/efi: Add GHCB mappings when SEV-ES is active
...> performing VMGEXIT calls. The firmware is likely to use the GHCB of >>> the OS (e.g., for setting EFI variables), I've had to stare at this for a while. Because, normally a VMGEXIT is supposed to occur like this: - guest does something privileged - resultant non-automatic exit (NAE) injects a #VC exception - exception handler figures out what that privileged thing was - exception handler submits request to hypervisor via GHCB contents plus VMGEXIT instruction Point being, the agent that "owns" the exception handler is supposed to pre-allocate or otherwise provide...
2018 May 22
0
Nelson-Aalen Estimator in R: Error Message
...lysis in R. I am performing the multiple imputation right now. I want to perform a survival analysis later, but therefore I need to specify the Nelson-Aalen estimator. My dataset is called DF1, the event indicator is Falls and the time variable is Time. The code that I use is as follows: > > NAE <- nelsonaalen(data = DF1, statusvar = Falls, timevar = Time) > > However, I get this error: Error in Surv(time, status) : Time variable is not numeric > > If I do the following: > > class(DF1$Time) [1] "numeric" > > It shows that my variable is numeric. Can...