Skip to content

Instantly share code, notes, and snippets.

View ViralBShah's full-sized avatar

Viral B. Shah ViralBShah

View GitHub Profile
@ViralBShah
ViralBShah / LSF.jl
Created November 7, 2016 16:10 — forked from kourzanov/LSF.jl
LSF module for Julia
module LSF
immutable LSFManager <: ClusterManager
machines::Dict
function LSFManager(; machines=[])
mhist = Dict()
for m in machines
cnt = get(mhist, m, 0)
mhist[m] = cnt + 1