search for: vmaxs

Displaying 20 results from an estimated 47 matches for "vmaxs".

Did you mean: vmas
2012 Sep 21
5
[LLVMdev] Question about LLVM NEON intrinsics
...64-n32" target triple = "armv7-none-linux-androideabi" define void @vmaxf32(<4 x float> *%C, <4 x float>* %A, <4 x float>* %B) nounwind { %tmp1 = load <4 x float>* %A %tmp2 = load <4 x float>* %B %tmp3 = call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %tmp1, <4 x float> %tmp2) store <4 x float> %tmp3, <4 x float>* %C ret void } declare <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float>, <4 x float>) nounwind readnone I've got following code generated: ... vmaxf32:...
2012 Sep 21
0
[LLVMdev] Question about LLVM NEON intrinsics
...le = "armv7-none-linux-androideabi" > > define void @vmaxf32(<4 x float> *%C, <4 x float>* %A, <4 x float>* %B) nounwind { > %tmp1 = load <4 x float>* %A > %tmp2 = load <4 x float>* %B > %tmp3 = call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %tmp1, <4 x float> %tmp2) > store <4 x float> %tmp3, <4 x float>* %C > ret void > } > > declare <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float>, <4 x float>) nounwind readnone > > I've got following code...
2012 Sep 21
2
[LLVMdev] RE : Question about LLVM NEON intrinsics
...le = "armv7-none-linux-androideabi" > > define void @vmaxf32(<4 x float> *%C, <4 x float>* %A, <4 x float>* %B) nounwind { > %tmp1 = load <4 x float>* %A > %tmp2 = load <4 x float>* %B > %tmp3 = call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %tmp1, <4 x float> %tmp2) > store <4 x float> %tmp3, <4 x float>* %C > ret void > } > > declare <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float>, <4 x float>) nounwind readnone > > I've got following code...
2008 Oct 20
2
R Newbie Question
Hello list, I just started R today and tried something quite simple. I wanted to create a colored plot and eventually after hours of fiddling around got it working. However, my solution seems very suboptimal and I'd really appreciate your hints on how to improve. I believe that R already offers many functions I coded (e.g. distance between two vectors, vector length, vector normalization and
2012 Sep 21
0
[LLVMdev] Question about LLVM NEON intrinsics
...one-linux-androideabi" >> >> define void @vmaxf32(<4 x float> *%C, <4 x float>* %A, <4 x float>* %B) nounwind { >> %tmp1 = load <4 x float>* %A >> %tmp2 = load <4 x float>* %B >> %tmp3 = call <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float> %tmp1, <4 x float> %tmp2) >> store <4 x float> %tmp3, <4 x float>* %C >> ret void >> } >> >> declare <4 x float> @llvm.arm.neon.vmaxs.v4f32(<4 x float>, <4 x float>) nounwind readnone >> >>...
2007 Aug 29
5
Round Robin trafic shapping
I have this problem: I have an Internet line input with variable speed. I have a max speed and a min speed: Vmax and Vmin. The speed is always changing between Vmax and Vmin. I want to share the actual bandwidth (you don''t not how much, you only know the speed is between Vmax and Vmin) for N clients. The bandwidth should be shared so nobody can get more bandwidth than the others.
2001 Jul 31
4
nlme: bug in getCovariateFormula (PR#1038)
I found that predict.gnls failed with a wierd error message about a non-numeric argument to a binary vector in one of three nearly identical uses. Error in Inh/Ki : non-numeric argument to binary operator (Inh and Ki are arguments to the function used in the formula for the object whose predictions were requested). It turns out that the problem is in getCovariateFormula(). The final line in
2011 Aug 16
1
deSolve, extracting variable values from inside ode function
I'm just getting to grips with using ode function and have used the examples and vignettes to produce a small model of a one-pool, michaelis-menten, enzyme kinetic reaction. The rate of flux of substrate into pool A is constant (fluxoa) however the rate of flux out of pool A is controlled by the HMM equation (v = Vmax/ ( 1 + (Km / Concentration A )) ). This function works fine and
2006 Feb 24
1
help with optimize statement
Can some help me spot what I'm doing wrong here. I have two equations, one a michalis-menton eqn and one a straight line. I need to work out where they cross. I created the function: solveEqn<-function(x,vals){ Vmax<-vals[1] Ks<-vals[2] m<-vals[3] c<-vals[4] diff<-0 mmVal<-exp(Vmax+x/(Ks+x)) slVal<-x*m+c diff<-mmVal-slVal return(diff) } >
2006 May 10
1
[patch] kinit cmdline handling change
Following mail advice from maximilian attems (thanks). The following patch changes 2 parts of kinit's command line parameter handling. 1) Parse command line parameters passed to kinit *before* /proc/cmdline, in order to allow overrides 2) Pass this resultant command line to the init program, rather than forcing the kinit caller to pass all /proc/cmdline parameters to the kinit call.
2012 Sep 21
0
[LLVMdev] Question about LLVM NEON intrinsics
On 21 September 2012 09:28, Sebastien DELDON-GNB <sebastien.deldon at st.com> wrote: > declare <16 x float> @llvm.arm.neon.vmaxs.v16f32(<16 x float>, <16 x float>) nounwind readnone > > llc fails with following message: > > SplitVectorResult #0: 0x2258350: v16f32 = llvm.arm.neon.vmaxs 0x2258250, 0x2258050, 0x2258150 [ORD=3] [ID=0] > > LLVM ERROR: Do not know how to split the result of this opera...
2012 Sep 21
2
[LLVMdev] RE : Question about LLVM NEON intrinsics
Hello Renato, You're pointing me at ARM intrinsics related to loads, problem that I've reported in original e-mail, is not support for vector loads, but support for 'vmaxs'. For instance, there is no vector loads of 16 floats in ARM ISA but it is legal to write in LLVM: ; ModuleID = 'vadd.ll' target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-n32" target triple = &quo...
2013 Mar 01
0
Weird SIP Issue
We are having a weird problem where calls get cut off in the middle. I'm not a SIP expert but could the INVITE with an empty SDP be the problem? |Time | 209.220.119.18 | | | | 208.88.61.150 | |9687.369 | INVITE SDP (g729 telephone-eventRTPType-101) |SIP From: <sip:vmax at 209.220.119.18
1999 Feb 02
0
Suggestion
...mp; look it up */ < p = CHAR(STRING(op)[0]); < q = buf; while ((*q = *p) != '\0') { p++; q++; } < < if (!(fun=R_FindSymbol(buf))) errorcall(call, < "C-R function not in load table\n"); < < retval=fun(args); < < vmaxset(vmax); < return retval; < } < 969c946 < } --- > } diff -r R-0.63/src/main/names.c R-0.63.orig/src/main/names.c 497d496 < {".RC", do_dotRCode, 0, 1, -1, PP_FOREIGN}, diff -r R-0.63/src/main/names.h R-0.63.orig/src/main/names....
2008 Oct 03
1
Memory crash
...R bug? I suspect it has to do with repeated calls to 'vmmin' like this: for (...){ vmax = vmaxget(); vmmin(*p, b, &Fmin, bfun, bfun_gr, *maxit, *trace, mask, abstol, reltol, nREPORT, ext, &fncount, &grcount, &fail); vmaxset(vmax); ... } but I am only guessing. Any suggestions? Ubuntu 8.04, R-2.7.2. G?ran ------------------------------------------------------------------- > glmmboot(y ~ x, cluster = cluster, data = res$dat, family = binomial, boot = 400) Program received signal...
2006 May 05
3
kinit cmdline handling change
The following patch swaps the command line handling of kinit. It seems apparent that, if one were to call kinit like so: kinit root=/foo/bar They would be attempting to override the /proc/cmdline. As it stands, kinit parses the /proc/cmdline *first*, meaning the above does not work. Just for a simple use case: User A has an encrypted root device, root=/dev/hda3 Some init scripts detect this,
2000 Jan 17
1
lwd patches for "contour"
...516,521 **** --- 519,527 ---- dd->gp.col = INTEGER(col)[i % ncol]; if (dd->gp.col == NA_INTEGER) dd->gp.col = colsave; + dd->gp.lwd = REAL(lwd)[i % nlwd]; + if (dd->gp.lwd == NA_REAL) + dd->gp.lwd = lwdsave; contour(x, nx, y, ny, z, REAL(c)[i], atom, dd); vmaxset(vmax); } *************** *** 523,529 **** vmaxset(vmax0); dd->gp.lty = ltysave; dd->gp.col = colsave; ! UNPROTECT(2); /* NOTE: only record operation if no "error" */ /* NOTE: on replay, call == R_NilValue */ if (call != R_NilValue) --...
2004 Feb 04
1
Fitting nonlinear (quantile) models to linear data.
Hello. I am trying to fit an asymptotic relationship (nonlinear) to some ecological data, and am having problems. I am interested in the upper bound on the data (i.e. if there is an upper limit to 'y' across a range of 'x'). As such, I am using the nonlinear quantile regression package (nlrq) to fit a michaelis mention type model. The errors I get (which are dependant on
2008 Jul 10
2
[PATCH] tripplite driver updates
The tripplite driver was developed on a machine with a reliable serial connection, and inherited the assumption that the serial line connection would not drop, reorder, or fail character read and writes. This patch adds significantly improved failure mode handling and also does basic checks of data validity. There's also a few minor cleanups/beautification. I've tested this code on my
2009 Jun 11
3
deSolve question
Dear All, I like to simulate a physiologically based pharmacokinetics model using R but am having a problem with the daspk routine. The same problem has been implemented in Berkeley madonna and Winbugs so that I know that it is working. However, with daspk it is not, and the numbers are everywhere! Please see the following and let me know if I am missing something... Thanks a lot in advance,