Add VL2 reduced topology

This commit is contained in:
Brandon Heller
2010-01-25 15:27:50 -08:00
parent 3031d31efe
commit 8e8081c408
+2 -1
View File
@@ -35,7 +35,8 @@ if USE_RIPCORD:
'tree1024': (lambda: TreeTopo(depth = 3, fanout = 32)),
'fattree4': (lambda: FatTreeTopo(k = 4)),
'fattree6': (lambda: FatTreeTopo(k = 6)),
'vl2': (lambda: VL2Topo(da = 4, di = 4))}
'vl2': (lambda: VL2Topo(da = 4, di = 4)),
'vl2reduced': (lambda: VL2Topo(da = 4, di = 4, edge_down = 1))}
TOPOS.update(TOPOS_RIPCORD)
SWITCH_DEF = 'kernel'