Advertisement
gisejo

Untitled

Nov 19th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for TYPE in RMAT UR
  4. do
  5. for D in directed undirected
  6. do
  7. if [ $D = "undirected" ]; then
  8. d_v=1
  9. else
  10. d_v=0
  11. fi
  12. for N in {10..22}
  13. do
  14. bsub -n 16 -W 60 -q normal -o nv_graphs_el/${graph-$TYPE-$D-$N}.log ./readgraph $d_v ${graph-$TYPE-$D-unweighted-$N.bin} nv_graphs_el/${graph-$TYPE-$D-$N.el}
  15. done
  16. done
  17. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement