##// END OF EJS Templates
Fixed Makefile. Now correctly forward targets to subfolders
Fixed Makefile. Now correctly forward targets to subfolders

File last commit:

r644:9af55c8d1a6e default
r645:cc8f80f527e5 default
Show More
generate.xsh
9 lines | 196 B | text/plain | TextLexer
#!/usr/bin/xonsh
import numpy as np
import random
W,H=8,100000
test = np.ones((H,W))*[(random.random()*65535)-32768 for col in range(W)]
np.savetxt("input.txt", test,fmt="%d", delimiter=" ")