An open API service indexing awesome lists of open source software.

https://github.com/adithaker/benchmarking_scripts

💽 Scripts for benchmarking MLNX Network Drivers
https://github.com/adithaker/benchmarking_scripts

bash c linux mellanox

Last synced: 2 months ago
JSON representation

💽 Scripts for benchmarking MLNX Network Drivers

Awesome Lists containing this project

README

          

#### Tweaking NUMA Node IRQ on client:
*start_exp.sh*
```

#!/bin/bash

echo "Running Reset CPUS"
./reset_cpus.sh

echo "Running Set CPUS"
./set_cpus.sh $1 2

numactl --cpunodebind=$1 --membind=$1 iperf3 -c 10.10.1.1 -B 10.10.1.2 > ./logs/exp$1.log
```

#### Server:
`iperf3 -s -B 10.10.1.1`