##// END OF EJS Templates
Removed unmaintained C drivers....
Removed unmaintained C drivers. Removed insanely dangerous bash scripts. Moved some Test from design folder to tests folder. Updated readme. Updated top Makefile.

File last commit:

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