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?
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
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…
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)