search for: cos4

Displaying 9 results from an estimated 9 matches for "cos4".

Did you mean: cos
2005 Jul 28
1
conversion from SAS
...asonal cycle outliers */ data sort_dataset; set chla_italian; chla=chl_a; dayno=date-mdy(1,1,year)+1; cos1=cos(2*3.14*dayno/365); sin1=sin(2*3.14*dayno/365); cos2=cos(4*3.14*dayno/365); sin2=sin(4*3.14*dayno/365); cos3=cos(6*3.14*dayno/365); sin3=sin(6*3.14*dayno/365); cos4=cos(8*3.14*dayno/365); sin4=sin(8*3.14*dayno/365); bloom=0; w_chla=1/chla/chla; run; ODS listing close; %macro sort_event(cut_off,last=0); /*proc glm data=sort_dataset; class year; model logchla=year cos1 sin1 cos2 sin2 cos3 sin3 cos4 sin4 /solution; by station; where bloom=0;...
2012 Oct 05
2
[LLVMdev] LLVM Loop Vectorizer
...may have to refactor some >> functionality out of TLI. >> > > Possibly, though I think TargetData should still be able to get you > what you want. TargetData does not have enough information for vectorization. For example, we need to ask the target if it has efficient "cos4" implementation or the cost of 'mult_4xf32'. We need lots of target specific information for deciding when to vectorize and which vectorization optimizations to apply. > >> >> Currently TLI is only available in LLC. I suggest that we merge LLC and OPT >> into...
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
Nadav, >> Possibly, though I think TargetData should still be able to get you >> what you want. > > > TargetData does not have enough information for vectorization. For example, we need to ask the target if it has efficient "cos4" implementation or the cost of 'mult_4xf32'. We need lots of target specific information for deciding when to vectorize and which vectorization optimizations to apply. > Sure. I was mostly going with the idea of "insert some Targetish structure here". >> TargetData...
2005 Apr 22
1
Having problems with SSL and Apache on CentOS
I had a RH7.3 box that provided some web services, but the hard drive recently started to throw errors. So I got another drive and built a new system using CentOS4. Unfortunately, there is no one to one as far as Apache since COS4 uses Apache 2 and there is a dramatic difference in the way the config files are done. I have managed to get it to recognize the directory on my other drive after finding the selinux commands to allow that directory to be used. I can get to the startup page if I go through port 80. I also have it r...
2007 Dec 19
0
leaps
...t with I would like to make sure that I got the output from (3) right. The ouput of (3) tells me that the highest R^2 value was reached after 8 iterations and there are only 8 significant predictors in this model ??? In addition the only significant frequencies (predictors) left are: cos1, cos2, cos4, cos7, sin1,sin2, sin3, sin5 I got this information interactively. But I'm in troubles at extracting it automatically. Any suggestion ? Question: Do I have to run "step" in advance of "regsubsets" for a first-pass model pruning or may I run "regsubsets" on the o...
2012 Oct 05
2
[LLVMdev] LLVM Loop Vectorizer
...com> wrote: > Nadav, > >>> Possibly, though I think TargetData should still be able to get you >>> what you want. >> >> >> TargetData does not have enough information for vectorization. For example, we need to ask the target if it has efficient "cos4" implementation or the cost of 'mult_4xf32'. We need lots of target specific information for deciding when to vectorize and which vectorization optimizations to apply. >> > > Sure. I was mostly going with the idea of "insert some Targetish > structure here"....
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
...> > >>> Possibly, though I think TargetData should still be able to get you > >>> what you want. > >> > >> > >> TargetData does not have enough information for vectorization. For > example, we need to ask the target if it has efficient "cos4" > implementation or the cost of 'mult_4xf32'. We need lots of target > specific information for deciding when to vectorize and which > vectorization optimizations to apply. > >> > > > > Sure. I was mostly going with the idea of "insert some Targetish...
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
> Regarding TLI. So, DAGCombine, CodeGenPrepare, LoopReduce all use the TLI > interface which can answer questions such as "is this operation supported ?" > or "is this type legal". This is a subset of what we need in a vectorized. > We can discuss other requirements that the vectorizer may have after we > finish with the first phase. I suspect that we may
2012 Oct 05
6
[LLVMdev] LLVM Loop Vectorizer
On Oct 5, 2012, at 12:08 AM, Nick Lewycky <nicholas at mxc.ca> wrote: > I absolutely think that we should have something like TargetData (now DataLayout) but for the vector types and operations. However, I'm not familiar with "Target Lowering Interface". Could you explain? I agree. Once we make the codegen accessible to the IR-level passes we need to start talking about