Skip to content

Instantly share code, notes, and snippets.

View milthorpe's full-sized avatar

Josh Milthorpe milthorpe

View GitHub Profile
@milthorpe
milthorpe / Makefile for dummy library for functions removed in MPI 4.0
Last active April 16, 2020 03:59
Dummy implementations for removed functions in MPI 4.0
MPICC ?= mpicc
CFLAGS += -g
LDFLAGS += -L/usr/local/lib/openmpi -lmpiP -lm -lbfd -liberty -lunwind -L. -ldummy_mpi1
my_exe: my_exe.c libdummy_mpi1.so
$(MPICC) $(CFLAGS) my_exe.c $(LDFLAGS) -o $@
libdummy_mpi1.so: dummy.c
$(MPICC) -shared -fPIC dummy.c -o libdummy_mpi1.so
@milthorpe
milthorpe / dl-frameworks.rst
Last active September 8, 2016 13:34 — forked from bartvm/dl-frameworks.rst
A comparison of deep learning frameworks

A comparison of Theano with other deep learning frameworks, highlighting a series of low-level design choices in no particular order.

Overview

Symbolic: Theano, CGT; Automatic: Torch, MXNet

Symbolic and automatic differentiation are often confused or used interchangeably, although their implementations are significantly different.