2023-08-17 08:09:43 +08:00
|
|
|
#!/bin/bash
|
2023-05-04 22:42:40 +08:00
|
|
|
# Copyright (c) 1998 Lawrence Livermore National Security, LLC and other
|
|
|
|
|
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
|
# Test library initialization (sequential and parallel)
|
|
|
|
|
#=============================================================================
|
|
|
|
|
|
|
|
|
|
mpirun -np 1 ./ij -test_init > state.out.1
|
|
|
|
|
mpirun -np 4 ./ij -test_init > state.out.100
|
2023-11-17 06:53:14 +08:00
|
|
|
|