09-01-2006 06:34 PM
09-03-2006 02:24 AM
I believe I remember seeing something about the new 8.2 taking advantage of graphics cards, but at least until now, LV did everything in software to make the platform indepedence easier to support.
In any case, simple numeric and boolean indicators should not be your problem.
There are several options which come to mind.
If you try searching for "optimization" and "display" you should hopefully find some answers (like changing the Z order of your elements).
In any case, it would be hard to give concrete advice without seeing the code.
09-05-2006 09:38 AM
09-05-2006 10:55 AM
Most of the power of todays high-end graphics adapters is for 3D gaming and rather irrelevant for things such as a typical LabVIEW front panel. However, the 3D graphs as well as the new 3D picture control (LabVIEW 8.20) can take advantage of 3D acceleration.
09-05-2006 11:06 AM
In addition to the fine points made earlier, I am curious about the phrase,
"
We have already seen that on a relatively high spec laptop, it is causing very high load and overheating of the laptop at times.
"
How is your memory usage?
If your application require more memory than the physical memory present in the machine, virtual memory will be used and will result in excessive disk I/O.
Ben
PS: Posting code will hlp us help you.
09-05-2006 11:13 AM
09-05-2006 11:14 AM - edited 09-05-2006 11:14 AM
altenbach a écrit:
- Only update indicators (especially graphs) if their value actually changes. (Place their terminal inside a case structure).
- ...
- Don't set your indicators to "synchronous display".
Hum... I thought that indicators where only updated if their value was changed ... even when set to synchronous display. At least this bis what is suggested by the attached vi... 😉
Message Edité par chilly charly le 09-05-2006 06:14 PM
09-05-2006 11:22 AM
CC, I haven't studied this in detail for a long time so maybe things have improved in recent LabVIEW versions :). Back in my early days I did extensive testing on this and there was a dramatic difference, especially with more expensive indicators such as graphs (updating a scalar is peanuts ;)). I'll do some testing....
@chilly charly wrote:
Hum... I thought that indicators where only updated if their value was changed ... even when set to synchronous display. At least this bis what is suggested by the attached vi... ;)
09-05-2006 11:29 AM
09-05-2006 05:03 PM