Skip to content

Instantly share code, notes, and snippets.

View otreblan's full-sized avatar

Alberto Oporto Ames otreblan

View GitHub Profile
#!/usr/bin/env bash
#SBATCH --job-name=bucketsort-omp
#SBATCH --nodes=1
#SBATCH --mem-per-cpu=6G
#SBATCH --cpus-per-task=8
#SBATCH --mail-type=ALL
module load gcc/10.1.0
#!/usr/bin/env bash
#SBATCH --job-name=bucketsort-mpi
#SBATCH --nodes=2
#SBATCH --mem-per-cpu=6G
#SBATCH --mail-type=ALL
module load gcc/10.1.0 mpich/4.0
mpicxx bucketsort-mpi.cpp -o bucket-mpi
@otreblan
otreblan / airports.json
Created December 15, 2020 16:36
Airports
This file has been truncated, but you can view the full file.
[
{
"City": "Postville",
"Name": "Postville Airport",
"Country": "Canada",
"Longitude": "-59.785278",
"Latitude": "54.910278",
"Id": "7252",
"destinations": [
"5492",
@otreblan
otreblan / PKGBUILD
Created September 12, 2020 21:55
Gamemode 1.6
# Maintainer: Ysblokje <ysblokje at gmail dot com>
pkgname=('gamemode')
pkgver=1.6
pkgrel=1
pkgdesc="A daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS"
arch=('x86_64')
url="https://github.com/FeralInteractive/gamemode.git"
license=('BSD 3-Clause License (Revised)')
optdepends=('systemd')
depends=('polkit' 'libinih')
@otreblan
otreblan / sh
Created April 12, 2020 22:55
Updated elfio PKGBUILD 3.5
# Maintainer: jerry73204 <jerry73204@gmail.com>
pkgname=elfio
pkgver=3.5
pkgrel=1
pkgdesc="ELFIO is a small, header-only C++ library that provides a simple interface for reading and generating files in ELF binary format"
arch=('i686' 'x86_64')
url="https://github.com/serge1/ELFIO"
license=('MIT')
depends=('gcc-libs')