-
When using a network that splits the tensor at some point in the network into two pieces, I run into a problem. The `torch.split` operator is not supported, so I rewrote it using two slices:
```
b =…
-
I am trying to deploy an unet generative neural network on the ZCU102 development board and the quantization result error is very small.But during deployment, almost a completely incorrect output was …
-
I have troubles with Relu in Pytorch in vitis-ai 2.5:
If I compile my network withReLU it generated multiple subgraphs, it looks like it want to deploy the ReLU layer on the CPU.
my network is bas…
-
Hi.
I saw your interesting projects on the Innova2 - and wanted to ask you:
Have you used the Innova2 FPGA to control the network chip's (ConnectX-5) ingress/egress packets?
I want to hack some…
-
## Books
https://academicinfluence.com/inflection/study-guides/computer-science-influential-books
https://realtoughcandy.com/best-haskell-books/
https://www.briantracy.com/catalog/the-life-plan…
-
Hello, I encountered the P4 IP error ( similar to Issue #22 ) when running `vivado -mode batch -source gen_vivado_ip.tcl -tclargs -board_repo $BOARD_REPO`. I used `export VitisNetP4_Option_VISIBLE=tru…
-
## Prerequisites
Please make sure to check off these prerequisites before submitting a bug report.
- [√] Test that the bug appears on the current version of the dev-branch. Make sure to include the …
-
![Screenshot 2024-05-28 123815](https://github.com/AlexMontgomerie/fpgaconvnet-hls/assets/112262876/c877215f-ee69-4fef-a1c8-9098e3de1f5a)
-
I have the following model:
```
x_in = Input(shape=(1024,1,2))
x = Permute((3,1,2))(x_in)
x = Conv2D(8 , (7,1), padding='same', name='C1')(x)
x = ReLU(name='C1_relu')(x)
x = Conv2D(16, (7,1), …
-
Hi xilinx,
I replaced the sigmoid operator in efficentNet, but the pytorch version compilation tool prompts that the operator is not supported to be compiled in the DPU, which has greatly affected …