search for: minss

Displaying 2 results from an estimated 2 matches for "minss".

Did you mean: mins
2003 Feb 28
2
optim
...,aa=aa, method = "L-BFGS-B",lower=c(0,0,0.5)) print(res$par) print(res$value) > source("C:/Program Files/R/integral.R") [1] 2.50 7000.00 0.84 # initial [1] 2.3487221 6999.9999823 0.5623628 # final [1] 75613.05 # minSS > source("C:/Program Files/R/integral.R") [1] 2.5 15000 0.84 # initial [1] 2.125804 14999.999747 2.241179 # final [1] 50066.35 # minSS Best regards, Remigijus mailto:remigijus.lapinskas at m...
2008 May 27
2
[LLVMdev] Min and max
Hi all, I'm trying to implement a floating-point 'min' and 'max' operation using select. For 'min' I get the expected x86 assembly minss instruction, but for 'max' I get a branch instead of maxss. The corresponding C syntax code looks like this: float z = (x > y) ? x : y; Any clues? Could someone maybe explain to me the basics of LLVM's target specific optimizations and code generation? I'd love to...