SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S


1
2
3
(2)
4
5
6
7
8
9
(2)
10
(5)
11
12
(1)
13
14
15
(3)
16
17
(3)
18
(9)
19
20
(2)
21
22
23
(7)
24
(4)
25
(1)
26
27
28
(1)
29
(1)
30
31
(12)


Showing 12 results of 12

From: John H. <jd...@gm...> - 2007年05月31日 18:37:37
On 5/31/07, Christopher Barker <Chr...@no...> wrote:
> John Hunter wrote:
> > If we have a pure python wxagg implementation that supports blitting,
> > eg your Just Work with 2.8 changes, let's not bother building the 2.6
> > extension code at all,
>
> I think this is the way to go. Even with 2.6, it's a pain to get MPL to
> find the right libs, etc, if there is more than one version of wx on the
> system (like OS-X). I actually wrote some code to version check and find
> the right one, but I don't see the point with the changes Ken has made
> for 2.8
>
OK, I just turned of BUILD_WXAGG by default and committed this in setup.py:
# build wxPython extension code to efficiently blit agg into wx. Only
# needed for wxpython <2.8 if you plan on doing animations
BUILD_WXAGG = 0
I made no changes to backend_wxagg.py because it looks like the
use_accelator code will do the right thing if _wxagg.so is not
present. I am not a wx user, so I leave it to the rest of you to
confirm and or vet these changes.
JDH
From: Christopher B. <Chr...@no...> - 2007年05月31日 18:26:10
John Hunter wrote:
> If we have a pure python wxagg implementation that supports blitting,
> eg your Just Work with 2.8 changes, let's not bother building the 2.6
> extension code at all,
I think this is the way to go. Even with 2.6, it's a pain to get MPL to 
find the right libs, etc, if there is more than one version of wx on the 
system (like OS-X). I actually wrote some code to version check and find 
the right one, but I don't see the point with the changes Ken has made 
for 2.8
Pure Python is so much easier!
-Chris
-- 
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
From: John H. <jd...@gm...> - 2007年05月31日 18:06:49
On 5/31/07, Ken McIvor <mc...@ii...> wrote:
> At this point it should be possible to include a _wxagg.so built for
> wxPython 2.6 and have everything Just Work with 2.8. If mixing
> versions causes linking errors it won't be hard to fix in
> backend_wxagg.py.
If we have a pure python wxagg implementation that supports blitting,
eg your Just Work with 2.8 changes, let's not bother building the 2.6
extension code at all, and if someone needs it they can
 1) use wx 2.8
 2) use an older mpl
 3) build the _wxagg extension themselves
 4) beg one of us to do it
Does this work?
JDH
From: Ken M. <mc...@ii...> - 2007年05月31日 18:02:58
On May 31, 2007, at 12:51 PM, Charlie Moad wrote:
>
> It would be nice to use the pure-python wx so we don't have to 
> provide separate 2.6 and 2.8 builds.
At this point it should be possible to include a _wxagg.so built for 
wxPython 2.6 and have everything Just Work with 2.8. If mixing 
versions causes linking errors it won't be hard to fix in 
backend_wxagg.py.
Ken
From: Ken M. <mc...@ii...> - 2007年05月31日 17:59:46
On May 31, 2007, at 12:42 PM, Christopher Barker wrote:
>
> I think all the real work is done, but I"m not totally sure what's
> checked in now. There may be some changes needed to the build 
> scripts so
> that it doesn't try to build the accelerator by default.
I'm not sure either. My modifications of setup.py, which disable the 
accelerator for wxPython >= 2.8, should already be in the trunk. I 
also modified backend_wxagg.py to ignore the accelerator when running 
with 2.8. I haven't heard any negative feedback about these changes, 
but I'm not sure anyone has rigorously tested them.
> I propose that we just stop building the accelerator, and if people 
> want
> better performance they need to switch to 2.8 (actually, I think the
> pre-2.8 code could be improved with pure python too, but I"m not going
> to bother, as I use 2.8 anyway)
I'm fine with that, given that the difficulties of getting the 
accelerator built under Debian and Ubuntu make it pretty useless to 
my current target audience. It should be as simple making 
BUILD_WXAGG default to False.
Ken
From: Tom H. (NIH/N. [E] <to...@ku...> - 2007年05月31日 17:52:47
Hi. I've been trying to port an application to older distros such as RH3 without much luck.
I'm using numpy and pylab. I can usually get numpy installed but pylab has lots of dependencies on gtk2 and other things. What's the minimal backend to use to eliminate, as much as possible, the dependencies on distro stuff? Relatedly, is it possible to make a static build of pylab that can be included with my app? And finally, could somebody explain what buffer objects are and how they can be used to increase performance?
Thanks
John Hunter wrote:
> I am in favor of getting *all* the GUI dependent extension code out of
> MPL -- it is a support nightmare. Each of us should take the time to
> figure out how to get the best performance where possible using python
> buffer objects in the python layer for each of the main backends
> rather than rely on extension code. But I don't want to hold up the
> release cycle with known bugs in the wild unless someone says, "wait I
> just need a day or two".
-- 
Tom Holroyd, Ph.D.
"The fundamentally misconceived nature versus nurture debate should be
abandoned: child development is inextricably both." -- Louann Brizendine
From: Charlie M. <cw...@gm...> - 2007年05月31日 17:51:45
I'm here. It would be nice to use the pure-python wx so we don't have
to provide separate 2.6 and 2.8 builds.
- Charlie
On 5/31/07, Christopher Barker <Chr...@no...> wrote:
> John Hunter wrote:
> > So if the wx stuff is ready to
> > go, by all means let's check it in and include it, but if not I don't
> > see that we need to hold for it.
>
> I think all the real work is done, but I"m not totally sure what's
> checked in now. There may be some changes needed to the build scripts so
> that it doesn't try to build the accelerator by default.
>
> > I am in favor of getting *all* the GUI dependent extension code out of
> > MPL -- it is a support nightmare.
>
> Actually, that's my proposal (and I think what Ken has done). The latest
> pure-python back-end uses wxPython2.8 methods to transfer the buffer. I
> propose that we just stop building the accelerator, and if people want
> better performance they need to switch to 2.8 (actually, I think the
> pre-2.8 code could be improved with pure python too, but I"m not going
> to bother, as I use 2.8 anyway)
>
> > But I don't want to hold up the
> > release cycle with known bugs in the wild unless someone says, "wait I
> > just need a day or two".
>
> I'll try to see if I can find a few hours to test and fix this stuff,
> but I've got some tight deadlines right now. If you don't hear from me
> or Ken, then I guess you might as well release away! (though just
> turning off the accelerator build may be all we need to do)
>
> -Chris
>
>
> --
> Christopher Barker, Ph.D.
> Oceanographer
>
> Emergency Response Division
> NOAA/NOS/OR&R (206) 526-6959 voice
> 7600 Sand Point Way NE (206) 526-6329 fax
> Seattle, WA 98115 (206) 526-6317 main reception
>
> Chr...@no...
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
From: Christopher B. <Chr...@no...> - 2007年05月31日 17:40:24
John Hunter wrote:
> So if the wx stuff is ready to
> go, by all means let's check it in and include it, but if not I don't
> see that we need to hold for it.
I think all the real work is done, but I"m not totally sure what's 
checked in now. There may be some changes needed to the build scripts so 
that it doesn't try to build the accelerator by default.
> I am in favor of getting *all* the GUI dependent extension code out of
> MPL -- it is a support nightmare.
Actually, that's my proposal (and I think what Ken has done). The latest 
pure-python back-end uses wxPython2.8 methods to transfer the buffer. I 
propose that we just stop building the accelerator, and if people want 
better performance they need to switch to 2.8 (actually, I think the 
pre-2.8 code could be improved with pure python too, but I"m not going 
to bother, as I use 2.8 anyway)
> But I don't want to hold up the
> release cycle with known bugs in the wild unless someone says, "wait I
> just need a day or two".
I'll try to see if I can find a few hours to test and fix this stuff, 
but I've got some tight deadlines right now. If you don't hear from me 
or Ken, then I guess you might as well release away! (though just 
turning off the accelerator build may be all we need to do)
-Chris
-- 
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
From: John H. <jd...@gm...> - 2007年05月31日 17:17:45
On 5/31/07, Christopher Barker <Chr...@no...> wrote:
> John Hunter wrote:
> > Many moons ago, we talked about doing a bugfix release 0.90.1. Since
> > there are known bugs in the production release (eg Jeff Peery's recent
> > plot_date bug) I would like to put out a new release. Any objections?
>
> I'd love to see a new release resolve the wxPython issues. Has this been
> done yet? See post a little while back for my suggestions.
>
> Ken, are you there? Is it ready to go? Your thoughts?
>
> When are thinking of getting it out -- I'm not sure when I'll have time
> to work on this (not in the next two days), but I'd really like to see
> this issue put to bed.
I've always been a big fan of release early, release often. I'd
rather get a point release out with all the improvements and bugfixes
since the last one than hold out for some additional piece. When that
piece is ready, we can release again. Yes, there is some labor
overhead -- Charlie are you out there :-) -- but I think more releases
rather than fewer are a good thing. So if the wx stuff is ready to
go, by all means let's check it in and include it, but if not I don't
see that we need to hold for it.
I am in favor of getting *all* the GUI dependent extension code out of
MPL -- it is a support nightmare. Each of us should take the time to
figure out how to get the best performance where possible using python
buffer objects in the python layer for each of the main backends
rather than rely on extension code. But I don't want to hold up the
release cycle with known bugs in the wild unless someone says, "wait I
just need a day or two".
JDH
From: Christopher B. <Chr...@no...> - 2007年05月31日 17:06:53
John Hunter wrote:
> Many moons ago, we talked about doing a bugfix release 0.90.1. Since
> there are known bugs in the production release (eg Jeff Peery's recent
> plot_date bug) I would like to put out a new release. Any objections?
I'd love to see a new release resolve the wxPython issues. Has this been 
done yet? See post a little while back for my suggestions.
Ken, are you there? Is it ready to go? Your thoughts?
When are thinking of getting it out -- I'm not sure when I'll have time 
to work on this (not in the next two days), but I'd really like to see 
this issue put to bed.
-Chris
-- 
Christopher Barker, Ph.D.
Oceanographer
Emergency Response Division
NOAA/NOS/OR&R (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception
Chr...@no...
From: Darren D. <dd...@co...> - 2007年05月31日 15:43:51
On Thursday 31 May 2007 10:27:30 am John Hunter wrote:
> Many moons ago, we talked about doing a bugfix release 0.90.1. Since
> there are known bugs in the production release (eg Jeff Peery's recent
> plot_date bug) I would like to put out a new release. Any objections?
>
> backend driver looks good.
>
> I've run some tests with memleak_hawaii with the agg backend and there
> appears to be a small leak, but I am not sure if there is a leak or if
> it is just converging slowly. At first I thought it was in pcolor,
> but when I tried increasing the size of the mesh the leak disappeared
> rather than grow, so that is why I am not sure if it is real. Plus I
> am running on solaris which is funky. What are you seeing? In my
> most recent test memory stabilized at 100 iterations and did not grow
> from 100->200.
Memory seems stable after 25 iterations on my machine (64bit Opterons, gentoo 
linux)
From: John H. <jd...@gm...> - 2007年05月31日 14:27:41
Many moons ago, we talked about doing a bugfix release 0.90.1. Since
there are known bugs in the production release (eg Jeff Peery's recent
plot_date bug) I would like to put out a new release. Any objections?
backend driver looks good.
I've run some tests with memleak_hawaii with the agg backend and there
appears to be a small leak, but I am not sure if there is a leak or if
it is just converging slowly. At first I thought it was in pcolor,
but when I tried increasing the size of the mesh the leak disappeared
rather than grow, so that is why I am not sure if it is real. Plus I
am running on solaris which is funky. What are you seeing? In my
most recent test memory stabilized at 100 iterations and did not grow
from 100->200.
JDH

Showing 12 results of 12

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /