Da1sypetals

Results 18 comments of Da1sypetals

请问你使用什么GPU大概训练了多久到240epoch?

a temporary solution can be deleting the menu element on top of it in F12 temporarily and the red X become visible.

I switched to cuda 12.4 and now runtime error occured when converting triplet sparse matrix to COO format. code: ```cpp int N = 3; DeviceTripletMatrix A; DeviceDenseVector b(N); DeviceDenseVector x(N);...

I cloned the repo you provided but got the same runtime error :sob: on WSL, using GNU 11.4.0 and cuda 12.4.99, cmake 3.29.3 cmake configure output: ``` -- The CXX...

Trying the next option: container

Finally problem was resolved with docker. A starter project with Muda, SFML and Eigen, working with sparse matrix storage and solving runs on the container without runtime errors. Currently the...

> About: "In theory, the functions implemented in type_traits are host functions, which are not supported to be called in device function. " I think, the type_traits is just compile...

> There is no specification for IDE Intellisence exactly. So the result of different IDE is undefined, especially coming across cuda code. That could be some internal problem of Clion...

Oops i did not notice the numerical check code! Thanks for mentioning that, and for the optimization suggestions, I will check them : )

why you are printing results during timing? io can take up more time than you think. besides you should use [criterion.rs](https://github.com/bheisler/criterion.rs) rather than timing things yourself.