Joab Souza

joabs

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Can I get the overall cook state easily? June 17, 2020, 11:36 a.m.

Unless you're seeing wrong information in the toolbar or in the TOP nodes, it is safe to assume the events are correct, as both relies on them. You might be running into data race issues, try using a lock around your code.

Can I get the overall cook state easily? June 16, 2020, 1:23 p.m.

Which version of Houdini are you using?

hython TOPs progress reporting . logs etc May 5, 2020, 2:53 p.m.

Hi again,

There is one other thing that might solve your problem, TOPs is actually using pdgd, and we have node called “Remote Graph” that allows you to connect to a remote instance, all you need is to make sure you have a pdgd server running on that instance.

If before you cook your PDG graph, you run this code:
import pdgd

server_manager = pdgd.DataLayerServerManager.Instance()

# The first parameter is the server type, the second
# is the port the server will listen, zero means the
# system will choose an available port
server = server_manager.createServer('DataLayerWSServer', PORT_NUMBER)
server.serve()

You then can use Houdini to attach to this instance and visualize the graph, in the `tasks` context, drop a remote graph node, set the host address and connect, the remote graph node will create a replica of the remote graph and display progress just like if it was a local graph.