08-18-2022 08:59 AM
OK, Hijack over:
I found the problem, unrelated issue.
LVCompare.exe (LV 2015 version at least) has the Temp folder hardwired somewhere, it doesn't work if you change the default Temp folder within the LV environment. Or if it can be changed, I don't know where.
I had changed this when cleaning up my data and forgot this bug.
08-18-2022 10:11 AM
@Intaris wrote:
OK, Hijack over:
I found the problem, unrelated issue.
Whew, you had me worried there for a second. 😄
(I assume you installed the standard 2020 runtime engine from NI, and not the special "lite" runtime engine I made for users that don't use any NI software beyond my programs)
08-18-2022 03:07 PM - edited 08-19-2022 09:31 AM
Now that we have CPUs that do TFLOPS, I was reminded of an old ad in Byte magazine where you could buy an add-on card for your PC to get up to 125 kflops for only $1199. 😄
(Back in these days, I actually had the spectrum simulation code running on a VAX 11/780(?))
08-18-2022 03:10 PM
@altenbach wrote:
Back in these days, I actually had the spectrum simulation code running on a VAX 11/780(?)
Back in those days I had a speak and spell...just kidding I was 5 months old.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
08-19-2022 06:37 AM
Back in those days I was king of my peer-group because I could program a golf game on my Tandy Pocket Computer.
09-06-2022 01:09 AM
@altenbach wrote:(I assume you installed the standard 2020 runtime engine from NI, and not the special "lite" runtime engine I made for users that don't use any NI software beyond my programs)
How does one go about creating their own runtime engine?
I usually just need VISA support for the programs i write and people don't wanna use them due to the bloat of a whole runtime engine 😄
09-06-2022 09:12 AM
Attached is the benchmark result on a Intel Core i7-1260P laptop with Windows 11 Pro, set to high performance mode. The performance is a little over the place, with high single thread performance for the first few cycles and high multi thread performance afterwards. Could this be an artefact of Intel's hybrid architecture or are laptops usually so variable in their performance characteristics?
09-09-2022 09:33 AM - edited 09-09-2022 09:38 AM
@altenbach wrote:
Note that the core count are read incorrectly using current LabVIEW tools for some of the newer processors. (e.g. Testing an eight core Ryzen processors, it shows as 16 full cores instead of 8 hyperthreaded cores). For the table, I inspect the datasheet from the web to make sure.
Technically it's not hyperthreading, it is 16 integer cores, if memory serves. I'll test my 5800x when i get home. 🙂
09-09-2022 09:49 AM
@Yamaeda wrote:
Technically it's not hyperthreading, it is 16 integer cores, if memory serves. I'll test my 5800x when i get home.
I thought that was the previous AMD generation where pairs of integer cores shared a floating point unit.
Zen cores are quite different.
09-09-2022 10:16 AM
@AeroSoul wrote:
@altenbach wrote:(I assume you installed the standard 2020 runtime engine from NI, and not the special "lite" runtime engine I made for users that don't use any NI software beyond my programs)
How does one go about creating their own runtime engine?
I usually just need VISA support for the programs i write and people don't wanna use them due to the bloat of a whole runtime engine 😄
Well, I have a project with basically nothing in it except a dummy VI and then create an installer without defining any source files (The installer builder complains about that, but you can just ignore the warning). Under additional installers, I only define exactly two items: (1) the runtime engine and (2) the math kernel libraries, nothing else. (If you install the runtime engine from NI, you get a lot of extra baggage, such as NIPM).
Obviously, my lite runtime is only recommended for computers that don't have any other NI software installed and will only ever use my hardware-free analysis programs.
This is not really different than to include the specific runtime components with each installer build, except that if it is a separate install, all my other installers are much smaller (10-20MB instead of 200MB!) and the install/upgrade of any one of my programs takes seconds instead of minutes. 😄