using premia and nsp on a parallel architecture for risk
play

Using Premia and Nsp on a Parallel Architecture for Risk Management - PowerPoint PPT Presentation

Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Practical experiments Conclusion Using Premia and Nsp on a Parallel Architecture for Risk Management


  1. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Practical experiments Conclusion Using Premia and Nsp on a Parallel Architecture for Risk Management Benchmark Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Université Paris-Est, CERMICS, École des Ponts and École Nationale Supérieure de Techniques Avancées Pdcof 2009 Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 1 / 21

  2. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Practical experiments Conclusion Introduction 1 Premia: a library for numerical computations in finance 2 Nsp 3 Nsp toolboxes 4 MPI toolbox for Nsp Premia toolbox for Nsp Practical experiments 5 Conclusion 6 Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 2 / 21

  3. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Introduction Nsp toolboxes Practical experiments Conclusion Context of risk evaluation Banking legislation imposes to financial institutions the daily evaluation of the risk they are exposed to. Banks own very large portfolios of contingent claims (several thousands of claims). For a given contingent claim, the price evaluation requires a computation time from a few milliseconds to dozens of minutes. A huge number of independent computations (around 10 6 ) is necessary to evaluate the risk of the whole portfolio. These computations must be carried out on a daily basis (batch code every night). Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 3 / 21

  4. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Introduction Nsp toolboxes Practical experiments Conclusion A proposed software environment Being able to have a free access to a realistic portfolio descriptions (models and parameters) would be useful for benchmarking parallel architectures. Unfortunately, for obvious confidentiality, no such information exists. Moreover, algorithms for portfolio evaluation are seldom available in a unified package for free. We propose a software architecture for constructing realistic models and portfolios based on freely available softwares: Premia: a library used to compute financial products prices. Mpi: to control parallelism. Nsp: provides a unified access to MPI and Premia primitives. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 4 / 21

  5. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Premia: a library for numerical computations in finance Nsp toolboxes Practical experiments Conclusion Premia: A library A library devoted to the computation of prices and hedges for derivatives. A major issue for financial institutions. Developed by the MATHFI project: A research team involved in numerical methods for probability and finance from INRIA and ENPC. Keeps track of the most recent advances in computational finance in a well-documented way. Focuses on the implementation of numerical analysis techniques, probabilistic and deterministic methods. Provides an important entry point for numerical algorithms in Finance. A powerful testing platform for comparing numerical methods. A fairly complete library with regards to what is currently used in advanced financial mathematics. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 5 / 21

  6. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Premia: a library for numerical computations in finance Nsp toolboxes Practical experiments Conclusion Premia: A consortium Developed in interaction with a consortium of financial institutions: Calyon, Natixis, Société Générale, Raiffeisen Zentralbank, Bank Austria. The members support the development of Premia. The members help to determine the directions in which the project should evolve. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 6 / 21

  7. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp Nsp toolboxes Practical experiments Conclusion Nsp A Matlab-like Scientific Software Package, GPL license. High-level programming language: scripting language or programming language. Gives an easy access to efficient numerical routines. Online help, Gui and graphics facilities. Extendable: glue code called interfaces can be used to dynamically embed an external library into Nsp. Shares many paradigms with other Matlab-like Scientific Softwares as for example: Matlab, Octave, ScilabGtk and also with scripting languages such as Python for instance. Two typical toolboxes for this work: Nsp Premia toolbox gives access at Nsp level to Premia. MPI interface, gives at Nsp level access to mainly all MPI-2 functions. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 7 / 21

  8. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Nsp toolboxes Practical experiments MPI toolbox for Nsp Conclusion MPI toolbox for Nsp Provides a direct access to MPI functions within the Nsp scripting language. Thus, gives an easy way to get familiar to MPI functions which can be tested interactively. Hides the tedious work of packing and unpacking complex data. Similar toolboxes are available: Mpitb provides such a full MPI interface for the Matlab and Octave languages. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 8 / 21

  9. MPI_Comm_spawn primitive. MPI_Init(); Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture COMM =mpi omm_ reate('SELF'); Nsp Nsp toolboxes Nsp toolboxes INFO_NULL=mpiinfo_ reate('NUL L'); Practical experiments MPI toolbox for Nsp Conclusion md = "exe (''sr 7.x/loader.s e'');MPI _Init ();"; md = md + "parent=MPI_Comm_get_parent();" ; An example md = md + "[NEWORLD℄=MPI_Inter omm_merge( paren t,1) ;"; nsp_exe = getenv('NSP')+'/bin/nsp'; args=["-name","nsp- hild","-e ", md℄; It is possible to launch a master Nsp and then to spawn slaves Nsp, using [ hildren,errs℄= MPI_Comm_spawn(nsp_exe,args,1,I NFO_ NULL, 0,CO MM); the // hild will exe ute md [NEWORLD℄ = MPI_Inter omm_merge ( hildren, 0); Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 9 / 21

  10. md to start interacting with the master through a Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Nsp toolboxes Practical experiments MPI toolbox for Nsp Conclusion mpi omm_ reate creates a Nsp Example continued NSP_spawn and it is then n slaves by the simple Nsp command: The previous code starts a new Nsp which will execute the transmitted NEWORLD=NSP_spawn(n); merged communicator. The interface between Nsp and MPI involves functions and also new Nsp objects devoted to MPI. communicator object which internally contains a MPI communicator. Since starting a set of Nsp slaves is a classic task, the previous given code can be writen in a Nsp function possible to start Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 10 / 21

  11. MPI_Send_Obj and MPI_Re v_Obj . -nsp->A=list('string',%t,ran d(4,4 )); -nsp->MPI_Send_Obj(A,rank,TA G,MCW ) Introduction Premia: a library for numerical computations in finance ... Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Nsp toolboxes -nsp->B=MPI_Re v_Obj(rank,TA G,MCW ) Practical experiments MPI toolbox for Nsp Conclusion -nsp->A=sparse(rand(2,2));S= seria lize (A); Sending/recieving data -nsp->MPI_Send_Obj(S,rank,TA G,MCW ) Nsp objects echanged with ... -nsp->B=MPI_Re v_Obj(rank,TA G,MCW ); Directly for basic objects: -nsp->B.equal[A℄ ans = b (1x1) | T | Using Nsp serialization for complex objects: Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 11 / 21

  12. Introduction Premia: a library for numerical computations in finance Using Premia and Nsp on a Parallel Architecture Nsp Nsp toolboxes Nsp toolboxes Practical experiments Premia toolbox for Nsp Conclusion Premia toolbox for Nsp Embedding Premia into Matlab-like Scientific Software provides two ways of accessing the library: through the scripting language. Then premia can interact with other toolboxes using the graphical capabilities of the software (Gui). Since the license of Premia gives right to freely distribute the version of Premia two year older that the current release. Using a free Scientific Software was important. The internal class system of Nsp enables to easily add new objects in the interpreter. This is how we introduced a new type named PremiaModel . Through the PremiaModel objects the wide range of Premia pricing problems are made available from Nsp. Jean-Philippe Chancelier, Bernard Lapeyre, Jérôme Lelong Pdcof 2009 12 / 21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend