search for: blackscholes

Displaying 14 results from an estimated 14 matches for "blackscholes".

Did you mean: blackholes
2012 Mar 13
1
3D Black-Scholes Graph Help!
Hello all! I would like to create a 3d plot, with the option price explained by the underlying price and time. Unfortunately, I can't quite get it to work. I would very much appreciate your help! Thanks, Anna # Black-Scholes Option Graph library(lattice) blackscholes <- function(s, k, r=.1, t=5, sigma=.9,call=TRUE) { #calculate call/put option d1 <- (log(s/k)+(r+sigma^2/2)*t)/(sigma*sqrt(t)) d2 <- d1 - sigma * sqrt(t) ifelse(call==TRUE,s*pnorm(d1) - k*exp(-r*t)*pnorm(d2),k*exp(-r*t) * pnorm(-d2) - s*pnorm(-d1)) } plotbs <...
2010 Jul 20
2
[LLVMdev] I would like to merge PARSEC into test-suite
From here: http://parsec.cs.princeton.edu It is open-source and redistributable, and I have added LICENSE.TXT files to all the pieces I want to merge. These are blackscholes, canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions. I will disable the tests by default on the initial merge and test thoroughly on Linux and MacOS before enabling them. May I please commit my changes directly to test-suite? Thanks, --Patrick -- If I'm not here, I...
2010 Jul 20
3
[LLVMdev] I would like to merge PARSEC into test-suite
On Tue, Jul 20, 2010 at 1:30 AM, Owen Anderson <resistor at mac.com> wrote: > Patrick, > > On Jul 20, 2010, at 1:18 AM, Patrick Simmons wrote: >> It is open-source and redistributable, and I have added LICENSE.TXT >> files to all the pieces I want to merge.  These are blackscholes, >> canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions.  I >> will disable the tests by default on the initial merge and test >> thoroughly on Linux and MacOS before enabling them.  May I please commit >> my changes directly to test-suite? Awesome! Can we...
2010 Jul 20
0
[LLVMdev] I would like to merge PARSEC into test-suite
Patrick, On Jul 20, 2010, at 1:18 AM, Patrick Simmons wrote: > It is open-source and redistributable, and I have added LICENSE.TXT > files to all the pieces I want to merge. These are blackscholes, > canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions. I > will disable the tests by default on the initial merge and test > thoroughly on Linux and MacOS before enabling them. May I please commit > my changes directly to test-suite? I'm not convinced that t...
2010 Jul 22
2
[LLVMdev] I would like to merge PARSEC into test-suite
...t; >>> >>> Patrick, >>> >>> On Jul 20, 2010, at 1:18 AM, Patrick Simmons wrote: >>> >>>> >>>> It is open-source and redistributable, and I have added LICENSE.TXT >>>> files to all the pieces I want to merge.  These are blackscholes, >>>> canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions.  I >>>> will disable the tests by default on the initial merge and test >>>> thoroughly on Linux and MacOS before enabling them.  May I please commit >>>> my changes directly...
2010 Jul 21
0
[LLVMdev] I would like to merge PARSEC into test-suite
...Anderson <resistor at mac.com> wrote: > >> Patrick, >> >> On Jul 20, 2010, at 1:18 AM, Patrick Simmons wrote: >> >>> It is open-source and redistributable, and I have added LICENSE.TXT >>> files to all the pieces I want to merge. These are blackscholes, >>> canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions. I >>> will disable the tests by default on the initial merge and test >>> thoroughly on Linux and MacOS before enabling them. May I please commit >>> my changes directly to test-suite? &...
2010 Jul 22
0
[LLVMdev] I would like to merge PARSEC into test-suite
...atrick, >>>> >>>> On Jul 20, 2010, at 1:18 AM, Patrick Simmons wrote: >>>> >>>> >>>>> It is open-source and redistributable, and I have added LICENSE.TXT >>>>> files to all the pieces I want to merge. These are blackscholes, >>>>> canneal, dedup, fluidanimate, freqmine, streamcluster, and swaptions. I >>>>> will disable the tests by default on the initial merge and test >>>>> thoroughly on Linux and MacOS before enabling them. May I please commit >>>>> my c...
2011 Oct 19
6
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...1109/CGO.2011.5764682 In contrast to Clover and pocl, we aimed at maximum performance before full support of the API (which simply requires more manpower than one PhD student). The driver was evaluated using benchmarks from the AMD APP SDK, e.g. Mandelbrot, NBody, FastWalshTransform, Histogram, BlackScholes, DCT, ... Our measurements show that our driver outperforms both Intel's and AMD's CPU driver for almost all of the benchmarks. We plan to release both the vectorization library as well as the OpenCL driver under a BSD-style license, but there is still significant work to be done in ter...
2011 Oct 19
0
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...> In contrast to Clover and pocl, we aimed at maximum performance before > full support of the API (which simply requires more manpower than one > PhD student). > The driver was evaluated using benchmarks from the AMD APP SDK, e.g. > Mandelbrot, NBody, FastWalshTransform, Histogram, BlackScholes, DCT, > ... > Our measurements show that our driver outperforms both Intel's and > AMD's > CPU driver for almost all of the benchmarks. > > We plan to release both the vectorization library as well as the OpenCL > driver under a BSD-style license, but there is still si...
2011 Oct 19
1
[LLVMdev] ANN: libclc (OpenCL C library implementation)
...t to Clover and pocl, we aimed at maximum performance before >> full support of the API (which simply requires more manpower than one >> PhD student). >> The driver was evaluated using benchmarks from the AMD APP SDK, e.g. >> Mandelbrot, NBody, FastWalshTransform, Histogram, BlackScholes, DCT, >> ... >> Our measurements show that our driver outperforms both Intel's and >> AMD's >> CPU driver for almost all of the benchmarks. >> >> We plan to release both the vectorization library as well as the OpenCL >> driver under a BSD-style lic...
2010 Nov 22
0
[LLVMdev] Sparc back end fix
Hi Tim, Thanks for the patch. I had a few questions though - just to make sure that I get the problem correctly. Currently, here is your flow, as I understand it : x86 llvm-gcc binary llc -march=sparc gcc cross/sparc source ---------------------> .bc ------------------> .s -----------------> sparc executable. Is this correct? Or did you manage to build the
2010 Nov 22
3
[LLVMdev] Sparc back end fix
Hi everyone, Following my earlier posting (http://lists.cs.uiuc.edu/pipermail/llvmdev/2010-November/036292.html), I sent another message to the list, but it seems like it didn't get through :-( I managed to fix the problem in my earlier post and compile a cross-llvm-gcc. Then I discovered I was having problems with a setting a variable based on a ?: condition. Anyway, I've
2011 Oct 19
0
[LLVMdev] ANN: libclc (OpenCL C library implementation)
Do we have a list of these open-source LLVM-based OpenCL projects somewhere? Off the top of my head, we have: libclc: http://www.pcc.me.uk/~peter/libclc/ pocl: https://launchpad.net/pocl clover: http://cgit.freedesktop.org/~steckdenis/clover/ (I think that all of these have BSD- or MIT-style licenses). Are there any others? -Hal On Wed, 2011-10-19 at 14:47 +0100, Peter Collingbourne wrote:
2011 Oct 19
5
[LLVMdev] ANN: libclc (OpenCL C library implementation)
Hi, This is to announce the availability of libclc, an open source, BSD licensed implementation of the library requirements of the OpenCL C programming language, as specified by the OpenCL 1.1 Specification. libclc is intended to be used with Clang's OpenCL frontend. libclc website: http://www.pcc.me.uk/~peter/libclc/ libclc is designed to be portable and extensible. To this end, it