search for: hdl

Displaying 20 results from an estimated 108 matches for "hdl".

Did you mean: hd
2013 May 06
3
[LLVMdev] Do we abuse the "nsw" flag
...rence input. The root cause is that the compiler mistakenly optimizes expr "x * y / y" into x where the x*y is blindly flagged with nsw without any analysis. The preproceeded code is excerpted bellow: cat -n integer.i --------------------------------- 2361 TypHandle ProdInt ( hdL, hdR ) 2362 TypHandle hdL, hdR; 2363 { .... 2373 if ( (int)hdL & (int)hdR & 1 ) { 2374 2375 2376 i = ((int)hdL - 1) * ((int)hdR >> 1); /* !!! No barbaric NSW, please !!! */ 2377 if ( ((int)hdR >> 1) == 0 || i / ((int)hdR >> 1) == ((int)hdL-1) ) {...
2008 Dec 08
0
sndio support for libao
...o_info = { + AO_TYPE_LIVE, + "sndio audio output", + "sndio", + "Alexandre Ratchov <alex at caoua.org>", + "Outputs to the sndio library", + AO_FMT_NATIVE, + 30, + NULL, /* no options */ + 0 /* zero options */ +}; + +int ao_plugin_test() +{ + struct sio_hdl *hdl; + + hdl = sio_open(NULL, SIO_PLAY, 0); + if (hdl == NULL) + return 0; + sio_close(hdl); + return 1; +} + +ao_info *ao_plugin_driver_info(void) +{ + return &ao_sndio_info; +} + +int ao_plugin_device_init(ao_device *device) +{ + struct sio_hdl *hdl; + + hdl = sio_open(NULL, SIO_PLAY, 0); +...
2008 Jul 03
3
Active-HDL
Hey! I was wondering if active-HDL (VHDL simulator) will work with WINE 1.0? active-HDL (i regret to say) is only for windows.... :( Thanks :)
2013 May 06
0
[LLVMdev] Do we abuse the "nsw" flag
...is that the compiler mistakenly optimizes expr "x * y / y" into x where the x*y is blindly > flagged with nsw without any analysis. > > The preproceeded code is excerpted bellow: > > cat -n integer.i > --------------------------------- > 2361 TypHandle ProdInt ( hdL, hdR ) > 2362 TypHandle hdL, hdR; > 2363 { > .... > 2373 if ( (int)hdL & (int)hdR & 1 ) { > 2374 > 2375 > 2376 i = ((int)hdL - 1) * ((int)hdR >> 1); /* !!! No barbaric NSW, please !!! */ > 2377 if ( ((int)hdR >> 1) == 0 || i / ((i...
2007 Aug 28
1
HDL F10 brazilian doorbell device + TDM2400
Hi, I'm trying to connect an HDL F10 device for a friend living in Brazil to the TDM2400 on his Asterisk server. That device should behave like a normal doorbell and it is if connected to an analog PBX. I connected to the TDM2400 and everything works fine except for one thing: when the called party hangs up his phone, the F10 H...
2008 Jan 16
1
Probability weights with density estimation
I am a physician examining an NHANES dataset available at the NCHS website: http://www.cdc.gov/nchs/about/major/nhanes/nhanes2005-2006/demo_d.xpt http://www.cdc.gov/nchs/about/major/nhanes/nhanes2005-2006/hdl_d.xpt http://www.cdc.gov/nchs/about/major/nhanes/nhanes2005-2006/tchol_d.xpt Thank you to the R authors and the foreign package authors in particular. Importing from the SAS export fomat file was a snap. It consists of demographic data linked to laboratory measurements. Each subject has an a...
2013 Aug 30
0
[LLVMdev] Reflexions about a new HDL language
If you're designing a new high-level HDL, then it would be a good idea to familiarise yourself with the state of the art in this area (e.g. Bluespec System Verilog, Symbolics Processor Designer, and similar tools). Starting from comparisons to VHDL and Verilog is like designing a new high-level programming language today that is designed...
2013 Sep 18
1
[LLVMdev] Reflexions about a new HDL language
Le 30. 08. 13 11:59, David Chisnall a écrit : > If you're designing a new high-level HDL, then it would be a good idea to familiarise yourself with the state of the art in this area (e.g. Bluespec System Verilog, Symbolics Processor Designer, and similar tools). That's a good idea before I go too far , and I think that MyHDL worths a look too. For Symbolics Processor Designer, I...
2009 Jul 17
2
Fisher's exact test
Hi, I'm trying to run Fisher's Exact test on the data below, but I'm not sure how interpret the data shown. Can someone tell me what this is saying? Looking at the numbers it should be that there's no significant difference between the HDL and LDL, but a p-value of 1 seems high. Is the low value in the LDL unbound making the test unstable and should I be using an alternative? Best regards James > data <- matrix(c(27,8,9,2),nr=2,dimnames=list(c("HDL","LDL"),c("Bound","Unbound"))) > da...
2013 Aug 30
0
[LLVMdev] Some reflexions about a new HDL language
2013 Aug 30
4
[LLVMdev] Reflexions about a new HDL language
Hi, For the synthesis backend which translate to VHDL or Verilog, I don't know if I will use LLVM. It will depend on how easy it is to play with concurrent statements with LLVM. For the simulation I will use LLVM because I can anyways artificially make the compiled code sequencial. It would allow me to benefit from all the nice things from LLV...
2013 Aug 30
2
[LLVMdev] Reflexions about a new HDL language
Hello, I previously sent this message, but it was in HTML only, so it was unreadable. I am thinking about making a compiler for a new HDL language, that will be more modern than VHDL and Verilog and allow a little higher level behavioral description than VHDL. For this language, I am beeing influenced by VHDL, Ada, Ruby and MyHDL. I also would like to write it in Ada. I don't know if it is a project that I will abandon as fas...
2013 Aug 30
0
[LLVMdev] Some reflexions about a new HDL language
Please don't respond to this thread, since the first message was in HTML only. Response rather to the thread "Reflexions about a new HDL language".
2005 Oct 17
0
Ordinal GEE model
...same results from both functions (there might be small differences due to dissimilarity in approximation methods). However, I got a very different results from the two approaches. Here is my R codes and ouputs for the two approaches: 1.) library(geepack)summary(ordgee(UACR~HR+SP+bmi+diabetes+age+HDL+ht.med+male+SCHV+SCRV+smoke+statin+AP,id=x18,mean.link="logit",corstr="independence")) Call: ordgee(formula = UACR ~ HR + SP + bmi + diabetes + age + HDL + ht.med + male + SCHV + SCRV + smoke + statin + AP, id = x18, mean.link = "logit", corstr = "independence&qu...
2013 Aug 30
0
[LLVMdev] Reflexions about a new HDL language
Jonas Baggett <jonasb at tranquille.ch> writes: > What are your feedbacks ? Hello Jonas, How is that related to LLVM? I see no references to LLVM on your announcement nor on your document.
2012 Jun 09
1
combining different types of graphics (scatterplots, boxplots) using lattice
...ots for the continuous predictors and boxplots for the dichotomous predictors. with 4 continuous variables, this is what i have been doing: trial = rbind ( cbind ( cimt$ant.mean, cimt$age, 1 ), cbind ( cimt$ant.mean, cimt$sbp, 2 ), cbind ( cimt$ant.mean, cimt$ldl, 3 ), cbind ( cimt$ant.mean, cimt$hdl, 4 )) trial = as.data.frame(trial) names(trial) = c("cimt","x","group") trial$group.f = factor(trial$group,label=c("Age(years)","SBP(mmHg)","LDL(mg/dL)","HDL(mg/dL)")) x11(height=6,width=14) xyplot (cimt~x|group.f, data=trial,...
2004 Aug 16
2
randomize Dial() target
Hi, is it possible to randomize extension which would be choosed by Dial()? I would like to forward phone calls to one of sales rep in randomized way (not to harm anyone;) ). tia mazek -- http://www.marcinmazurek.com/ ::: nic-hdl: MM3380-RIPE GnuPG 6687 E661 98B0 AEE6 DA8B 7F48 AEE4 776F 5688 DC89
2004 Sep 14
1
multiple vulnerabilities in the cvs server code
...e uuid to `portaudit_fixed' in /usr/local/etc/portaudit.conf I have 2 related questions: 1) What are current plans to fix these vulnerabilities? 2) Are the FreeBSD public CVS servers trustworthy now? Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE
2012 Jul 19
1
kernel panic caused by zfs/sa.c
...byte swapping is necessary. The code starting at line 1260: if (IS_SA_BONUSTYPE(bonustype) && sa_hdr_phys->sa_magic != SA_MAGIC && sa_hdr_phys->sa_magic != 0) { VERIFY(BSWAP_32(sa_hdr_phys->sa_magic) == SA_MAGIC); sa_byteswap(hdl, buftype); } As far as I can tell, my source is up to date and this code is the same as what is in 9-STABLE. I'm not sure what's causing the panic, does anyone have a suggestion? Thanks for the help. --Greg
2016 Jun 09
6
Fwd: [RFC] LLVM Coroutines
...r be destroyed. In the following example, function `f` (which may or may not be a coroutine itself) returns a handle to a suspended coroutine (**coroutine handle**) that is used by `main` to resume the coroutine twice and then destroy it: .. code-block:: llvm define i32 @main() { entry: %hdl = call i8* @f(i32 4) call void @llvm.experimental.coro.resume(i8* %hdl) call void @llvm.experimental.coro.resume(i8* %hdl) call void @llvm.experimental.coro.destroy(i8* %hdl) ret i32 0 } In addition to the function stack frame which exists when a coroutine is executing, there is...