David Grinberg

Results 11 comments of David Grinberg

Checked the same code on RTX 3050 and it works

Now that #765 is in the master, the question arises of how to use the new API in places where it is required to store all the solutions, as in...

> How big is your star-like graph? 2.5 million edges, 1.8 million nodes

> How long does CG take? On regular graph with 320k nodes and 417k edges it will take more than 100 minutes even with rtol=0.3, while LAMG works in a...

yeah, it looks like this is the most reasonable thing I can do. Thank you!

btw shouldn't LAMG warn the user when such thing happens? It also returns zero-dimensioned x, not sure if it's ok

Generate any star graph with more than 200 nodes (MAX_DIRECT_SOLVE_SIZE) and compute something using LAMG. ```c++ Graph gen_graph(size_t num_nodes) { Graph graph(num_nodes, true); for (size_t i = 1; i <...

I'm not sure but it seems like this happens when there is only one central node (hub), which should be pretty straightforward to check. But also need to take a...

It fixed the problem: ``` auto cfwindowname = static_cast(CFDictionaryGetValue(dict, kCGWindowName)); if (not cfwindowname) { continue; } ``` Could this be the solution?

> So the error is GPU specific and specific to the GTX 1060. Correct? Yes, tested on RTX 2080/3050 and they were working fine. Thought the problem was with me...