ck
ck
ikcp_send 发送数据时,似乎有长度限制。 在 ikcp_send 函数中,有如下的条件判断: if (count >= (int)IKCP_WND_RCV) return -2; 不明白为什么要增加这个条件判断? 我去掉这一行代码后,长度限制没有了,测试下来似乎也是正常的。 就算是要增加这个检查,否是应该修改为: if (count >= (int)kcp->snd_wnd) return -2;
看网上的资料说 int8 量化后可以减少模型体积,同时提高运算速度。 请问这个项目可以提供 int8 量化的模型吗?
I buillt a toolchain for RV32IMC from riscv-gnu-toolchain project ./configure --prefix=/opt/riscv32 --with-arch=rv32imc --with-abi=ilp32 wrote a hello.c #include #include int main(void) { printf("hello world !\n"); return 0; } using riscv32-unknown-elf-gcc toolchain...
i review the code, and find out, there are memory leaks in function gwavi_open and gwavi_close.