#!/bin/bash # # Integration Infiniband test using villas-node. # # @author Dennis Potter # @copyright 2018, Institute for Automation of Complex Power Systems, EONERC # @license GNU General Public License (version 3) # # VILLASnode # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ################################################################################## # Check if user is superuser. SU is used for namespace if [[ "$EUID" -ne 0 ]]; then echo "Please run as root" exit 99 fi # Check if Infiniband card is present if [[ ! $(lspci | grep Infiniband) ]]; then echo "Did not find any Infiniband cards in system" exit 99 fi SCRIPT=$(realpath $0) SCRIPTPATH=$(dirname ${SCRIPT}) source ${SCRIPTPATH}/../../tools/integration-tests-helper.sh CONFIG_FILE=$(mktemp /tmp/ib-configuration-XXXX.conf) CONFIG_FILE_TARGET=$(mktemp /tmp/ib-configuration-target-XXXX.conf) CONFIG_FILE_SOURCE=$(mktemp /tmp/ib-configuration-source-XXXX.conf) INPUT_FILE=$(mktemp) LOG_DIR=benchmarks_$(date +%Y%m%d_%H-%M-%S) mkdir ${LOG_DIR} NUM_VALUES=(2 4 8 16 32 64) RATE_SAMPLES=(10 100 1000 10000 50000) TIME_TO_RUN=30 # Declare modes MODES=("RC" "UC" "UD") # Initialize counter COUNT=0 # Set target and source config file, which is the same for both runs cat > ${CONFIG_FILE_TARGET} < ${CONFIG_FILE_SOURCE} < ${CONFIG_FILE} <