russell_sparse 2.2.0

Solvers for large sparse linear systems (wraps MUMPS and UMFPACK)
Documentation
#!/bin/bash

INTEL_MKL=${1:-""}
LOCAL_SPARSE=${2:-""}

FEATURES=""
if [ "$INTEL_MKL" = "1" ]; then
    FEATURES="${FEATURES},intel_mkl"
fi
if [ "$LOCAL_SPARSE" = "1" ]; then
    FEATURES="${FEATURES},local_sparse"
fi

cargo run --release --features "$FEATURES" --bin solve_matrix_market -- \
    data/matrix_market/bfwb62.mtx

if [ "$LOCAL_SPARSE" = "1" ]; then
    cargo run --release --features "$FEATURES" --bin solve_matrix_market -- \
    data/matrix_market/bfwb62.mtx \
    --genie mumps
fi