Abaqus version | IBM Platform MPI (PMPI) | Intel MPI (IMPI) |
---|---|---|
2018 to 2020 HF2 | 9.1.4.3 (S, E) | 2017.2.174 |
2020 HF3 (FP2024) | 9.1.4.3 | 2017.2.174 (S, E) |
2020 HF4 (FP2030) | 9.1.4.3 (S, E) | 2017.2.174 |
2020 >=HF5 (FP2038) | 9.1.4.3 (S) | 2019 Update 7 (E) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This config intends to be a baseline for further adjustments. | |
// The default values for most of the settings seem to be more fit for good ol OFP days. | |
// Per socket (client) bandwidth settings | |
// These values are in BYTES | |
// value * 8 / 1000 to get KiB | |
class sockets { | |
// Packet MTU, keep lower than 1500 to not risk packet fragmentation, default 1400 | |
// 1444 used on official BI servers | |
// maxPacketSize = 1430; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
echo $(date):Random read | |
fio --filename=test --sync=1 --rw=randread --bs=4k --numjobs=1 \ | |
--iodepth=4 --group_reporting --name=test --filesize=10G --runtime=300 && rm test | |
echo $(date):Random write | |
fio --filename=test --sync=1 --rw=randwrite --bs=4k --numjobs=1 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
params ["_display"]; | |
private _background = _display ctrlCreate ["RscPicture", -1]; | |
_background ctrlSetPosition [ | |
safezoneXAbs, | |
safezoneY, | |
safezoneWAbs, | |
safezoneH | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Extended_DisplayLoad_EventHandlers { | |
class RscDisplayLoading { | |
Mission_customLoadingScreen = "_this call compile preprocessFileLineNumbers 'initLoadingScreen.sqf'"; | |
}; | |
}; |
Various editor/arma sqf stuff.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CBA_fnc_get3DENRotation = { | |
params ["_object"]; | |
private _dir = vectorDir _object; | |
_dir params ["_xDir", "_yDir", "_zDir"]; | |
private _up = vectorUp _object; | |
_up params ["_xUp", "_yUp", "_zUp"]; | |
private _side = _dir vectorCrossProduct _up; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Redirect output to stderr. | |
exec 1>&2 | |
# enable user input | |
exec < /dev/tty | |
consoleregexp='console.log' | |
# CHECK | |
if test $(git diff --cached | grep $consoleregexp | wc -l) != 0 | |
then |