search for: downward

Displaying 20 results from an estimated 239 matches for "downward".

2012 Sep 18
1
Changing Quota downward for special Mailboxes? (2.1.6)
It seems there is no way to correct te quota limit downward for some mailboxes, like: quota_rule9 = UCE-TMP:storage=-10%% The idea is to not eat up the users storage with spam, so that spam stays in the queue (for some time) while real mail gets delivered. There *is* a line } else if (*value != '-' && relative_rule) { in...
2020 Sep 09
3
constrained cosine rounding mode behavior
...arithmetic through llvm. I have a problem with the rounding mode with llvm.experimental.constrained.cos I have two pieces of codes: ; Function Attrs: norecurse nounwind readnone ssp uwtable define double @cosine_down(double returned) local_unnamed_addr #0 {   ; call the llvm intrinsic to perform downward cosine   %2 = call double @llvm.experimental.constrained.cos(double %0, metadata !"round.downward", metadata !"fpexcept.strict")   ret double %2 } ; Function Attrs: norecurse nounwind readnone ssp uwtable define double @cosine_up(double returned) local_unnamed_addr #0 {   ; cal...
2020 Sep 03
3
using experimental intrinsics failed
...ging rounding mode during computation. The document I found https://llvm.org/docs/LangRef.html#constrained-floating-point-intrinsics, seems to be doing the trick. Here is the piece of code that I did: %5 = call double @llvm.experimental.constrained.fadd(double %0, double %2, metadata !"round.downward", metadata !"fpexcept.ignore") It is taking the first and third argument and adding them together with the downward rounding mode. However, when I try to convert it to bit code, I got the error: error: use of undefined value '@llvm.experimental.constrained.fadd' Is there a...
2020 Sep 04
2
using experimental intrinsics failed
Hi Craig: I tried that, now the function is like this: ; Function Attrs: norecurse nounwind readnone ssp uwtable define { double, double } @add(double, double, double, double) local_unnamed_addr #0 {   %5 = call double @llvm.experimental.constrained.fadd(double %0, double %2, metadata !"round.downward", metadata !"fpexcept.ignore")   %6 = fadd double %1, %3   %7 = insertvalue { double, double } undef, double %5, 0   %8 = insertvalue { double, double } %7, double %6, 1   ret { double, double } %8 } declare double @llvm.experimental.constrained.fadd(double, double, metadata, metada...
2007 Apr 18
0
This RPG is a downward spiral into madness.
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 25970 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070416/186ffecb/attachment.gif
2007 Apr 18
0
This RPG is a downward spiral into madness.
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 25970 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070416/186ffecb/attachment.gif
2010 Sep 03
6
how can I plot bar plots with all the bars (negative and positive) in the same direction????
Dear r-help mailing list, this seems stupid, but I actually don't find the solution: if I have a vector of numbers x of length n, ranging, say, from -3 to 4, if I do barplot (x) all the values below 0 go downwards, and all the positive values go upward. How can I make them all begin from the minimum pointing upwards? Thanks! Gabriele Zoppoli, MD Ph.D. Fellow, Experimental and Clinical Oncology and Hematology, University of Genova, Genova, Italy Guest Researcher, LMP, NCI, NIH, Bethesda MD Work: 301-451-...
2003 Jul 24
3
data.frame subsetting
Hi, is there advice how to subset a data.frame, where until R version 1.7.0 it was possible to write > data[["subset"]] which meant the same as > data$subset (data is a data.frame). From 1.7.1 on this does not seem to work longer. Could there be a bug in downwards compatibility? sincerely yours Dirk
2006 Oct 18
1
MARS help?
...hat look fairly close to a sequence of straight line segments. Unfortunately, 'mars' seems to totally miss the obvious places for the knots in the apparent first order spline model, and I wonder if someone can suggest a better way to do this. The following example consists of a slight downward trend followed by a jump up after t1=4, following by a more marked downward trend after t1=5: Dat0 <- cbind(t1=1:10, x=c(1, 0, 0, 90, 99, 95, 90, 87, 80, 77)) library(mda) fit0 <- mars(Dat0[, 1, drop=FALSE], Dat0[, 2], penalty=.001) plot(Dat0, type="l") lines(Dat...
2020 Sep 04
2
using experimental intrinsics failed
...like this: > > > ; Function Attrs: norecurse nounwind readnone ssp uwtable > > > define { double, double } @add(double, double, double, double) local_unnamed_addr #0 { > > >   %5 = call double @llvm.experimental.constrained.fadd(double %0, double %2, metadata !"round.downward", metadata !"fpexcept.ignore") > > >   %6 = fadd double %1, %3 > > >   %7 = insertvalue { double, double } undef, double %5, 0 > > >   %8 = insertvalue { double, double } %7, double %6, 1 > > >   ret { double, double } %8 > > > } > >...
2007 May 13
1
Strange behavior of debugger
Hi, All: I had some trouble debugging C source dynamically loaded into R , when I issued N in gdb(or insight) , the debugger, instead of moving downward step by step, jumped to strange positions (upward, downward, one step, a few steps away). To enter the debugger, I issued gdb(insight) Rgui.exe in Cygwin and add this line : asm("int $3"); to my C code. After entering R, I did something like: dyn.load("mypath/mycode.dll&qu...
2008 May 04
2
Ancova_non-normality of errors
Hello Helpers, I have some problems with fitting the model for my data... -->my Literatur says (crawley testbook)= Non-normality of errors-->I get a banana shape Q-Q plot with opening of banana downwards Structure of data: origin wt pes gender 1 wild 5.35 147.0 male 2 wild 5.90 148.0 male 3 wild 6.00 156.0 male 4 wild 7.50 157.0 male 5 wild 5.90 148.0 male 6 wild 5.95 148.0 male 7 wild 8.55 160.5 male 8 wild 5.90 148.0 male 9...
2009 Apr 07
1
Simulate binary data for a logistic regression Monte Carlo
...;- rnorm(1000) LP <- a + B1*x1 + B2*x2 + epsilon # Linear predictor y <- rbinom(length(LP), 1, plogis(LP)) # Binomial link model <- glm(y ~ x1 + x2, family = binomial) alpha[i] <- coef(model)[1] X1[i] <- coef(model)[2] X2[i] <- coef(model)[3] } mean(X1) # Shows a bias downward (should be about .5) mean(X2) # Shows a bias downward (should be about .85) mean(alpha) # Pretty close (should be about 0) -- View this message in context: http://www.nabble.com/Simulate-binary-data-for-a-logistic-regression-Monte-Carlo-tp22928872p22928872.html Sent from the R help mailing list ar...
2012 Mar 07
4
[LLVMdev] Updating value from PHI
...edge to the loopbody (non extracted portion) and create a new PHI coming from the extracted BB and the backedge. I can do this; however, the PHIs following in all the other BBs are not getting updated, neither are the statements in the loopbody. What is the easieset way to propagate these changes downward? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120307/bc52aa4e/attachment.html>
2015 Aug 21
2
The semantics of the fptrunc instruction with an example of incorrect optimisation
...in C ``` #include <stdio.h> #include <fenv.h> int main() { double x = 0.3; fesetround(FE_TONEAREST); float y = (float) x; printf("y (nearest):%a\n", y); fesetround(FE_UPWARD); y = (float) x; printf("y (upward):%a\n", y); fesetround(FE_DOWNWARD); y = (float) x; printf("y (downward):%a\n", y); return (int) y; } ``` If I get the unoptimised LLVM IR for this by running ``clang -O0 float.c -emit-llvm -c -o float.clang.o0.bc`` I can see that the cast of variable x is being handled using LLVM IR's ``fptrunc`` ``` ......
2006 Mar 22
2
Problem loading images larger than 512M
Hi, I have a machine with 1.5G memory. When I try to boot a image of size 700M, it fails. In fact, it seems like the image is loading downward from 512M. Is this a hardware problem, or something that can be fixed ?
2000 Oct 08
1
binding to privileged ports
Apologies if this is a FAQ; I couldn't find an answer on openssh.com or the mailing list archive.... Commercial SSH (I looked at 1.2.30) allocates privileged ports by counting /downwards/ from 1023, so that it will obtain a socket with (roughly speaking) the highest available privileged port number. This also appears to be the behaviour of rsh et al: (from sshconnect.c; whitespace elided) for (p = 1023; p > 512; p--) { sock = socket(AF_INET, SOCK_STREA...
2012 Jul 16
2
Combining Data Frames
I have 2 data tables. Each hold information categorized into "Date" and "Price." What I need to do is combine the two to get 2 columns of "Date" and "Price," by continuing the table downwards with the new rows supplied from the second table. So, for example I have 5/1/12 2 5/2/12 5 As data table 1 and 5/3/12 65 5/4/12 7 As data table 2 and I need to create the data table 5/1/12 2 5/2/12 5 5/3/12 65 5/4/12 7 Any ideas how to do it? Thanks! [[alternative HTML version deleted]]
2010 Jul 16
3
Counterstrike 1.6 lag and full screen issues
...nse lag starts up (FPS < ~5). It's almost as if something is competing with counterstrike for video output. Anyways, I've found that if I alt tab, then alt tab back, it fixes the lag temporarily but I now get the problem that my dock pops up over cs and the whole game seems to be shifted downwards a few pixels. I'm at a loss here, if more info is needed, just let me know. Cheers, SMRT
2009 Jan 12
5
Restful Authentication Uninitialized Constant in Production...
...Ahh. While writing this, I decided to change: RAILS_GEM_VERSION = ''2.2.2'' unless defined? RAILS_GEM_VERSION to this RAILS_GEM_VERSION = ''2.1.0'' unless defined? RAILS_GEM_VERSION And, things work fine. Now to find out why. I don''t like having to step downward... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, sen...