hecmay
hecmay
> We shouldn't unroll the loop. We should just pipeline it. Do we specify that in the HCL code? In HCL code, the outer loop is pipelined, and inner loop...
The log from Vitis HLS 2020 is a bit misleading and it points to a random line number and complains that "the loop" in that line cannot be unrolled... After...
I am using this one: https://github.com/cornell-zhang/heterocl/blob/master/samples/smith_waterman/smith_vhls.cl @seanlatias
This is kind of an unrelated issue. Debjit said he installed TVM using the `.circleci/install_tvm.sh`, but in the site-packages folder, he can only find an empty `tvm.egg` folder. That's wired....
I was just thinking that upgrading TF to new version introduces some incompatibility with our current flow, and we may not want to do that. I will keep it open.
We can only provide the conda package for linux-64 and linux-32. The building process targeting OSX can easily fail with conda's built-in g++ compiler and packaging tools. Users can still...
@zzzDavid @chhzh123 can you maybe take a quick pass on this PR? Thanks!
> Sorry for the late review. I’ve looked through the code and think maybe you could add more descriptions for this PR. Seems you have added several new features besides...
Yeah. Insider has CSIM and co-SIM modes. We can provide an interface to invoke Insider's simulation tools. ```python p = hcl.platform.insider p.config(mode="csim|cosim") ```
In the HCL user end, the input training data is in-memory (e.g. as numpy arrays), we need to dump it into the file (stored in the disk) first, and then...