search for: const_val

Displaying 4 results from an estimated 4 matches for "const_val".

2009 Dec 13
0
need a solution to an R-problem: consultant available?
...#datasort # shows sorted data starts = list(const =0.00001, alpha = 20) fm <- nls(Discharge ~ const*Stage ^alpha, start=starts) #runs a non linear least squares regression model #predict(fm) # fitted values at observed times #summary(fm) coef=coefficients(fm) const_val=round(coef["const"],4) #makes a variable for the equation in the plot and rounds it to 4 decimal places exp_val=round(coef["alpha"],4) plot(Discharge~Stage, #xlim=c(min(Stage),max(Stage)), #sets limits of x and y axis based on max and min in data set...
2011 May 27
0
[LLVMdev] Precompiled templates
Hi Andreas, > I'm currently investigating the use of LLVM for a project. For example, > if I have a function like > > int a(int x, int y) { > if (P == 0) { > return x - y; > } else { > return y - x; > } > } > > and P could be considered constant, one of the code paths could be > optimized out. Now I want to load a compiled bitcode
2011 May 25
2
[LLVMdev] Precompiled templates
Hello list, I'm currently investigating the use of LLVM for a project. For example, if I have a function like int a(int x, int y) { if (P == 0) { return x - y; } else { return y - x; } } and P could be considered constant, one of the code paths could be optimized out. Now I want to load a compiled bitcode file into a CFG, replace all occurrences of P with the value (either 0
2015 May 24
19
[RFC PATCH 00/11] Implement ARB_cull_distance
This patch series adds the needed support for this extension to the various parts of mesa to finally enable it for nvc0. Dave Airlie (1): glsl: lower cull_distance into cull_distance_mesa Tobias Klausmann (10): glapi: add GL_ARB_cull_distance mesa/main: add support for GL_ARB_cull_distance mesa/prog: Add varyings for arb_cull_distance mesa/st: add support for GL_ARB_cull_distance