You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2007 |
Jan
(2) |
Feb
(5) |
Mar
(2) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
(6) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
(1) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
(6) |
Oct
(8) |
Nov
(19) |
Dec
(2) |
2010 |
Jan
(4) |
Feb
(4) |
Mar
(17) |
Apr
(12) |
May
(10) |
Jun
(17) |
Jul
(2) |
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
(3) |
Apr
(2) |
May
|
Jun
(9) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(4) |
Feb
(12) |
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(2) |
2014 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
From: Roman G. <rom...@gm...> - 2005-06-22 10:15:33
|
Hi Dominique Sorry for not replying. I actually forgot to register myself for this list = :-/ > Hello, >=20 > I am linking my C code to PySparse and would like to create a CSR > matrix using newCSRMatObject. I don"t see why the prototype for that > function does not appear in the headers unless SPMATRIX_MODULE is > #define"d. =20 > If I #define SPMATRIX_MODULE before #include-ing csr_mat.h, I obtain > tons of warning and error messages. newCSRMatObject() is not supposed to be visible outside of pysparse. =20 > Why not have newCSRMatObject"s prototype in spmatrix_api.h like, e.g., > newLLMatObject? Same for newSSSMatObject. Since there is no way to create CSR and SSS matrices, other than building an LL matrix first and then converting it, I don't really see any benefit in exposing these functions. Am I missing something? =20 > Thanks, > Dominique Regards, -- Roman |
From: Dominique O. <dom...@gm...> - 2005-05-18 15:44:37
|
Hello, I am linking my C code to PySparse and would like to create a CSR matrix using newCSRMatObject. I don't see why the prototype for that function does not appear in the headers unless SPMATRIX_MODULE is #define'd. If I #define SPMATRIX_MODULE before #include-ing csr_mat.h, I obtain tons of warning and error messages. Why not have newCSRMatObject's prototype in spmatrix_api.h like, e.g., newLLMatObject? Same for newSSSMatObject. Thanks, Dominique |