08-22-2022 08:17 AM
Hi
I am not sure about the in-place thing, how it works... I have a big array of clusters and I am making some calculations and put them in another array of clusters. How do I use the in-place thing to decrease memory use ?
When I add cluster at input in the in-place structure, the outside request the same cluster
Thanks for any ideeas
Regards
Solved! Go to Solution.
08-22-2022 08:20 AM
Hi nitad,
@nitad54448 wrote:
I have a big array of clusters and I am making some calculations and put them in another array of clusters.
So you have two inputs and two outputs…
Have you tried exactly this?
08-22-2022 08:22 AM
You gave me an ideea, but let me check if this is correct...
One of the inputs will be a constant and one of the outputs will not be used.. is that it ?
thanks
08-22-2022 08:39 AM
Hi nitad,
@nitad54448 wrote:
One of the inputs will be a constant and one of the outputs will not be used.. is that it ?
When the output is not used then you don't need the IPE structure for this array/cluster…
And the other input will be a constant!? Why do you need the IPE at all when you want to replace some entries in a constant array of clusters?
08-22-2022 08:43 AM
one of the outputs is not used in this vi, but is a part of a bigger cluster (and there some arrays calculations I don't need to copy the data for)
I did what you suggest, let me test, I'll tell if it's better, or not
regards