14 lines
513 B
Bash
14 lines
513 B
Bash
#!/bin/bash
|
|
# 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
|
|
|