Skip to content

Instantly share code, notes, and snippets.

View matt-deboer's full-sized avatar

Matt DeBoer matt-deboer

View GitHub Profile
@matt-deboer
matt-deboer / tensorflow-gpu-highsierra
Last active December 27, 2017 16:55 — forked from to-bee/tensorflow-gpu-sierra
Build tensorflow with gpu support on OSX Sierra
disable sip in recovery mode
start recovery mode with Cmd + R on startup
start terminal
csrutil disable
download and install cuda 9.1
download cuDNN v7.0 for cuda 9 (register first)
install xcode 8.3
current xcode version is not supported

Keybase proof

I hereby claim:

  • I am matt-deboer on github.
  • I am mdeboer (https://keybase.io/mdeboer) on keybase.
  • I have a public key whose fingerprint is 9DE5 2D89 1A7C 461A A325 1FE1 1C0F CD00 8437 25AC

To claim this, I am signing this object:

@matt-deboer
matt-deboer / Bakefile
Last active September 2, 2016 22:33
Bakefile to create a docker 1.12 swarm on OSX with docker-machine-driver-xhyve support
#!/bin/bash
set -u
#. creates a new swarm. params name, [driver], [workers], [managers]
create-swarm() {
bake_params name
local driver=${driver:=virtualbox}
local workers=${workers:=2}
local managers=${managers:=1}