Jump to content

LabVIEW configuration file/Performance: Difference between revisions

From LabVIEW Wiki
Crelf (talk | contribs)
Crelf (talk | contribs)
No edit summary
Line 13: Line 13:
== checkAvailDiskSpace ==
== checkAvailDiskSpace ==
Example: <code>checkAvailDiskSpace=TRUE</code><br/>
Example: <code>checkAvailDiskSpace=TRUE</code><br/>
Short Description: Check the available disk space on the hard drive that LabVIEW is installed on during launch.  Warn the user if the available space is less than <code>[[#warnMIN|warnMIN]]</code> and/or <code>[[#abortMin|abortMIN]]</code>.<br/>
Short Description: Check the available disk space on the hard drive that LabVIEW is installed on during launch.  Warn the user if the available space is less than <code>[[#warnMIN|warnMIN]]</code> and/or <code>[[#abortMin|abortMIN]]</code><br/>
Datatype: <FONT COLOR=#008000>Booelan</FONT><br/>
Datatype: <FONT COLOR=#008000>Booelan</FONT><br/>
Permitted Values: <code>TRUE</code> or <code>FALSE</code><br/>
Permitted Values: <code>TRUE</code> or <code>FALSE</code><br/>
Line 23: Line 23:
== abortMIN ==
== abortMIN ==
Example: <code>abortMIN=250</code><br/>
Example: <code>abortMIN=250</code><br/>
Short Description: Abort LabVIEW launch process if available disk space on the drive LabVIEW is launched from is below this many kB.<br/>
Short Description: Abort LabVIEW launch process if available disk space on the drive LabVIEW is launched from is below this many kB<br/>
Datatype: <FONT COLOR=#0000FF>Integer</FONT><br/>
Datatype: <FONT COLOR=#0000FF>Integer</FONT><br/>
Permitted Values: 1 to 2<sup>32</sup><br/>
Permitted Values: 1 to 2<sup>32</sup><br/>
Line 29: Line 29:
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
OS's Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]<br/>
OS's Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]<br/>
Notes: This setting only takes effect if <code>[[#checkAvailDiskSpace|checkAvailDiskSpace]]</code> is set to <code>TRUE</code>.<br/>
Notes: This setting only takes effect if <code>[[#checkAvailDiskSpace|checkAvailDiskSpace]]</code> is set to <code>TRUE</code><br/>


== warnMIN ==
== warnMIN ==
Example: <code>warnMIN=1250</code><br/>
Example: <code>warnMIN=1250</code><br/>
Short Description: Warn the user on LabVIEW launch if available disk space on the drive LabVIEW is launched from is below this many kB.<br/>
Short Description: Warn the user on LabVIEW launch if available disk space on the drive LabVIEW is launched from is below this many kB<br/>
Datatype: <FONT COLOR=#0000FF>Integer</FONT><br/>
Datatype: <FONT COLOR=#0000FF>Integer</FONT><br/>
Permitted Values: 1 to 2<sup>32</sup><br/>
Permitted Values: 1 to 2<sup>32</sup><br/>
Line 39: Line 39:
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
OS's Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]<br/>
OS's Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]<br/>
Notes: This setting only takes effect if <code>[[#checkAvailDiskSpace|checkAvailDiskSpace]]</code> is set to <code>TRUE</code>.<br/>
Notes: This setting only takes effect if <code>[[#checkAvailDiskSpace|checkAvailDiskSpace]]</code> is set to <code>TRUE</code><br/>
 
== macExtremeCompacting ==
Example: <code>macExtremeCompacting=TRUE</code><br/>
Short Description: Unknown.<br/>
Datatype: <FONT COLOR=#008000>Booelan</FONT><br/>
Permitted Values: <code>TRUE</code> or <code>FALSE</code><br/>
Default Value: <code>FALSE</code><br/>
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
OS's Supported: [[Image:logo.Mac.png]]<br/>
Notes: Faster loading (but more inefficient)<br/>
 
== useDefaultTimer ==
Example: <code>useDefaultTimer=TRUE</code><br/>
Short Description: Unknown<br/>
Datatype: <FONT COLOR=#008000>Booelan</FONT><br/>
Permitted Values: <code>TRUE</code> or <code>FALSE</code><br/>
Default Value: Unknown<br/>
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x<br/>
OS's Supported: [[Image:logo.Windows.png]][[Image:logo.Mac.png]][[Image:logo.Linux.png]][[Image:logo.Sun.png]]<br/>
Notes: Set this to <code>FALSE</code> to increase LabVIEW's timer functions to 1ms resolution<br/>

Revision as of 16:26, 5 May 2007

This is a list of LabVIEW ini File settings relating to Performance.

anxiousMemoryDeallocation

Example: anxiousMemoryDeallocation=TRUE
Short Description: Force LabVIEW to deallocate memory agressively
Datatype: Booelan
Permitted Values: TRUE or FALSE
Default Value: FALSE
LabVIEW Versions: 7.1, 8.x
OS's Supported:
Notes: None.

checkAvailDiskSpace

Example: checkAvailDiskSpace=TRUE
Short Description: Check the available disk space on the hard drive that LabVIEW is installed on during launch. Warn the user if the available space is less than warnMIN and/or abortMIN
Datatype: Booelan
Permitted Values: TRUE or FALSE
Default Value: TRUE
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x
OS's Supported:
Notes: None.

abortMIN

Example: abortMIN=250
Short Description: Abort LabVIEW launch process if available disk space on the drive LabVIEW is launched from is below this many kB
Datatype: Integer
Permitted Values: 1 to 232
Default Value: 500
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x
OS's Supported:
Notes: This setting only takes effect if checkAvailDiskSpace is set to TRUE

warnMIN

Example: warnMIN=1250
Short Description: Warn the user on LabVIEW launch if available disk space on the drive LabVIEW is launched from is below this many kB
Datatype: Integer
Permitted Values: 1 to 232
Default Value: 2000
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x
OS's Supported:
Notes: This setting only takes effect if checkAvailDiskSpace is set to TRUE

macExtremeCompacting

Example: macExtremeCompacting=TRUE
Short Description: Unknown.
Datatype: Booelan
Permitted Values: TRUE or FALSE
Default Value: FALSE
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x
OS's Supported:
Notes: Faster loading (but more inefficient)

useDefaultTimer

Example: useDefaultTimer=TRUE
Short Description: Unknown
Datatype: Booelan
Permitted Values: TRUE or FALSE
Default Value: Unknown
LabVIEW Versions: 5.1, 6.1, 7.1, 8.x
OS's Supported:
Notes: Set this to FALSE to increase LabVIEW's timer functions to 1ms resolution