tk26eng
tk26eng
Now we have two configurations for buffers between CPU and FPGA. One is a configuration which use `/dev/mem` for all buffers (threshold/kernel/input/output). Another is a configuration which threshold/kernel use `/dev/mem`...
https://github.com/blue-oil/blueoil/blob/107c4fc71685159e6bfe077b263ac441d126b602/blueoil/converter/templates/include/dlk_test.h#L41-L57 In this above source, absolute error is used in comparing ground truth values and calculated values for elf binaries like `lm_x86.elf`. This comparison with absolute error works well when...
Now runtime only support one inference on FPGA. But sometimes running two models is useful. We might need the feature for that.
Now test is not perfect for configuration of aarch64 CPU with FPGA. The test is only applied for building binaries like `lm_aarch64_fpga.elf`, `libdlk_aarch64_fpga.so` and `libdlk_aarch64_fpga.a`. We need to run those...
A following warning message comes when we run the command of `make build`. ``` WARNING: You are using pip version 20.0.2; however, version 20.1 is available. You should consider upgrading...
`blueoil/converter/templates/debug/keep_me.md` includes information about `-dbg` flag for `generate_project.py`. It should be placed at right place.
This is a new feature to enable FPGA with 64bit ARM processor. Now FPGA available only with 32bit ARM processor and we want to add 64 bit as well.
lm_fpga.elf doesn't work well with LMBiSeNetQuantize. The program gets stucked (freezed) when we run it on FPGA. The error point is: ``` Conv2D_struct.input_height = 1; Conv2D_struct.input_width = 1; Conv2D_struct.kernel_height =...
Now this repository has many not active issues and PRs. They will blind us to find out which issue should be solved first. Those with no progress long time like...
MappedMem class (blueoil/converter/templates/include/memdriver.h) and DMA_Buffer class (blueoil/converter/templates/include/dma_buffer.h) has very similar features to handle the physical memory addresses. So it's better to refactor to use same code for common parts between...