Skip to content

Instantly share code, notes, and snippets.

View hiracchi's full-sized avatar

Toshiyuki HIRANO hiracchi

  • Tokyo Metropolitan College of Industrial Technology
  • 8-17-1, Minami-Senju, Arakawa-ku, Tokyo 116-8523, Japan
  • 12:39 (UTC +09:00)
View GitHub Profile
@hiracchi
hiracchi / build_pdf.fx10.sh
Created March 13, 2015 04:02
build script for ProteinDF on FX10
#!/bin/bash
export F77=mpifrtpx
export CC=mpifccpx
export CXX=mpiFCCpx
export MPICXX=mpiFCCpx
export CFLAGS=" \
-DHAVE_CONFIG_H \
-O3 -Kfast -Kocl -Kpreex -Karray_private -Kregion_extension -Kparallel \
#!/bin/bash
python -V 2>&1 | cut -d" " -f2 | cut -d"." -f1,2
@hiracchi
hiracchi / 0_reuse_code.js
Last active August 29, 2015 14:12
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@hiracchi
hiracchi / build_pdf_intel_openmpi.sh
Created October 28, 2014 07:15
build ProteinDF on intel/openmpi
#!/bin/bash
export LANG=C
MY_PREFIX=${HOME}/local/intel/ProteinDF.openmpi
echo "MY_PREFIX=${MY_PREFIX}"
export F77=ifort
export FC=ifort
export CC=icc
export CXX=icpc
@hiracchi
hiracchi / build_pdf_gnu.sh
Created October 28, 2014 03:05
build ProteinDF on gnu/openmpi
#!/bin/bash
export LANG=C
MY_PREFIX=${HOME}/local/gnu/ProteinDF
export F77=gfortran
export FC=gfortran
export CC=gcc
export CXX=g++
export CFLAGS=" \