source: CIVL/examples/omp/amg2013/AMG2013/test/steve_test.c@ ee72e79

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since ee72e79 was ee72e79, checked in by Stephen Siegel <siegel@…>, 10 years ago

Adding simple driver to call a function in AMG2013.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3735 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 307 bytes
Line 
1//
2// steve_test.c
3//
4//
5// Created by siegel on 10/13/16.
6//
7//
8
9#include "parcsr_ls.h"
10
11int main() {
12 hypre_ParCSRMatrix A;
13 double scnorm;
14 // int hypre_ParCSRMatrixScaledNorm ( hypre_ParCSRMatrix *A , double *scnorm );
15 int n = hypre_ParCSRMatrixScaledNorm(&A, &scnorm);
16 return n;
17}
Note: See TracBrowser for help on using the repository browser.