search for: vpo

Displaying 20 results from an estimated 33 matches for "vpo".

Did you mean: vo
2017 Jun 26
3
Model studies in one analysis using treatment as a five level moderator in a meta-regression
...ot;Reoperations"),] EF <- All[which(All[,"Treatment"] == "EF"),] IMN <- All[which(All[,"Treatment"] == "IMN"),] pc <- All[which(All[,"Treatment"] == "PC"),] KW <- All[which(All[,"Treatment"] == "KW"),] VPO <- All[which(All[,"Treatment"] == "VPO"),] EF_C <- EF[which(EF[,"Event_Type"] == "Complications"),] EF_R <- EF[which(EF[,"Event_Type"] == "Reoperations"),] IMN_C <- IMN[which(IMN[,"Event_Type"] == "Complication...
2017 Jun 26
0
Model studies in one analysis using treatment as a five level moderator in a meta-regression
...> EF <- All[which(All[,"Treatment"] == "EF"),] > IMN <- All[which(All[,"Treatment"] == "IMN"),] > pc <- All[which(All[,"Treatment"] == "PC"),] > KW <- All[which(All[,"Treatment"] == "KW"),] > VPO <- All[which(All[,"Treatment"] == "VPO"),] > > EF_C <- EF[which(EF[,"Event_Type"] == "Complications"),] > EF_R <- EF[which(EF[,"Event_Type"] == "Reoperations"),] > > IMN_C <- IMN[which(IMN[,"Event_Type"...
2007 Oct 04
0
Getting mouse position from a timed function - My Solution
....bodyEl.observe(''mousemove'', this.boundUpdatePosition); }, stop: function(){ this.bodyEl.stopObserving(''mousemove'', this.boundUpdatePosition); }, within: function(element){ //is the cursor within the given element? Return bool var el = $(element); var vpo = el.viewportOffset(); return (this.x > vpo[0] && this.x < vpo[0] + el.getWidth() && this.y > vpo[1] && this.y < vpo[1] + el.getHeight()); } }); Once you have that included in your page, you can use it like this... //Start capturing mouse positi...
2017 Jun 26
1
Model studies in one analysis using treatment as a five level moderator in a meta-regression
...ll[which(All[,"Treatment"] == "EF"),] >> IMN <- All[which(All[,"Treatment"] == "IMN"),] >> pc <- All[which(All[,"Treatment"] == "PC"),] >> KW <- All[which(All[,"Treatment"] == "KW"),] >> VPO <- All[which(All[,"Treatment"] == "VPO"),] >> >> EF_C <- EF[which(EF[,"Event_Type"] == "Complications"),] >> EF_R <- EF[which(EF[,"Event_Type"] == "Reoperations"),] >> >> IMN_C <- IMN[which(IMN[,...
2011 Oct 27
2
[LLVMdev] ConstantExpr Evaluation
Hi, What I'm currently working on is a translation from LLVM IR to a register transfer list format used in VPO. If my understanding of ConstantExpr is correct, that they can be evaluated at compile-time, how can I simply have them be evaluated but have the code still remain in IR format? For example, in: store i32 1, i32* getelementptr [6 x i32]* @arr, i32 0, i32 0 the getelementptr ConstantExpr can...
2009 Sep 12
0
[PATCH 11/13] nv50: add support for light-twoside
...HADER_FRAGMENT) { int rid, aid; @@ -2726,6 +2736,15 @@ nv50_linkage_validate(struct nv50_context *nv50) } reg[0] += (m - 4) << 8; /* adjust BFC0 id */ + + /* if VP writes any back-face colour, use separate slots */ + if (vp->cfg.two_side[0].mask | vp->cfg.two_side[1].mask) { + vpo = &vp->cfg.two_side[0]; + + m = nv50_sreg4_map(map, m, lin, &fp->cfg.two_side[0], &vpo[0]); + m = nv50_sreg4_map(map, m, lin, &fp->cfg.two_side[1], &vpo[1]); + } + reg[0] += m - 4; /* adjust FFC0 id */ reg[4] |= m << 8; /* set mid where 'normal' FP i...
2012 Sep 12
2
[LLVMdev] A Question about LLVM-backend
Hello, all. I want to manipulate LLVM-backend to emit other compiler's IR, in this case, VPO's IR. So, what i want to know is.. Is there a project to be referred? (For example, "Do LLVM-backend -> GIMPLE" project exist?) Or, how can I manipulate it easily? Thanks, Cho Yeong-pil -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://list...
2011 Sep 24
2
[LLVMdev] Reading Static Values
Hi, I'm currently trying to translate LLVM IR language to VPO .dec file specification. I'm using LLVM source parser in the same way that it is used in tools llc or llvm-as. One issue I'm having is I cannot find any static values. For example, in a global declaration i.e. '@a = global i32 7, align 4' I cannot get '7' from the pa...
2009 Sep 12
0
[PATCH 10/13] nv50: proper linkage between VP and FP
...gs[3]); so_method(so, tesla, NV50TCL_FP_START_ID, 1); so_data (so, 0); /* program start offset */ so_ref(so, &nv50->state.fragprog); so_ref(NULL, &so); } +static int +nv50_sreg4_map(uint32_t *p_map, int mid, uint32_t lin[4], + struct nv50_sreg4 *fpi, struct nv50_sreg4 *vpo) +{ + int c; + uint8_t mv = vpo->mask, mf = fpi->mask, oid = vpo->hw_id; + uint8_t *map = (uint8_t *)p_map; + + for (c = 0; c < 4; ++c) { + if (mf & 1) { + if (fpi->linear == TRUE) + lin[mid / 32] |= 1 << (mid % 32); + map[mid++] = (mv & 1) ? oid : ((c == 3) ? 0...
2012 Sep 13
0
[LLVMdev] A Question about LLVM-backend
Hi 조영필, > I want to manipulate LLVM-backend to emit other compiler's IR, in this case, > VPO's IR. > So, what i want to know is.. Is there a project to be referred? (For example, > "Do LLVM-backend -> GIMPLE" project exist?) as far as I know there is no LLVM IR -> gimple pass. LLVM used to have a C backend that turned LLVM IR into C. I think it was removed in 3...
2009 Sep 12
0
[PATCH 13/13] nv50: add support for point sprites
...+ for (c = 0; c < 4; c++) { + if (!(fp->cfg.io[i].mask & (1 << c))) + continue; + pntc[m / 8] |= (c + 1) << ((m % 8) * 4); + ++m; + } + } +} + static int nv50_sreg4_map(uint32_t *p_map, int mid, uint32_t lin[4], struct nv50_sreg4 *fpi, struct nv50_sreg4 *vpo) @@ -2721,7 +2766,7 @@ nv50_linkage_validate(struct nv50_context *nv50) struct nouveau_stateobj *so; struct nv50_sreg4 dummy, *vpo; int i, n, c, m = 0; - uint32_t map[16], lin[4], reg[5]; + uint32_t map[16], lin[4], reg[5], pcrd[8]; memset(map, 0, sizeof(map)); memset(lin, 0, sizeof(lin...
2017 Jun 29
2
Change Rcode for a meta-analysis(netmeta) to use a random effects model instead of a mixed effects model
...ion and reoperation rate.xlsx", sheet=1) names(All) <- c("Study_ID","Event_Type","Treatment","Events_n","N","nN") All$Treatment <- factor(All$Treatment, levels=c("PC","EF","IMN","KW","VPO")) # Outcomes Complications <- subset(All, Event_Type=="Complications") Reoperations <- subset(All, Event_Type=="Reoperations") # Comparison of treatment effects to gold standard in the Complications subset mtpr1 <- metaprop(Events_n, N, Study_ID, data = Complicati...
2017 Jun 29
0
Change Rcode for a meta-analysis(netmeta) to use a random effects model instead of a mixed effects model
...reoperation rate.xlsx", sheet=1) names(All) <- >c("Study_ID","Event_Type","Treatment","Events_n","N","nN") All$Treatment ><- factor(All$Treatment, levels=c("PC","EF","IMN","KW","VPO")) # Outcomes >Complications <- subset(All, Event_Type=="Complications") Reoperations <- >subset(All, Event_Type=="Reoperations") # Comparison of treatment effects >to gold standard in the Complications subset mtpr1 <- metaprop(Events_n, >N, Study_ID, d...
2011 Sep 28
0
[LLVMdev] Finding all ConstantFP
Hi, I'm working on translating LLVM IR to VPO register transfer list format (MIPS architecture). One problem I have is that static floating point values in IR are found throughout the module, but I need to move those constant values out to a .data section, and declare memory for them globally. Is there a way that I can (given a Module...
2013 Jan 23
0
[LLVMdev] Code Generation for Statically Pipelined Architecture
I'm working on a project with a machine language for a statically pipelined architecture. This article provides an overview of the idea: http://www.cs.fsu.edu/~whalley/papers/cal11.pdf. Right now, we're using the VPO compiler to produce this assembly code. We've been exploring using LLVM as a front-end to provide high level optimization. We'd like to know if there's a good way to go about producing this assembly language directly. The problem I'm looking at is that one instruction can control...
2012 Sep 13
2
[LLVMdev] A Question about LLVM-backend
On 13/09/12 10:57, Duncan Sands wrote: > Hi 조영필, > > > I want to manipulate LLVM-backend to emit other compiler's IR, in this case, >> VPO's IR. >> So, what i want to know is.. Is there a project to be referred? (For example, >> "Do LLVM-backend -> GIMPLE" project exist?) > > as far as I know there is no LLVM IR -> gimple pass. LLVM used to have a C > backend that turned LLVM IR into C. I thi...
2013 Apr 28
2
unsupported url scheme
fileUrl <- "https://data.baltimorecity.gov/api/views/dz54-2aru/rows.csv?accessType=DOWNLOAD"download.file(fileUrl,destfile="./data/Cameras.csv",method="curl") I tried it after installing package "RCurl" but it give error message: Error in download.file(fileUrl, destfile = "Cameras.csv") : unsupported URL schemeI can you help me to solve this
2012 Sep 08
1
[LLVMdev] LLC always has a tab?
...tion. Thanks, Javier From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of ryan baird Sent: Saturday, September 08, 2012 1:45 PM To: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] LLC always has a tab? I forgot to mention, the generated file that has the tab is VPOGenAsmWriter.inc. On Sat, Sep 8, 2012 at 2:43 PM, ryan baird <ryanrbaird at gmail.com<mailto:ryanrbaird at gmail.com>> wrote: I'm building a target for the intermediate language of another compiler. The other intermediate language is close to an assembly language (RTL, 1 operation p...
2017 Jun 23
0
Comparing pooled proportions(complication and reoperation rates) of different treatment modalities
> On Jun 23, 2017, at 5:53 AM, Jay Zola <jayjay.1988 at hotmail.nl> wrote: > > Dear sir/madame, > > > I am currently writing a meta-analysis on the complication and reoperation rates of 5 different treatment modalities after a distal radius fracture. I was able to pool the rates of the 5 different rates using R. Now I have to compare the pooled rates of the 4 treatment
2003 Jun 04
1
Broken -STABLE kernel build?
...evice sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc0 at isa? irq 7 device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the ...