search for: adl

Displaying 20 results from an estimated 62 matches for "adl".

Did you mean: add
2002 Oct 11
1
automatic chi-square grouping in R
I'm doing some chi-square tests, and I recall some arbitrary rule that says each band must have at least 5 events in order for the test to be meaningful. Is there some way to do the banding automagically in R ? For instance, in the following survdiff, I'm trying to see if ADL affects survival. But when ADL=3,5 and 6, the number observed is too little. Anyway for me to tell R how to group them ? Like "R, combine ADL=5 and ADL=6, and redo the test" ? ----------- Call: survdiff(formula = Surv(days, status) ~ adl, data = nu) N Observed Expected (O-E)^2/E...
2010 Apr 19
1
Samba Secondary Groups
...but works fine if I do it on the local machine even though I am the same user in the same groups. All relevant info I can think of follows let me know if anything else is needed. Spent all morning looking for an answer but only found hints of similar but not applicable problems. [14:14:36 root at adl-nas-01 filestore]# smbd -V Version 3.2.5 [14:28:42 root at adl-nas-01 filestore]# uname -a Linux adl-nas-01 2.6.26-2-amd64 #1 SMP Tue Mar 9 22:29:32 UTC 2010 x86_64 GNU/Linux [14:28:42 root at adl-nas-01 filestore]# cat /etc/debian_version 5.0.4 [global] security = ads workgroup = VALEX...
2012 Mar 08
1
ADL in auto.arima [SEC=UNOFFICIAL]
Hi, I am trying to run ADL model by using auto.arima in package "forecast". I put two time series,x and xreg, in the formula, but got message: Error in nsdiffs(xx) : Non seasonal data. Any one can tell how to use it? Thanks Richard *********************************************************************************...
2013 Mar 27
2
FMOLS DOLS and ADL regression
Whether can any R package run Full modified OLS (Phillips and Hansen 1990 ), DOLS (Stock and Watson 1993) and ADL model (Pesaran and Shin 2001) for cointegrated VAR model? I cannot find any useful order in VAR and SVAR package. Thanks. Eric Wang [[alternative HTML version deleted]]
2007 Mar 14
0
Question about testing cointegration using Autoregressive distributed Model (ADL)
Hi,I'm just wondering if there is any package for testing cointegration with ADL model. I saw a bunch of packages and list of email thread. There seemed to be no such a specific method. I am following this paper on how to test using ADL but I don't have a tool. http://www.wiwi.uni-frankfurt.de/~hassler/ha-wo.pdfAny help would be really appreciated. Thank you.Taco [[altern...
2002 Oct 03
1
Multiple Static Ip''s on a adls connection
Hi all. I have recently signed up with a adsl supplier. I ordered static ip''s I was given a block from 153-158. I am trying to make it so that each machine gets a live ip address that is accessable on the wan. I am using floppyfw as my router on a p200. I know that I could setup the the eth0 as multiple ip''s and do nat, but I am wondering if there is another way. I just want
2009 Nov 16
4
[LLVMdev] next
...rote: > > On Nov 14, 2009, at 3:16 PMPST, Howard Hinnant wrote: > >> In many places there is code that looks like: >> >> MBBI = next(MBBI); >> >> In C++0X there is a std::next that is likely to be in scope when these >> calls are made. And due to ADL the above call becomes ambiguous: >> llvm::next or std::next? >> >> I recommend: >> >> MBBI = llvm::next(MBBI); >> >> -Howard > > "next" is a popular name; if it breaks llvm, I'd expect this standards change to break a lot of exis...
2009 Nov 14
5
[LLVMdev] next
In many places there is code that looks like: MBBI = next(MBBI); In C++0X there is a std::next that is likely to be in scope when these calls are made. And due to ADL the above call becomes ambiguous: llvm::next or std::next? I recommend: MBBI = llvm::next(MBBI); -Howard
2011 Jun 22
2
[LLVMdev] Improving cast<> failure messages.
Would anyone object to an attempt to improve cast<> error messages by outputting the expected type and the type received? The interface I'm thinking of is to use ADL to do visitor-style lookup, so we don't need to change every client. In particular, for clients in clang, we can just create these functions implicitly from our TableGen-generated files. I'm not sure about clients in LLVM since I don't do much work there. This would have to introdu...
2012 Sep 25
2
[LLVMdev] Publication: Two LLVM-related papers
Hi, i've two papers that could be listed on the LLVM publication page. http://www.llvm.org/pubs/ The first paper describes an architecture description language and LLVM back-end generation out of an ADL. The second paper describes a cluster VLIW back-end for LLVM 2.9, just before this VLIW initiative started for LLVM. Kind regards, Timo Stripf Stripf, T.; Koenig, R.; Becker, J.; , "A novel ADL-based compiler-centric software framework for reconfigurable mixed-ISA processors," Embedded...
2009 Dec 03
0
[LLVMdev] patch for portability
...none_of move copy_if <numeric> iota (this is not a complete list). Additionally when /any/ two libraries are mixed (e.g. llvm and boost), there is a large potential for name clashes even when namespaces are judiciously used. The carefully crafted C++ library should be aware of ADL issues. It should know when ADL is being used, and when it isn't, and use ADL purposefully, not accidentally. > There are also two issues with rvalue references and the STL: > > 1. EquivalenceClasses, in the insert and findLeader functions, it uses map functions which have versions...
2009 Nov 16
0
[LLVMdev] next
...:16 PMPST, Howard Hinnant wrote: >> >>> In many places there is code that looks like: >>> >>> MBBI = next(MBBI); >>> >>> In C++0X there is a std::next that is likely to be in scope when >>> these >>> calls are made. And due to ADL the above call becomes ambiguous: >>> llvm::next or std::next? >>> >>> I recommend: >>> >>> MBBI = llvm::next(MBBI); >>> >>> -Howard >> >> "next" is a popular name; if it breaks llvm, I'd expect this >&g...
2007 Dec 22
2
[LLVMdev] Automatic assembler generation?
...ough information in the .td files to make a > > tool to automatically generate an assembler from them? Is a project > > like that in the works? > > your question is reasonable, but it is probably out of scope for LLVM. > There have been some architecture description languages (ADLs) > proposed for specifying a machine description and generating all > software development tools (for compilation down to object code and > for simulation) from there. A decent (and realistic) approach would > aim in generating binutils-specific source files for the basic tools > (a...
2009 Dec 03
3
[LLVMdev] patch for portability
Sorry, always end up not replying to the list: The main issue with dealing with next this way is that people adding new uses of next will probably not be using c++0x and therefore won't know it's ambiguous and that it needs to be qualified. There are also two issues with rvalue references and the STL: 1. EquivalenceClasses, in the insert and findLeader functions, it uses map functions
2009 Nov 16
0
[LLVMdev] next
...ing namespace llvm; Is that sufficient? Evan On Nov 14, 2009, at 3:16 PM, Howard Hinnant wrote: > In many places there is code that looks like: > > MBBI = next(MBBI); > > In C++0X there is a std::next that is likely to be in scope when these > calls are made. And due to ADL the above call becomes ambiguous: > llvm::next or std::next? > > I recommend: > > MBBI = llvm::next(MBBI); > > -Howard > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc....
2009 Nov 16
2
[LLVMdev] next
Evan Cheng wrote: > I am pretty sure the .cpp files always explicitly use "llvm" namespace. Look for: > using namespace llvm; > > Is that sufficient? > No; once it's visible through ADL (because ilist<>::iterator extends std::iterator) there's no hiding or precedence mechanism we can exploit. On the other hand, AFAICT std::next is interchangeable with llvm::next; we should be able to replace llvm::next with 'using std::next' in C++0x builds. John.
2009 Nov 16
1
[LLVMdev] next
On Sun, 15 Nov 2009 22:49:42 -0800, Evan Cheng <evan.cheng at apple.com> wrote: > I am pretty sure the .cpp files always explicitly use "llvm" namespace. > Look for: > using namespace llvm; > > Is that sufficient? > No. To prevent ADL from finding std::next, you need an explicitly qualified name at the call site. Sebastian
2009 Nov 16
0
[LLVMdev] next
...rg/jtc1/sc22/wg21/docs/lwg-active.html#submit_issue > It may be premature, but a resolution for the issue would be the same thing Boost does in this case: put the function in a subnamespace and introduce it to std via using declaration. I believe this should prevent it from being found via ADL. (Or does that only work the other way round?) Sebastian
2007 Dec 22
2
[LLVMdev] Automatic assembler generation?
I've just started looking into code generation and have a newbie question: Is there enough information in the .td files to make a tool to automatically generate an assembler from them? Is a project like that in the works? -Rich
2007 Dec 22
0
[LLVMdev] Automatic assembler generation?
...enough information in the .td files to make a tool to > automatically generate an assembler from them? Is a project like that > in the works? > > -Rich Hi your question is reasonable, but it is probably out of scope for LLVM. There have been some architecture description languages (ADLs) proposed for specifying a machine description and generating all software development tools (for compilation down to object code and for simulation) from there. A decent (and realistic) approach would aim in generating binutils-specific source files for the basic tools (as, ld, objdump at least)...