Amesos2 - Direct Sparse Solver Interfaces  Version of the Day
Amesos2_Cholmod_FunctionMap.hpp
Go to the documentation of this file.
00001 // @HEADER
00002 //
00003 // ***********************************************************************
00004 //
00005 //           Amesos2: Templated Direct Sparse Solver Package 
00006 //                  Copyright 2011 Sandia Corporation
00007 //
00008 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00009 // the U.S. Government retains certain rights in this software.
00010 //
00011 // Redistribution and use in source and binary forms, with or without
00012 // modification, are permitted provided that the following conditions are
00013 // met:
00014 //
00015 // 1. Redistributions of source code must retain the above copyright
00016 // notice, this list of conditions and the following disclaimer.
00017 //
00018 // 2. Redistributions in binary form must reproduce the above copyright
00019 // notice, this list of conditions and the following disclaimer in the
00020 // documentation and/or other materials provided with the distribution.
00021 //
00022 // 3. Neither the name of the Corporation nor the names of the
00023 // contributors may be used to endorse or promote products derived from
00024 // this software without specific prior written permission.
00025 //
00026 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
00027 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00028 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00029 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
00030 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00031 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00032 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00033 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00034 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00035 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00036 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00037 //
00038 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
00039 //
00040 // ***********************************************************************
00041 //
00042 // @HEADER
00043 
00044 
00055 #ifndef AMESOS2_NEWSOLVER_FUNCTIONMAP_HPP
00056 #define AMESOS2_NEWSOLVER_FUNCTIONMAP_HPP
00057 
00058 #ifdef HAVE_TEUCHOS_COMPLEX
00059 #include <complex>
00060 #endif
00061 
00062 #include "Amesos2_FunctionMap.hpp"
00063 #include "Amesos2_Cholmod_TypeMap.hpp"
00064 
00065 
00066 namespace Amesos2 {
00067 
00068   namespace CHOL {
00069 #   include "cholmod_core.h"
00070 #   include "cholmod.h"
00071   }
00072 
00073   
00074   template <>
00075   struct FunctionMap<Cholmod,double>
00076   {
00077     
00078     static void cholmod_init_sparse(size_t nrow, size_t ncol, size_t nzmax,
00079             int sorted, void *p, void *x, void *i,
00080             CHOL::cholmod_sparse *sparse)
00081     {
00082       sparse->nrow = nrow;
00083       sparse->ncol = ncol;
00084       sparse->nzmax = nzmax;
00085       sparse->stype = 1;
00086       sparse->itype = CHOLMOD_INT;
00087       sparse->sorted = 0;
00088       sparse->packed = 1;
00089       sparse->xtype = CHOLMOD_REAL;
00090       sparse->dtype = CHOLMOD_DOUBLE;
00091       sparse->x = x;
00092       sparse->p = p;
00093       sparse->i = i;
00094     }
00095 
00096     static void cholmod_init_dense(int nrow, int ncol, int d, void *x,
00097            CHOL::cholmod_dense *dense)
00098     {
00099       dense->nrow = nrow;
00100       dense->ncol = ncol;
00101       dense->d = d;
00102       dense->xtype = CHOLMOD_REAL;
00103       dense->dtype = CHOLMOD_DOUBLE;
00104       dense->x = x;
00105     }
00106   };
00107 
00108   template <>
00109   struct FunctionMap<Cholmod,float>
00110   {
00111     static void cholmod_init_sparse(size_t nrow, size_t ncol, size_t nzmax,
00112             int sorted, void *p, void *x, void*i,
00113             CHOL::cholmod_sparse* sparse)
00114     {
00115       sparse->nrow = nrow;
00116       sparse->ncol = ncol;
00117       sparse->nzmax = nzmax;
00118       sparse->stype = 1;
00119       sparse->itype = CHOLMOD_INT;
00120       sparse->sorted = 0;
00121       sparse->packed = 1;
00122       sparse->xtype = CHOLMOD_REAL;
00123       sparse->dtype = CHOLMOD_SINGLE;
00124       sparse->x = x;
00125       sparse->p = p;
00126       sparse->i = i;
00127     }
00128 
00129 
00130     static void cholmod_init_dense(int nrow, int ncol, int d, void *x,
00131            CHOL::cholmod_dense *dense)
00132     {
00133       dense->nrow = nrow;
00134       dense->ncol = ncol;
00135       dense->d = d;
00136       dense->xtype = CHOLMOD_REAL;
00137       dense->dtype = CHOLMOD_SINGLE;
00138       dense->x = x;
00139     }
00140   };
00141 
00142 #ifdef HAVE_TEUCHOS_COMPLEX
00143   template <>
00144   struct FunctionMap<Cholmod,CHOL::complex>
00145   {
00146 
00147     static void cholmod_init_sparse(size_t nrow, size_t ncol, size_t nzmax,
00148             int sorted, void *p, void *x, void *i,
00149             CHOL::cholmod_sparse* sparse)
00150     {
00151       sparse->nrow = nrow;
00152       sparse->ncol = ncol;
00153       sparse->nzmax = nzmax;
00154       sparse->stype = 1;
00155       sparse->itype = CHOLMOD_INT;
00156       sparse->sorted = 0;
00157       sparse->packed = 1;
00158       sparse->xtype = CHOLMOD_COMPLEX;
00159       sparse->x = x;
00160       sparse->p = p;
00161       sparse->i = i;
00162 
00163     }
00164   
00165     static void cholmod_init_dense(int nrow, int ncol, int d, void *x,
00166            CHOL::cholmod_dense *dense)
00167     {
00168       dense->nrow = nrow;
00169       dense->ncol = ncol;
00170       dense->d = d;
00171       dense->xtype = CHOLMOD_COMPLEX;
00172       dense->x = x;
00173     }
00174   };
00175 #endif
00176 
00177 } // end namespace Amesos2
00178 
00179 #endif  // AMESOS2_CHOLMOD_FUNCTIONMAP_HPP