-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
3,460 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
|
||
//@HEADER | ||
// ************************************************************************ | ||
// | ||
// HPCCG: Simple Conjugate Gradient Benchmark Code | ||
// Copyright (2006) Sandia Corporation | ||
// | ||
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive | ||
// license for use of this work by or on behalf of the U.S. Government. | ||
// | ||
// This library is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as | ||
// published by the Free Software Foundation; either version 2.1 of the | ||
// License, or (at your option) any later version. | ||
// | ||
// This library is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
// Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public | ||
// License along with this library; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
// USA | ||
// Questions? Contact Michael A. Heroux (maherou@sandia.gov) | ||
// | ||
// ************************************************************************ | ||
//@HEADER | ||
|
||
///////////////////////////////////////////////////////////////////////// | ||
|
||
// Routine to compute an approximate solution to Ax = b where: | ||
|
||
// A - known matrix stored as an HPC_Sparse_Matrix struct | ||
|
||
// b - known right hand side vector | ||
|
||
// x - On entry is initial guess, on exit new approximate solution | ||
|
||
// max_iter - Maximum number of iterations to perform, even if | ||
// tolerance is not met. | ||
|
||
// tolerance - Stop and assert convergence if norm of residual is <= | ||
// to tolerance. | ||
|
||
// niters - On output, the number of iterations actually performed. | ||
|
||
///////////////////////////////////////////////////////////////////////// | ||
|
||
#include <iostream> | ||
using std::cout; | ||
using std::cerr; | ||
using std::endl; | ||
#include <cmath> | ||
#include "mytimer.hpp" | ||
#include "HPCCG.hpp" | ||
|
||
#define TICK() t0 = mytimer() // Use TICK and TOCK to time a code section | ||
#define TOCK(t) t += mytimer() - t0 | ||
int HPCCG(HPC_Sparse_Matrix * A, | ||
const double * const b, double * const x, | ||
const int max_iter, const double tolerance, int &niters, double & normr, | ||
double * times) | ||
|
||
{ | ||
double t_begin = mytimer(); // Start timing right away | ||
|
||
double t0 = 0.0, t1 = 0.0, t2 = 0.0, t3 = 0.0, t4 = 0.0; | ||
#ifdef USING_MPI | ||
double t5 = 0.0; | ||
#endif | ||
int nrow = A->local_nrow; | ||
int ncol = A->local_ncol; | ||
|
||
double * r = new double [nrow]; | ||
double * p = new double [ncol]; // In parallel case, A is rectangular | ||
double * Ap = new double [nrow]; | ||
|
||
normr = 0.0; | ||
double rtrans = 0.0; | ||
double oldrtrans = 0.0; | ||
|
||
#ifdef USING_MPI | ||
int rank; // Number of MPI processes, My process ID | ||
MPI_Comm_rank(MPI_COMM_WORLD, &rank); | ||
#else | ||
int rank = 0; // Serial case (not using MPI) | ||
#endif | ||
|
||
int print_freq = max_iter/10; | ||
if (print_freq>50) print_freq=50; | ||
if (print_freq<1) print_freq=1; | ||
|
||
// p is of length ncols, copy x to p for sparse MV operation | ||
TICK(); waxpby(nrow, 1.0, x, 0.0, x, p); TOCK(t2); | ||
#ifdef USING_MPI | ||
TICK(); exchange_externals(A,p); TOCK(t5); | ||
#endif | ||
TICK(); HPC_sparsemv(A, p, Ap); TOCK(t3); | ||
TICK(); waxpby(nrow, 1.0, b, -1.0, Ap, r); TOCK(t2); | ||
TICK(); ddot(nrow, r, r, &rtrans, t4); TOCK(t1); | ||
normr = sqrt(rtrans); | ||
|
||
if (rank==0) cout << "Initial Residual = "<< normr << endl; | ||
|
||
for(int k=1; k<max_iter && normr > tolerance; k++ ) | ||
{ | ||
if (k == 1) | ||
{ | ||
TICK(); waxpby(nrow, 1.0, r, 0.0, r, p); TOCK(t2); | ||
} | ||
else | ||
{ | ||
oldrtrans = rtrans; | ||
TICK(); ddot (nrow, r, r, &rtrans, t4); TOCK(t1);// 2*nrow ops | ||
double beta = rtrans/oldrtrans; | ||
TICK(); waxpby (nrow, 1.0, r, beta, p, p); TOCK(t2);// 2*nrow ops | ||
} | ||
normr = sqrt(rtrans); | ||
if (rank==0 && (k%print_freq == 0 || k+1 == max_iter)) | ||
cout << "Iteration = "<< k << " Residual = "<< normr << endl; | ||
|
||
|
||
#ifdef USING_MPI | ||
TICK(); exchange_externals(A,p); TOCK(t5); | ||
#endif | ||
TICK(); HPC_sparsemv(A, p, Ap); TOCK(t3); // 2*nnz ops | ||
double alpha = 0.0; | ||
TICK(); ddot(nrow, p, Ap, &alpha, t4); TOCK(t1); // 2*nrow ops | ||
alpha = rtrans/alpha; | ||
TICK(); waxpby(nrow, 1.0, x, alpha, p, x);// 2*nrow ops | ||
waxpby(nrow, 1.0, r, -alpha, Ap, r); TOCK(t2);// 2*nrow ops | ||
niters = k; | ||
} | ||
|
||
// Store times | ||
times[1] = t1; // ddot time | ||
times[2] = t2; // waxpby time | ||
times[3] = t3; // sparsemv time | ||
times[4] = t4; // AllReduce time | ||
#ifdef USING_MPI | ||
times[5] = t5; // exchange boundary time | ||
#endif | ||
delete [] p; | ||
delete [] Ap; | ||
delete [] r; | ||
times[0] = mytimer() - t_begin; // Total time. All done... | ||
return(0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
|
||
//@HEADER | ||
// ************************************************************************ | ||
// | ||
// HPCCG: Simple Conjugate Gradient Benchmark Code | ||
// Copyright (2006) Sandia Corporation | ||
// | ||
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive | ||
// license for use of this work by or on behalf of the U.S. Government. | ||
// | ||
// This library is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as | ||
// published by the Free Software Foundation; either version 2.1 of the | ||
// License, or (at your option) any later version. | ||
// | ||
// This library is distributed in the hope that it will be useful, but | ||
// WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
// Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public | ||
// License along with this library; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
// USA | ||
// Questions? Contact Michael A. Heroux (maherou@sandia.gov) | ||
// | ||
// ************************************************************************ | ||
//@HEADER | ||
|
||
#ifndef HPCCG_H | ||
#define HPCCG_H | ||
#include "HPC_sparsemv.hpp" | ||
#include "ddot.hpp" | ||
#include "waxpby.hpp" | ||
#include "HPC_Sparse_Matrix.hpp" | ||
|
||
#ifdef USING_MPI | ||
#include "exchange_externals.hpp" | ||
#include <mpi.h> // If this routine is compiled with -DUSING_MPI | ||
// then include mpi.h | ||
#endif | ||
int HPCCG(HPC_Sparse_Matrix * A, | ||
const double * const b, double * const x, | ||
const int max_iter, const double tolerance, int & niters, double & normr, double * times); | ||
|
||
// this function will compute the Conjugate Gradient... | ||
// A <=> Matrix | ||
// b <=> constant | ||
// xnot <=> initial guess | ||
// max_iter <=> how many times we iterate | ||
// tolerance <=> specifies how "good"of a value we would like | ||
// x <=> used for return value | ||
|
||
// A is known | ||
// x is unknown vector | ||
// b is known vector | ||
// xnot = 0 | ||
// niters is the number of iterations | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
#include "HPC_Sparse_Matrix.hpp" | ||
|
||
#ifdef USING_MPI | ||
#include <mpi.h> | ||
#endif | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
void destroyMatrix(HPC_Sparse_Matrix * &A) | ||
{ | ||
if(A->title) | ||
{ | ||
delete [] A->title; | ||
} | ||
if(A->nnz_in_row) | ||
{ | ||
delete [] A->nnz_in_row; | ||
} | ||
if(A->list_of_vals) | ||
{ | ||
delete [] A->list_of_vals; | ||
} | ||
if(A->ptr_to_vals_in_row !=0) | ||
{ | ||
delete [] A->ptr_to_vals_in_row; | ||
} | ||
if(A->list_of_inds) | ||
{ | ||
delete [] A->list_of_inds; | ||
} | ||
if(A->ptr_to_inds_in_row !=0) | ||
{ | ||
delete [] A->ptr_to_inds_in_row; | ||
} | ||
if(A->ptr_to_diags) | ||
{ | ||
delete [] A->ptr_to_diags; | ||
} | ||
|
||
#ifdef USING_MPI | ||
if(A->external_index) | ||
{ | ||
delete [] A->external_index; | ||
} | ||
if(A->external_local_index) | ||
{ | ||
delete [] A->external_local_index; | ||
} | ||
if(A->elements_to_send) | ||
{ | ||
delete [] A->elements_to_send; | ||
} | ||
if(A->neighbors) | ||
{ | ||
delete [] A->neighbors; | ||
} | ||
if(A->recv_length) | ||
{ | ||
delete [] A->recv_length; | ||
} | ||
if(A->send_length) | ||
{ | ||
delete [] A->send_length; | ||
} | ||
if(A->send_buffer) | ||
{ | ||
delete [] A->send_buffer; | ||
} | ||
#endif | ||
|
||
delete A; | ||
A = 0; | ||
} | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
#ifdef USING_SHAREDMEM_MPI | ||
#ifndef SHAREDMEM_ALTERNATIVE | ||
void destroySharedMemMatrix(HPC_Sparse_Matrix * &A) | ||
{ | ||
if(A==0) | ||
{ | ||
return; //noop | ||
} | ||
|
||
if(A->title) | ||
{ | ||
delete [] A->title; | ||
} | ||
|
||
if(A->nnz_in_row) | ||
{ | ||
MPI_Comm_free_mem(MPI_COMM_NODE,A->nnz_in_row); | ||
} | ||
if(A->list_of_vals) | ||
{ | ||
MPI_Comm_free_mem(MPI_COMM_NODE,A->list_of_vals); | ||
} | ||
if(A->ptr_to_vals_in_row !=0) | ||
{ | ||
MPI_Comm_free_mem(MPI_COMM_NODE,A->ptr_to_vals_in_row); | ||
} | ||
if(A->list_of_inds) | ||
{ | ||
MPI_Comm_free_mem(MPI_COMM_NODE,A->list_of_inds); | ||
} | ||
if(A->ptr_to_inds_in_row !=0) | ||
{ | ||
MPI_Comm_free_mem(MPI_COMM_NODE,A->ptr_to_inds_in_row); | ||
} | ||
|
||
// currently not allocated with shared memory | ||
if(A->ptr_to_diags) | ||
{ | ||
delete [] A->ptr_to_diags; | ||
} | ||
|
||
|
||
#ifdef USING_MPI | ||
if(A->external_index) | ||
{ | ||
delete [] A->external_index; | ||
} | ||
if(A->external_local_index) | ||
{ | ||
delete [] A->external_local_index; | ||
} | ||
if(A->elements_to_send) | ||
{ | ||
delete [] A->elements_to_send; | ||
} | ||
if(A->neighbors) | ||
{ | ||
delete [] A->neighbors; | ||
} | ||
if(A->recv_length) | ||
{ | ||
delete [] A->recv_length; | ||
} | ||
if(A->send_length) | ||
{ | ||
delete [] A->send_length; | ||
} | ||
if(A->send_buffer) | ||
{ | ||
delete [] A->send_buffer; | ||
} | ||
#endif | ||
|
||
MPI_Comm_free_mem(MPI_COMM_NODE,A); A=0; | ||
|
||
} | ||
#endif | ||
#endif | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
Oops, something went wrong.