##// END OF EJS Templates
Some more cleaning...
Some more cleaning Factorised LFR filters testbench for all test cases.

File last commit:

r647:3005781845db default
r647:3005781845db default
Show More
generate.py
8 lines | 177 B | text/x-python | PythonLexer
import numpy as np
import random
W,H=8,100000
low,high=-1000,1000
test = np.random.randint(low=low,high=high,size=(H,W))
np.savetxt("input.txt", test,fmt="%d", delimiter=" ")