first commit

This commit is contained in:
2026-01-18 20:37:50 +08:00
commit fff9f18287
123 changed files with 1385491 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//@HEADER
// ***************************************************
//
// HPCG: High Performance Conjugate Gradient Benchmark
//
// Contact:
// Michael A. Heroux ( maherou@sandia.gov)
// Jack Dongarra (dongarra@eecs.utk.edu)
// Piotr Luszczek (luszczek@eecs.utk.edu)
//
// ***************************************************
//@HEADER
#ifndef COMPUTEPROLONGATION_HPP
#define COMPUTEPROLONGATION_HPP
#include "SparseMatrix.hpp"
#include "Vector.hpp"
int ComputeProlongation(const SparseMatrix& Af, Vector& xf);
#endif // COMPUTEPROLONGATION_HPP