10-14-2010 08:07 AM
How to create a inline sub VI in LV 2010?.. is there any disadvantages by using inline sub VI's?
Solved! Go to Solution.
10-14-2010 08:16 AM
Place a checkmark in the 'Inline subVI into calling VIs' checkbox on the Execution page of the VI Properties dialog box.
Some tradeoffs: A subVI you inline cannot contain recursion, and all calling VIs of the subVI must be static. Also, when you inline a subVI, LabVIEW ignores any priority, reentrancy, or preferred execution settings and they cannot contain automatic error handling, call dialog box functions, or support debugging.
10-14-2010 08:17 AM
Good reading if you look at the Help:
When you call a subVI, there is a certain amount of overhead associated with the call. This overhead is fairly small (on the order of tens of microseconds), especially in comparison to I/O overhead and display overhead, which can range from milliseconds to tens of milliseconds. However, this overhead can add up in some cases. For example, if you call a subVI 10,000 times in a loop, this overhead could significantly affect execution speed. In this case, you might want to consider embedding the loop in the subVI.
Another way to minimize subVI overhead is to turn subVIs into subroutines by selecting Execution from the Category pull-down menu in the VI Properties dialog box and then selecting subroutine from the Priority pull-down menu. However, there are some trade-offs. Subroutines cannot display front panel data, call timing or dialog box functions, or multitask with other VIs. Subroutines are generally most appropriate for VIs that do not require user interaction and are short, frequently executed tasks.
A third way to minimize subVI overhead is to inline subVIs into their calling VIs. When you inline a subVI, LabVIEW inserts the compiled code of the subVI into the compiled code of the calling VI. If you then make changes to the subVI, LabVIEW recompiles all calling VIs of that subVI to include those changes. Essentially, inlining a subVI removes the need to call the subVI at run time. Instead, LabVIEW executes the subVI code inside the compiled code of the calling VI.
Inlining subVIs is most useful for small subVIs, subVIs within a loop, subVIs with unwired outputs, or subVIs you call only once. To inline a subVI, place a checkmark in the Inline subVI into calling VIs checkbox on the Execution page of the VI Properties dialog box.
As with turning subVIs into subroutines, inlining subVIs also has some tradeoffs. A subVI you inline cannot contain recursion, and all calling VIs of the subVI must be static. Also, when you inline a subVI, LabVIEW ignores any priority, reentrancy, or preferred execution settings.
![]() |
Note Subroutines and subVIs you inline cannot contain automatic error handling, call dialog box functions, or support debugging. |
10-14-2010 08:23 AM
Hi Muralidharan,
This link should help: Inline SubVI
Read through the 'Sub VI Overhead' section, it explains that to set a VI to be inline you have to tick the check box for it in the VI properties.
Disadvantages:
A subVI you inline cannot contain recursion, and all calling VIs of the subVI must be static. Also, when you inline a subVI, LabVIEW ignores any priority, reentrancy, or preferred execution settings.
Subroutines and subVIs you inline cannot contain automatic error handling , call dialog box functions, or support debugging.
This should be everything you need!
11-08-2022 08:12 AM
Hi everybody,
I'm re-opening this topic because I have a doubt about inline subVIs.
When a SubVI is set inline, how are handled its SubVIs?
For example, I have SubVI1 which calls SubVI2. If SubVI1 is set inline, SubVI2 will be inline too?
Thanks in advance
11-08-2022 08:34 AM
@SlippinJimmy_ wrote:
Hi everybody,
I'm re-opening this topic because I have a doubt about inline subVIs.
When a SubVI is set inline, how are handled its SubVIs?
For example, I have SubVI1 which calls SubVI2. If SubVI1 is set inline, SubVI2 will be inline too?
Thanks in advance
Whether SubVI2 inlines or not is unrelated to whether SubVI1 inlines. SubVI2 will inline if its VI properties are set to inline.
Also, some have said that an inlined VI cannot call a a dialog box; but that is not true, you can call dialog boxes from inlined VIs.
However you cannot have property nodes, nor invoke nodes in an inlined VI.
11-08-2022 09:20 AM
@SlippinJimmy_ wrote:
For example, I have SubVI1 which calls SubVI2. If SubVI1 is set inline, SubVI2 will be inline too?
The code of the subVI will be compiled into the caller code (keeping synchronization boundaries intact). SubVI2 will remain as is, same as if placed in the caller directly.
Inlining massive amounts of code can be detrimental, because it increases the code complexity of the caller and can reduce compiler optimizations. Find the right balance!