├── .gitattributes ├── Benchmarks └── GeTe │ ├── GeTe-1024.png │ ├── GeTe-512.png │ ├── GeTe-64.png │ ├── InputFiles │ ├── INCAR │ ├── KPOINTS │ ├── POSCAR_GeTe-1024.vasp │ ├── POSCAR_GeTe-128.vasp │ ├── POSCAR_GeTe-192.vasp │ ├── POSCAR_GeTe-256.vasp │ ├── POSCAR_GeTe-320.vasp │ ├── POSCAR_GeTe-384.vasp │ ├── POSCAR_GeTe-448.vasp │ ├── POSCAR_GeTe-512.vasp │ ├── POSCAR_GeTe-64.vasp │ ├── POSCAR_GeTe-640.vasp │ ├── POSCAR_GeTe-768.vasp │ └── POSCAR_GeTe-896.vasp │ ├── Results_1GPU │ ├── 1GPU_GeTe-128.csv │ ├── 1GPU_GeTe-192.csv │ ├── 1GPU_GeTe-256.csv │ ├── 1GPU_GeTe-320.csv │ └── 1GPU_GeTe-64.csv │ ├── Results_4GPU │ ├── 4GPU_GeTe-128.csv │ ├── 4GPU_GeTe-192.csv │ ├── 4GPU_GeTe-256.csv │ ├── 4GPU_GeTe-320.csv │ ├── 4GPU_GeTe-384.csv │ ├── 4GPU_GeTe-448.csv │ ├── 4GPU_GeTe-512.csv │ └── 4GPU_GeTe-64.csv │ └── Results_CPU │ ├── CPU-Gamma_GeTe-128.csv │ ├── CPU-Gamma_GeTe-192.csv │ ├── CPU-Gamma_GeTe-256.csv │ ├── CPU-Gamma_GeTe-320.csv │ ├── CPU-Gamma_GeTe-384.csv │ ├── CPU-Gamma_GeTe-448.csv │ ├── CPU-Gamma_GeTe-512.csv │ ├── CPU-Gamma_GeTe-64.csv │ └── CPU-Gamma_GeTe-640.csv ├── Compilation ├── README.md └── makefile.include.balena ├── README.md └── Scripts ├── CPUTest.balena.slm ├── CPUTest.py ├── GPUTest.balena.slm ├── GPUTest.py ├── GetTimings.py ├── PadCSV.py ├── README.md └── Shared.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/.gitattributes -------------------------------------------------------------------------------- /Benchmarks/GeTe/GeTe-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/GeTe-1024.png -------------------------------------------------------------------------------- /Benchmarks/GeTe/GeTe-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/GeTe-512.png -------------------------------------------------------------------------------- /Benchmarks/GeTe/GeTe-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/GeTe-64.png -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/INCAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/INCAR -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/KPOINTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/KPOINTS -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-1024.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-1024.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-128.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-128.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-192.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-192.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-256.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-256.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-320.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-320.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-384.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-384.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-448.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-448.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-512.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-512.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-64.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-64.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-640.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-640.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-768.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-768.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/InputFiles/POSCAR_GeTe-896.vasp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/InputFiles/POSCAR_GeTe-896.vasp -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-128.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-128.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-192.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-192.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-256.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-256.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-320.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-320.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_1GPU/1GPU_GeTe-64.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-128.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-128.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-192.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-192.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-256.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-256.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-320.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-320.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-384.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-384.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-448.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-448.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-512.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-512.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_4GPU/4GPU_GeTe-64.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-128.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-128.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-192.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-192.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-256.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-256.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-320.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-320.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-384.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-384.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-448.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-448.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-512.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-512.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-64.csv -------------------------------------------------------------------------------- /Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-640.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Benchmarks/GeTe/Results_CPU/CPU-Gamma_GeTe-640.csv -------------------------------------------------------------------------------- /Compilation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Compilation/README.md -------------------------------------------------------------------------------- /Compilation/makefile.include.balena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Compilation/makefile.include.balena -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/CPUTest.balena.slm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/CPUTest.balena.slm -------------------------------------------------------------------------------- /Scripts/CPUTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/CPUTest.py -------------------------------------------------------------------------------- /Scripts/GPUTest.balena.slm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/GPUTest.balena.slm -------------------------------------------------------------------------------- /Scripts/GPUTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/GPUTest.py -------------------------------------------------------------------------------- /Scripts/GetTimings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/GetTimings.py -------------------------------------------------------------------------------- /Scripts/PadCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/PadCSV.py -------------------------------------------------------------------------------- /Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/README.md -------------------------------------------------------------------------------- /Scripts/Shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JMSkelton/VASP-GPU-Benchmarking/HEAD/Scripts/Shared.py --------------------------------------------------------------------------------