Bruno Caballero

Results 2 issues of Bruno Caballero

Hi, I was experimenting with this project and tried to use the whisper's "medium" model. It fails allocating memory on one of the `rknn_create_mem` after alllocating around 2GB of memory....

Hi, I created a small Rust example: ``` use gemm_f16::f16; fn main() { println!("Hello, fp16!"); let a = f16::from_f32(3.1f32); let b = f16::from_f32(2.2f32); let c = a * b; if...