search for: optmization

Displaying 20 results from an estimated 57 matches for "optmization".

Did you mean: optimization
2012 Jul 23
1
Help with Portfolio Optmization
...traints on weights like /x1< w1 <x2 x3< w2 <x4</i> I need help with solving for the minimum variance portfolio as solve.QP doesn't allow me to specify the lower boundaries. Thanks Mahesh -- View this message in context: http://r.789695.n4.nabble.com/Help-with-Portfolio-Optmization-tp4637425.html Sent from the R help mailing list archive at Nabble.com.
2009 Jan 14
0
[LLVMdev] LLVM optmization
Hi Manoel, > Hi, Duncan. > > Here an example : > #include <stdio.h> > #include <stdlib.h> > // > int TESTE ( int parami ,int paraml ) > { > int varx=0; > int nI =0; > > if( parami > 0 ) > { > varx = parami; > } > else > { > varx = 1; > } > > for( nI = 1 ; nI <= paraml;
2000 Aug 29
1
optmizing encoding
Is there any reason to avoid looking at optimizing the encoding process? From just a simple profile run, it looks like a big chunk of the time is in seed_curve, sqrt, dradf4 and log. Are there big changes to the encoding part that are coming that would invalidate optimizations done now? -tim --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2001 Jan 10
1
optmizing with monotone stepfunctions?
Before re-inventing the wheel I would like to ask: does anyone know about an optimizer in R which can reliably identify which value of X (Xopt) leads to Y (Yopt) closest to Ytarget in Y <- MonotoneStepFun(X) optionally with the restriction that Yopt <= Ytarget (at least if any Y <= Ytarget, otherwise any Yopt > Ytarget would be the preferred answer) If none is known, I will write
2007 Jun 23
2
End of File Error on index optmize
I was optimizing a 650MB using ferret (0.11.3) and I received the following error. I''ve seen some people have similar issues but I haven''t seen any resolutions. The contents of the index directory follow the error. Has anyone seen anything like this and found a resolution? Many thanks. /mnt/apps/search/releases/20070622175637/script/../config/../vendor/
2013 Jan 04
2
[LLVMdev] Compiler opt is turned off ?
...is not happening. I assume the reason behind this is that a, b and c are all global variables. Also, as no one is reading b and c after the statement "a = b + c", should they not get optimized out ( from "c = a" to end of function)? Now, if a, b and c are made locals, all the optmizations are kicked in: define i32 @main() nounwind uwtable { entry: %call = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([11 x i8]* @.str, i64 0, i64 0), i32 0) nounwind ret i32 0 } Are we little conservative on global variables even though *they don't have readers* and de...
2009 Nov 12
2
Non linear programming optimization (which package to use?)
Hello, 1) Is there any nonlinear programming optmizer that I can user for the following problem? Obj function: (max) revenue = price * volume Constraints: price and volume pair must be from the following variable data set: Variable data set: # price volume 1 10 500 2 20 450 3 30 330 4 40 250 5 50 190 Expected result: 10,000 (variable row#4) 2) Could it also be possible for the suggested
2004 Sep 29
2
Approximate a f(x,y)
Hi all, Running simulations, I'm generating market response to 2 factors X&Y.. There is no closed form for the market response.. The results are store in a matrix Z(X <- seq(.02,.98,.02), Y <- seq(.01,.19,.01)).. For optmization purpose I need to approximate the values for any factor X in 0,02-0,98 and Y in 0,01-0,19 How can I do it ? For one factor : Xn-1 < x <= Xn f(x)=(f(Xn-1)*(x-Xn-1)+f(Xn)*(Xn-x))/(Xn-Xn-1) I don't know how to generalize this for two factors.. Thanks in Advance Naji
2010 Jul 02
2
[LLVMdev] Executing a transformed program
Hi all, I´ve been working on a transformation pass which performs the remotion of some redundant instructions. So now it´s finished I´d like to run the optimized programs generated by my pass. But I´ve got some problems to do this, because I didn´t find a way to generate assembly from the code and then call the gcc compiler to produce machine-dependent code. Please, does anybody know how to run
2009 Jan 06
2
[LLVMdev] LLVM Optmizer
The following C code : #include <stdio.h> #include <stdlib.h> int TESTE2( int parami , int paraml ,double paramd ) { int varx=0,vary; int nI =0; //varx= parami; if( parami > 0 ) { varx = parami; vary = varx + 1; } else { varx = vary + 1; vary = paraml; } varx = varx + parami + paraml; for( nI = 1 ; nI <= paraml; nI++) { varx =
2005 Nov 07
9
has anyone tried adsl-optmizer kernel patches for dsl modems?
Hi I''m using wondershaper like script. But noticed imperfect scheduling. By googling, I found some patches that takes the aal5 atm overhead in the scheduling algorithms. http://www.adsl-optimizer.dk/ADSL-optimizer/ Before trying it, has anyone tried these patches? they apply on 2.4.29 kernel and 2.6.9 TC. I use centos4 with a 2.6 kernel, so I can''t try these easily. Thanks
2010 Jul 04
2
[LLVMdev] Executing a transformed program
Thank you for the answer Reid. I've been already using the format `opt -load MyPass.so -my-pass input.bc -o output.bc`. But my problem is to execute the .s generated file. As long as I know, gcc compiler is capable to generate target machine code from assembly. So I tried to compile it with gcc to generate machine code, but there was many problems. Is there any way to compile and run .s files?
2013 Aug 20
4
[LLVMdev] Memory optimizations for LLVM JIT
Hello. I'm new to LLVM and I've got some problems with LLVM JIT. I have set ExecutionEngine as CodeGenOpt::Aggressive and PassManagerBuilder.OptLevel as 3. (mem2reg and GVN are included) However, the machine code generated by JIT is not as good as that generated by clang or llc. Here is an example: -------------------------------------------------------------------- source fragment
2011 Sep 15
1
[LLVMdev] getelementptr with dynamic index
Hi, the following llvm-ir is manipulated by the optimizers: %target2 = getelementptr %.string %result, i32 0, i32 3, i32 %len1 (%_.string = type {i32, i32, i32, [0 x i8]}) the last parameter i32 %len1 is replaced by i32 0 by the optimizers. (both, 2.9 and 2.8). When i turn optmization off, it works correctly. How can i use an optimizer-safe dynamic indexing of arrays? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110915/b1357e8f/attachment.html>
2009 Jan 26
1
error managment
...l is generated. The problem is some series produces numeric problems with optim. My question is if there is a way of telling to R that at every critical error of optim jumps to the next series instead of stopping the calculations. Or better yet, tell it to run another arima fit but with a different optmization algorithm. Thanks!!! [[alternative HTML version deleted]]
2010 May 24
2
ROC curve
HI, Dear R community, I want to know how to select the optimal decision threshold from the ROC curve? At what threshold will give the highest accuracy? Thanks! -- Sincerely, Changbin -- [[alternative HTML version deleted]]
2013 Jan 04
0
[LLVMdev] Compiler opt is turned off ?
...eason behind this is that > a, b and c are all global variables. Also, as no one is reading b and c > after the statement "a = b + c", should they not get optimized out ( from > "c = a" to end of function)? > > > > Now, if a, b and c are made locals, all the optmizations are kicked in: > > > > define i32 @main() nounwind uwtable { > > entry: > > %call = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds > ([11 x i8]* @.str, i64 0, i64 0), i32 0) nounwind > > ret i32 0 > > } > > Are we little conservative o...
2011 Oct 27
2
[LLVMdev] Resolving sizeof's; target triples; type optimizations
...y code, I see an array of 8 x i8 being optimized into i64 (so that memcpy is then optimized into mov) by some optimization transformation(s). I want to prevent this from happening. What optimization does this kind of type replacement? How can one prevent it alone from running (but keeping all other optmizations, i. e. not using -O0 or something similar). Many thanks!! Harel Cain -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111027/41ab821a/attachment.html>
2009 Jan 07
3
[LLVMdev] LLVM optmization
The following C test program was compiled using LLVM with -O3 option and MSVC with /O2. The MSVC one is about 600 times faster than the one compiled with the LLVM. We can see that the for loop in MSVC assembler is solved in the optimization pass more efficiently than that in LLVM. Is there an way to get a optimization result in LLVM like that of the MSVC? Manoel Teixeira #include
2010 Jul 02
0
[LLVMdev] Executing a transformed program
How are you getting LLVM to run your pass? There's plenty of information here if you haven't found this document: http://llvm.org/docs/WritingAnLLVMPass.html I'm going to assume you're using `opt -load MyPass.so -my-pass input.bc -o output.bc` in which case you can just run llc on output.bc to get a .s file. Reid On Thu, Jul 1, 2010 at 8:16 PM, Alysson <aishofpf at