pogs
pogs copied to clipboard
Proximal Operator Graph Solver
Roger Koenker has mentioned POGS as a good choice for solving large scale quantile regression problems. In one paper he mentions that he has ran some experiments with the GPU...
matlab implementation of pogs calls norms(matrix, int, int), line 355 and 357. To my believe this function is not provided.
Hi, I tried to compile PGOS on MATLAB with no success. Any help? Win 10 MATLAB 2017b MinGW64 Compiler Error message: >> pogs_setup 'make' is not recognized as an internal...
I tried to run pogs_setup on Matlab, but it gives a series of errors. 'make' is not recognized as an internal or external command, operable program or batch file. 'make'...
This is a really great method! However, I have embedded pogs in a loop that iterates many many times and there is a memory leak resulting in an inevitable crash....
Would be good to have a license file in the repo to make the terms of the license clear and to make it easier for people new to the project...
The three lines with memcpy omit "sizeof(T)".... (1) The final argument, "n", wants to be "n * sizeof(T)": https://github.com/foges/pogs/blob/81e3d89f0db399de56f5ba9d8302010632847bfe/src/interface_c/pogs_c.cpp#L48 (2) The final argument, "m", wants to be "m * sizeof(T)":...
The "data" member is not initialised (src/cpu/include/gls/gsl_vector.h, line 27). This causes a lot of "Conditional jump or move depends on uninitialised value(s)" with valgrind. Although I did not notice any...