-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vtk update leak #2030
Vtk update leak #2030
Conversation
@danlipsa is this ready to be reviewed? |
@aashish24 No, we'll have to review/merge the VTK change first. |
@danlipsa can you please create a branch in our vtk repo? that would make things easier to build, @aashish24 I though that was the reason we had our own fork of VTK so we don't need to wait. |
@doutriaux1 Just use the following remote |
thank it is building now |
@danlipsa when I run the follwoing: import vcs
import cdms2
import os
f=cdms2.open(os.path.join(os.path.expanduser("~"),"clt.nc"))
data = f["clt"]
x=vcs.init()
for i in range(120):
print i
x.plot(data[i],"default","isofill",bg=1)
x.png("file_%i.png" % i)
x.clear() i get:
|
my bad it picked up the wrong vtk |
@doutriaux1 @aashish24 I got the green light for my VTK fix so that will be in master shortly. |
@doutriaux1 @aashish24 The VTK change is in VTK master. How do we update uvcdat vtk? Do I bring in VTK master as a separate branch for uvcdat VTK? |
@danlipsa you probably just want to do a PR of your changes into UV-CDAT. I'm not sure we want to bring all of VTK changes into UVCDAT/VTK (which will likely create a whole new set of baselines) |
@danlipsa ok I tested it and it works great! Thanks. Let me know when your changes are merged into UV-CDAT/VTK I will merge this! |
@doutriaux1 At least the master from a few days ago, which I used as base for my change did not. I run the uvcdat tests with the old baselines and passed. So I think it is unlikely that the current master would change the baselines, using the conda set of libraries. |
@doutriaux1 Let's try it. If it does not create problems let's use it, rather than becoming more and more distanced from master VTK, and creating more problems when we do need to update to VTK master. We might get some free bug fixes (and hopefully no new bugs) |
@doutriaux1 OK, I'll try the master VTK and run the tests and see how it works. |
@danlipsa I need to update VTK on conda repos now. |
@doutriaux1 Let me know when that is working so that I can try it on my machine. |
@danlipsa master should be good to go now, please let me know. |
on linux. Mac new VTK is still building |
Sounds good. I'll try it out on linux. Thanks. |
No description provided.