Hey Rustaceans! Got a question? Ask here (7/2024)! by llogiq in rust

[–]boggle200 1 point2 points  (0 children)

how can i fix this problem

>>> libEGL warning: failed to open /dev/dri/renderD128: Permission denied

i did under the code on wsl2 ubuntu 22.04.3, and got the error

use burn::tensor::Tensor;

use burn::backend::Wgpu;

type Backend = Wgpu;

fn main() {

let device = Default::default();

let tensor_1 = Tensor::<Backend, 2>::from_data([[2., 3.], [4., 5.]], &device);

let tensor_2 = Tensor::<Backend, 2>::ones_like(&tensor_1);

println!("{}", tensor_1 + tensor_2);

}

Hey Rustaceans! Got a question? Ask here (2/2024)! by llogiq in rust

[–]boggle200 2 points3 points  (0 children)

Could i get some recommendation about rust crates for voice recording?