search for: laid

Displaying 20 results from an estimated 993 matches for "laid".

2012 Jan 24
1
Plotting coxph survival curves
Hi, I am attempting to plot survival curves estimated by cox proportional hazards regression model. The formula for the model is this: F.cox.weight <- coxph(Surv(Lifespan, Status) ~ MS + Weight + Laid + MS:Laid + Weight:Laid, data = LongF) MS = Mating status (mated/virgin) Weight = adult female weight, continuous covariate Laid = number of eggs laid by each female, continuous covariate I want to plot female survival, as estimated by my model, by mating status and therefore two survival curves...
2019 May 16
2
How data is laid out in default.profraw when doing profiling?
...i all, I'm now working on llvm-cov for a new target and have a problem here. Because of some reasons, users do not stub in the main function and after running elf file, they cannot get a default profraw. Now they want to construct a default profraw manually but don't know how data is laid out in `default profraw` file. We found a struct ProfDataIOVec in InstrProfilingWriter.c in compiler-rt and followed this layout. ``` ProfDataIOVec IOVec[] = { {&Header, sizeof(__llvm_profile_header), 1}, {DataBegin, sizeof(__llvm_profile_data), DataSize}, {CountersBegin,...
2010 Jan 08
0
Findings on pre-NV50 miptree layout
...e/forum.php?thread_name=ff13bc9a1001081140y18450c3ejdfac25c9260fd367%40mail.gmail.com&forum_name=mesa3d-dev . Here are the findings from running it. The result is that our miptree layout code is partially broken, and overly complex. In particular: 1. 3D textures are broken because they are not laid out like cube maps, but first by level and then by face 2. Swizzled 3D texture are all 3 texture coordinates swizzled together 3. Cube maps have their faces 128 byte aligned, not only 64 like in my patch or unaligned like without it (not applied IIRC). 4. Swizzled 2D/3D/cube textures don't have...
2002 Oct 21
2
3-D scatter plot laid over Surface plot
Hello, I have created a Fitness surface (persp()), with data that was created by a tp spline procedure. Now I would like to superimpose a set (XYZ) of existing points (from two different treatments) onto this surface. I didn't come across any function or command that is able to do this in R. Could somebody please help me in finding a solution to this problem Thank you Peter --
2016 Jun 28
0
Finding caller-saved registers at a function call site
...de. This is why I'm using the stackmap intrinsic, as it does exactly that -- provides a mapping between a bitcode value and its storage location for the generated assembly. I need this intermediate-level value because I'm doing ABI translation. I'm plucking values out of a call frame laid out in one ABI and storing them in a destination stack frame that is laid out according to another ABI. The IR value is essentially the "key" used to match corresponding storage locations across the two ABIs. I'm transforming a thread's current stack laid out for one ABI into on...
2011 Oct 20
0
[LLVMdev] Question regarding basic-block placement optimization
...rloaded BlockFrequency::operator*(BranchProbability). But you could use the existing API anyway by adding a helper to MachineBlockFrequencyInfo calling BlockFrequencyImpl::getEdgeFreq(Src,Dst). >> Still, for the test cases that don't tickle the iteration bug, it generates beautiful, well laid out code. =] > > I am sure others have strong opinions about the algorithm ;-) I may be one of those others ;-). Although handling SCCs (loops) probably saves Chandler's design from going too far off the rails. I don't remember that being in the published algorithm. > I would li...
2011 Oct 19
3
[LLVMdev] Question regarding basic-block placement optimization
...WeightedEdge WE = { BaseFrequency * MBPI->getEdgeProbability(From, To), Did we add API for this computation? We intended to add a function that computes this and saturates on overflow etc. > Still, for the test cases that don't tickle the iteration bug, it generates beautiful, well laid out code. =] I am sure others have strong opinions about the algorithm ;-) I would like to see a more explicit handling of loop layout. There is a tradeoff between entering the loop with a branch, and having the exit block last. It is not clear to me that this algorithm handles that properly. Be...
2008 Mar 26
1
R objects layout
Hi, Can anyone point me to documentation of how R objects such as vectors, lists, matrices and data frames are laid out in memory? For example, which of these are laid out as a 1-d array, 2-d array and so forth? The R Internals document seems like the natural place to look, but I don't see it there. If such things are only documented in source code, could you point me to the relevant place(s)? (Please C...
2011 Dec 20
1
Help Transforming sums into observations
I need to measure kurtosis, skew, and maybe dip test on some distributions I have. Currently my data is in the form of 2 vectors x and y. Where x is 10 bins and y is the number of observations found in that bin. It seems that the measures I want to run require the actual observations laid out rather than already summed like I have them. Any suggestions on how to transform the data automatically? I have a semi- automated method in Excel but I think r will do a better job. I provide a more specific example below: My csv file with the data looks like this: Bin: 1,2,3, ... ,10 #Obs...
2016 Jun 27
3
Finding caller-saved registers at a function call site
Hi Rob, Robert Lyerly wrote: > At a high level, I'm interested in finding the locations of all values > that are live at a given call site.**You can think of it like a > debugger, e.g. gdb -- I'd like to be able to unwind the stack, frame by > frame, and locate all the live values for each function invocation > (i.e., where they are in a function's stack
2007 Jun 30
6
[LLVMdev] Repository Layout
All, I'm finding the current layout a bit frustrating, not to mention that it breaks all the documentation. We currently have modules laid out like this: llvm/trunk/... llvm/branches/... llvm/tags/... stacker/trunk/... stacker/branches/... stacker/tags/... and similarly for all the other modules (test-suite, java, poolalloc, etc.). Unfortunately, this "standard" layout interjects a directory (trunk/branc...
2008 Jul 17
4
help with data layout
Hello list I have been given some Excel sheets with data laid like this: Col1 Col2 A 3 2 3 B 4 5 4 C 1 4 3 I was hoping to import this into R as a csv and then get the mean and SD for each letter in column 1. Could someone give me some guidance on best to appro...
2006 Mar 24
3
Using Tags in Applications
I''ve been contemplating the utilization of "tags" functionality for categorizing records in my application. For example, a record can have any tag associated with them: volunteer, donor, phone_caller, etc. (Much like delicious) Has anyone already laid out a good architecture for implementing this on the DB, or other medium? I''m sure I can custom build something, but why re-invent the wheel. ;) Thanks. Dave -- ~~~~~~~~~~~~~~~~~~~ David Andrew Thompson http://dathompson.blogspot.com
2015 Jan 22
2
[LLVMdev] Another struct-return question
...So, if I build the llvm struct type with packed attribute, will it just put every field in the next available bit? I see the two ways of accessing fields (GEP) and insertvalue/extractvalue both identify the field with a field sequence number, so I would have to be sure I could control the way llvm laid the struct out. > In this particular case, probably all you need to know is the size of the struct, and notice that it is small. I would try to find the Sys V ABI docs to get the threshold or check the Clang source code. > > 3) I am also a little worried about the implications of re...
2003 Jul 17
1
R matrices in memory
Acording to the documentation in gsl "The physical row dimension tda, or trailing dimension, specifies the size of a row of the matrix as laid out in memory" I think that if I pass a matrix to C++ through .C as single ( or.double ), that is, .C ( as.single ( matrix )) then the tda is simply the number of elements of that matrix. Am I right? Thank you.
2008 Jul 22
2
[LLVMdev] BITS_BIG_ENDIAN in llvm-gcc
There are various functions in llvm-convert.cpp that depend on BITS_BIG_ENDIAN: TreeToLLVM::EmitLoadOfLValue() TreeToLLVM::EmitMODIFY_EXPR() InsertBitFieldValue() ProcessBitFieldInitialization() The comments say things like: // If this target has bitfields laid out in big-endian order, invert the bit // in the word if needed. // If this is a big-endian bit-field, take the top NumBitsToInsert // bits from the bitfield value. // If this is little-endian bit-field, take the bottom NumBitsToInsert // bits from the bitfiel...
2012 Mar 22
3
[LLVMdev] Target Data
...hitecture? Or to reset the widths of types? > > > > I haven't seen anything like this. Thanks. > > The datalayout string is required to match the target, if it exists: > http://llvm.org/docs/LangRef.html#datalayout > > You can't control it to change how things are laid out. > > -Chris > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120322/f2532bd6/attachment.html>
2013 Apr 02
2
[LLVMdev] LNT ClamAV - Sorting output
...lt;daniel at zuster.org> wrote: > What is it that makes the output of the program asynchronous? The output > is deterministic on Darwin, so it seems like it should be possible to make > it more stable. > This is a virus scan and, AFAICS, depends on the order in which the INODEs are laid out in the directory. I'm not sure there is a way to sort the files before, I'll look into that. > I'm not really a fan of doing any more transformations on the output than > we have to, because it just pushes complexity into the test suite > infrastructure. > I agree, t...
2003 Oct 24
2
asterisk config files
...sk and their softphone settings? I am really looking for very basic setup stuff as I just want to show that the system works to my management before they will allow me to spend the money on phones and a telco card. Server is a redhat 7.3 w/ 512 RAM and dual 550's. Asterisk tar ball has been laid down, configured, make, make install, and make samples done... email address: twallace_list@touchstonetel.com Todd Wallace -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031024/d99795f3/attachment.ht...
2013 Jan 27
2
[LLVMdev] lldb cannot display structure type for llvm3.2
...Flags = Ins[i].Flags; 596 bool IsRegLoc = VA.isRegLoc(); (lldb) print ArgLocs.size() error: call to a function 'llvm::SmallVectorTemplateCommon<llvm::CCValAssign>::size() const' that is not present in the target error: Couldn't materialize struct: Structure hasn't been laid out yet I use Xcode 4.5.2 and my lldb can display structure type information on llvm 3.1. gdb can display the structure type on llvm 3.2. Jonathan