spatial-lang icon indicating copy to clipboard operation
spatial-lang copied to clipboard

Spatial: "Specify Parameterized Accelerators Through Inordinately Abstract Language"

Results 58 spatial-lang issues
Sort by recently updated
recently updated
newest added

Seems like the IIof the second FSM in BasicFSM is not capturing the fact that the next state is dependent on the operations that happen inside of the fsm body....

bug
awaiting test

I am creating the pull request for the develop branch just to check the mergeability. I think these changes will be pulled into a new branch.

It would be nice to have a function similar to numpy.fromfile, e.g. ``` ReadTensor(file_path, datatype, dims) ``` Where the file is in binary format, e.g. 4 byte float, 1 byte...

enhancement

Right now it is only possible from DRAM

enhancement

In SimpleTileLoadStore, I had the following: `Accel{` ` val b1 = SRAM` ` Foreach(N by 1 par 2) { i =>` ` b1(i) = // something` ` }` `}` `...

bug

Right now, all function in a Spatial program are "meta-programming" functions, meaning they get inlined before the construction of the IR. We have noticed that for complex programs, the compilation...

enhancement

The output of SingleFifoLoad is the sum of all elements in the last input tile. The app passes in VCS simulation. However, on the Zynq, I consistently get the sum...

bug

Shouldn't this code throw an exception? It is making it through codegen but the sram has one bank and two writers that happen at the same time. ``` @virtualize def...

``` val i = Reg[Int] if (i == 0) ??? [error] /home/atoll/spatial-lang/apps/src/ParticleFilter.scala:22: Cannot find way to lift type Int to type C. Try adding an explicit cast using .to[C]. [error]...

enhancement