nachiket

Results 34 comments of nachiket

Hmm, I think I understand, the number of bricks I'd need is the max number of delta cycles I want in a clock period or time period.

I wasn’t able to build it. It did with in Ubuntu at some point by I haven’t checked recently.

You should check why the Modelsim tcl files were being generated in a sub folder SimulationDeck for the write_verilog_testbench command. I couldn’t figure out how to make run_modelsim pick them...

I agree. Is there a way to use run_modelsim.py with this script unmodified? Id rather not have to delete the simulationdeck folder path at all but can’t see how else...

Hmm, I don’t immediately see it in the linked example. Also, from what I can tell, the run_modelsim.py script needs to have access to this variable for picking up the...

Ok that example of variable usage makes sense. I was looking for the SIM variable directly. @ganeshgore can chime in how the run_modelsim.py file is supposed to be used. But...

Not sure if your message clipped. I was able to get the following to work: ``` [ARCHITECTURES] arch0=${PATH:TASK_DIR}/config/k6_frac_N10_tileable_40nm.xml ``` Would this TASK_DIR approach work for all files such as benchmarks,...

The execution is stuck at ```futex(0x7ff4e623bb08, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, ffffffff``` It seems similar to http://stackoverflow.com/questions/10306669/opencl-kernel-hangs-forever-unless-i-remove-parameters/42214687#42214687 and the thread at https://lists.tiker.net/pipermail/pyopencl/2012-April/001158.html. But no resolution seems to have been posted.

Found a simpler solution at http://numpy-discussion.10968.n7.nabble.com/Byte-aligned-arrays-td3887.html which fixes alignment, but is still a bit messy ``` def aligned_zeros(shape, boundary=64, dtype=float, order='C'): N = np.prod(shape) d = np.dtype(dtype) tmp = np.zeros(N...