High usage memory when using and integrating dynamo and pyrevit

Hello everyone,

So basically i’ve made a program using dynamo that can be run through the revit ribbon tab. Im using pyrevit to make that happen. but eventually its taking the Memory RAM too much and greyed out the revit application, even i have already upgraded my laptop to 32 gigs memory.

But not just that, im still getting the greyed screen (Not Responding) when im run through dynamo itself

Im using ROG Strix g153qc,
AMD Ryzen 7 5800H
RTX 3050 Laptop
Still have plenty room for storage (20± GB) on C: Drive


UniversalRailing_script.dyn (357.0 KB)
This the example of one my feature. it takes too long and not responding on my devices. is there any optimized version to my feature?

Thanks in advance!

Can you define ‘too long’? Is it too long as in ‘it takes 20 seconds to process the entire model’, or is it ‘it takes 2 hours to process one view’?

its too long to run the dynamo. when i run it takes 5-10 minutes to show the DataShapes GUI. after i input all the form, then click run, it takes 20-30 minutes even the revit force closed.

all the waiting times the revit and dynamo application is grayed out and says not responding.

the dynamo files that i made itself generally basically placing an family based on lines or point through dynamo… it can be 200+ lines or points, depends on whats the input

Double check to ensure there are not element bindings, as slow to trigger the UI indicates that is at least part of the issue.

I Have already check all my dynamo .dyn file through visual studio code.

Totally i have 12 .dyn file

This is one of the .dyn file i have, as you can see.

All the file HAS NOT Bindings EXCEPT the underlined file. Like your example below.

I have already turn off the preview element on all nodes, i was thinking so because maybe it taking the GPU or RAM to render. So i turned it off.

Hmm wondering whats caused the issue.

Well, clear the bindings on that file.

Yes, but i mean, the file with or without bindings. still getting high usage ram, still getting that grayed out not responding applications.

It likely means your code is either doing to much (process all the content in all the files all at once and keep them in memory to boot), isn’t using efficient architecture (multiple all elements of category, not filtering early and fast), failing to handle errors (nulls are slower to process), is doing more than is needed (boolean intersection tests for 100 solids for each object instead of a unioning thr 100 solids), or using poor code (instead of a modulo function, using an if statements to find out if a number is even or odd).

I cannot diagnose all of them for you. Start by stripping out the UI and see if that speeds it along. Continue to reduce scope (even if it means you get incomplete results) until you identify the slow bit. Once you know the slow bit, look for alternative ways to get what you are after - change Python to C#; reduce scope by pre filtering, etc…

Ouhh okay, so i need to optimize the flow…

hmm unfortunately ive never been use python or C# to code using RevitAPI, im using python is to process numbers, if else, string operation and database…

Step 1 is diagnosing the slow portion; don’t both looking into how to fix all the code as you’ll tackle the wrong area first. Find what is slow and work from there. For learning C# or Python for Dynamo development there are a lot of great existing topics on the forum - best to start there once you know ‘where’ the slowdown is.

Also, be sure you aren’t loading any resources from an external location or working in a cloud mirrored environment (ie if onedrive is mirroring your entire user folder you’re going to be slowed down exponentially)

1 Like

Hey,

Did you post on the PyRevit forum? There might be something about the Py setup which is the problem… You can also post on their Github Issues?

Hope that helps,

Mark

1 Like