search for: hwa

Displaying 20 results from an estimated 55 matches for "hwa".

Did you mean: hw
2016 Apr 12
2
llvm outlining question
I'm not aware of anything else in LLVM that performs outlining. Ayal (CCed) may be able to help you regarding CodeExtractor fixes. Thanks, Michael On 12 April 2016 at 14:21, Minghwa Wang <mwang2 at cse.scu.edu> wrote: > Thank you Michael and Tom for the quick reply. > > According to your experience and comments, CodeExtractor is buggy only > works for special cases but not general enough for most usages. Then do we > have other outlining solution in llvm?...
2016 Apr 12
2
llvm outlining question
...ssues if you try to do anything untrivial with it. Michael On 12 April 2016 at 13:24, Tom Chen via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Does this do what you want > http://llvm.org/docs/doxygen/html/classllvm_1_1CodeExtractor.html? > > 2016-04-12 14:58 GMT-05:00 Minghwa Wang via llvm-dev < > llvm-dev at lists.llvm.org>: > >> Is there any support for outlining in llvm? >> >> As we know outlining is the opposite of inlining and while refactoring, >> if we can outlining common code into functions, then function merge >> (supp...
2009 Dec 20
1
expression()
...Thanks in advance, #R Code library(lattice) data(barley) barchart(yield ~ variety | site, data = barley, groups = year, layout = c(1,6), ylab = "Temperature (degreeF)", scales = list(x = list(abbreviate = TRUE, minlength = 5))) ~Kim Jung Hwa [[alternative HTML version deleted]]
2010 May 23
0
Multimedia Fusion 2 Hardware Accleration is bugged
Hey guys, I'm using WINE to run MMF2. When trying to run MMF2 non HWA, it works fine. Problem is beggining while I try to run HWA. It starts, program has loaded all extensions and started. Now I put new app and enter a frame. Now I can see, that if I click anywhere, or select any object, or create a new one, frame screen shakes strange for half second and returns to...
2016 Apr 12
2
llvm outlining question
...g in llvm? As we know outlining is the opposite of inlining and while refactoring, if we can outlining common code into functions, then function merge (supported by llvm) can be more efficient in reducing code size. If llvm support outlining, how to use it? Any documentation for it? Thanks, Ming-Hwa -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160412/f6606a89/attachment.html>
2010 Apr 12
1
[PATCHv2 1/2] fbdev: allow passing more than one aperture for handoff
...lt;= hw->aperture_base + hw->aperture_size) + if (gen->base > hw->base && gen->base <= hw->base + hw->size) return true; return false; } + +static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw) +{ + int i, j; + struct apertures_struct *hwa = hw->apertures; + struct apertures_struct *gena = gen->apertures; + if (!hwa || !gena) + return false; + + for (i = 0; i < hwa->count; ++i) { + struct aperture *h = &hwa->ranges[i]; + for (j = 0; j < gena->count; ++j) { + struct aperture *g = &gena->ranges[j];...
2010 Apr 10
3
[PATCH 1/3] fbmem: fix aperture overlapping check
fb_do_apertures_overlap is returning wrong value when one aperture is completely whithin the other. Add generic ranges_overlap macro (probably kernel.h candidate) and use it here. Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com> Cc: Dave Airlie <airlied at redhat.com> Cc: Peter Jones <pjones at redhat.com> Cc: Andrew Morton <akpm at linux-foundation.org> ---
2010 May 16
0
[PATCH v2 2/3] fbmem, drm/nouveau: kick firmware framebuffers as soon as possible
...c @@ -1479,11 +1479,10 @@ static bool apertures_overlap(struct aperture *gen, struct aperture *hw) return false; } -static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw) +static bool fb_do_apertures_overlap(struct apertures_struct *gena, + struct apertures_struct *hwa) { int i, j; - struct apertures_struct *hwa = hw->apertures; - struct apertures_struct *gena = gen->apertures; if (!hwa || !gena) return false; @@ -1501,6 +1500,28 @@ static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw) return false; } +void remove_confl...
2017 Dec 06
1
OpenLDAP Backend with support for PDC & BDC
...st that using an OpenLDAP backend whilst using Samba as a PDC/BDC is unsupported and shall remain so for the near future. This leads me to believe that if I want to use Samba 4 as a PDC/BDC with an LDAP backed, I will have to use Samba's LDAP instead. Is this correct? Best Regards, Lai Wei-Hwa IT Administrator T. (514) 367-2252 ext 6308 C. (514) 218-7400 [ mailto:whlai at robco.com | whlai at robco.com ] Montreal - Toronto - Edmonton [ https://www.robco.com/ | www.robco.com ] ISO 9001 / 14001
2009 Dec 11
2
Frequency tables.
Hi All, I'm a SAS user but I'm very much interested in learning R. I use ODS system in SAS to make nice frequency tables. Is it possible to export the output of table() [in TABULAR FORM]? So, that I can use those directly for publications? Thank you. # R Code: library(datasets) Orange summary(Orange) # outputing this, not as it is, but in table for. is it possible? ~Kim [[alternative
2010 Mar 31
2
reshaping data
Hi All, Can someone help me reshape following data: Var1 Var2 Val A X 1 A Y 2 A Z 3 B X 4 B Y 5 B Z 6 to some kind of matrix/tabular format (preferably as a matrix), may be like Var1 X Y Z A 1 2 3 B 4 5 6 Any help would be greatly appreciated, Kim [[alternative HTML version deleted]]
2010 May 26
1
forest() in {metafor} :: edit labels
Hi Kim and Others, Can anyone please help me on how can I edit default labels ( "Study 1", "Study 2",...) using forest() - same question as below. Which option I should try? It would be a great help. Thanks in advance, On Sun, Dec 13, 2009 at 7:14 PM, Kim Jung Hwa <kimhwamaillist@gmail.com>wrote: > Hi All, > > I'm using forest() from metafor package to plot forest plots. Here is the > code > > e<-1:6 > v<-seq(2,3,.20) > forest(e,v) > > I want to edit default labels "Study 1", "Study 2" and so...
2010 Jan 28
2
SAS Type 1 / Type 3 Analysis Equivalent.
Hi All, I'm using glm() in R to perform Poisson regression, I'm wondering if its possible to get equivalent Type 1 / Type 3 Analysis (similar to one in PROC GENMOD). Thanks, Kim [[alternative HTML version deleted]]
2005 Apr 23
6
Problems with domU networking
...ms to be fine, except no any data doesn''t move in any direction. I can''t even ping between dom0 and domU. So it creates an interface, but somehow it doesn''t work properly. What might be wrong? No firewalls enabled atm. Here are some information. dolphin:~# ifconfig |grep HWa eth0 Link encap:Ethernet HWaddr 00:50:DA:B0:D7:77 eth1 Link encap:Ethernet HWaddr 00:0D:88:B5:8E:F4 xen-br0 Link encap:Ethernet HWaddr 00:50:DA:B0:D7:77 dom0 interfaces works fine. Network is up and running. And eth0 is bind to xen-br0. dolphin:~# xm create tamagotchi Using config...
2010 May 16
0
[PATCH v3 1/3] fbdev: allow passing more than one aperture for handoff
...lt;= hw->aperture_base + hw->aperture_size) + if (gen->base > hw->base && gen->base <= hw->base + hw->size) return true; return false; } + +static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw) +{ + int i, j; + struct apertures_struct *hwa = hw->apertures; + struct apertures_struct *gena = gen->apertures; + if (!hwa || !gena) + return false; + + for (i = 0; i < hwa->count; ++i) { + struct aperture *h = &hwa->ranges[i]; + for (j = 0; j < gena->count; ++j) { + struct aperture *g = &gena->ranges[j];...
2010 Nov 08
1
unknown dimensions for loglm
...run the following line at the end of the code: "loglm(~., data=ctables)", but it always prints the following error: Error in terms.formula(formula <- denumerate(formula)) : '.' in formula and no 'data' argument Can anyone help me out? Thank you, Jason -- Jason Hwa Carnegie Mellon University M.S. in Statistical Practice '11 B.S. in Operations Research '10 jhwa@stat.cmu.edu <mailto:jhwa@stat.cmu.edu> [[alternative HTML version deleted]]
2010 Mar 01
3
help with lattice boxplots...
Hi All, I need a small help with following code: I'm trying to convert "dashed lines" to regular ones; and changing default "blue" border color to say "black"... but I'm doing it wrong and its not working. Can anyone help please. Thanks, Code: require(lattice) ex <- data.frame(x=1:10, y=rep(c("A","B"), 5)) bwplot(y~x, data=ex,
2010 May 05
2
Visualizing binary response data?
Hi All, I'm dealing with binary response data for the first time, and I'm confused about what kind of graphics I could explore in order to pick relevant predictors and their relation with response variable. I have 8-10 continuous predictors and 4-5 categorical predictors. Can anyone suggest what kind of graphics I can explore to see how predictors behave w.r.t. response variable... Any
2010 Jun 17
2
Plotting confidence intervals of two response on same graph (panel).
Hello! I would like to draw a graph like the following: http://www.optics.rochester.edu/workgroups/cml/opt307/spr04/pavel/plot_small.jpg Aim is to plot confidence intervals of treatments for X(=response1) and Y(=response2) axis simultaneously to visualize aggreement of confidence interval for two responses. Can anyone please provide me some direction to start with? Thanks! -- Kim.
2010 Mar 18
2
multiple print commands in win.metafile()
Hi All, I need a file which I can import to MS Word, I'm trying win.metafile(), but it does not seem to support multiple print commands at once (please see below). Is there an alternative to get plots file which can be used in powerpoint/word? # R code: # this does not work; but same thing works with pdf() library(lattice) win.metafile("test.wmf") p1 <- xyplot(decrease ~