LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Dll running slow in project, but not in vi

Hi

 

I have a problem with PCL 32bit dll, that I'm using in LabVIEW 2014 application.

When I'm using the same dll in a different application, it takes couple ms to execute, but when run in bigger one, it needs about 150ms... I'm running it in the loop of ~2000 loops, so I really need to make it faster (I cannot set parallel execution to this one).

 

I've set dll to run in any thread, I've also sprecified error checking to Disabled and the vi execution to High Priority.

During the run LabVIEW is using about 1,5 GB memory and full CPU utilisation of one of the cores.

 

What seems to be the problem? How to find out what is causing it?

0 Kudos
Message 1 of 5
(2,928 Views)

What are ~2000 loops? Are they all running in parallel? What does the DLL do? How do you measure the speed?

0 Kudos
Message 2 of 5
(2,901 Views)

Hi

I have to use this dll in the for loop about 2000 times, so execution is about 300 seconds.

I can't use it in parallel, because I'm using shift register.

 

DLL is ICP Register function which compares two sets of points and find alignment. It is used for image processing.

I was measuring speed by tickcount diff before and after dll.

0 Kudos
Message 3 of 5
(2,886 Views)

Sorry if i didn't understand properly.

-What are the inputs and outputs to and from dll in both applications?

-Are they same or different?

-You mentioned it compares two sets of points and find alignment-can you give more detail on this?

-Does it do some search algorithms?

-Posting vi or snippet can help.

 

 

Thanks
uday
0 Kudos
Message 4 of 5
(2,856 Views)

Hi

Thanks for taking up the case. I still don't know what the problem was, everything was exactly the same when it comes to using dll in both apps. The difference was the size of the first app, maybe it needed more memory so this slowed dll down, or maybe something else? As I said, I was trying to switch dll to run not in UI thread, and made prioritize vi that contained it.

 

At the end I've created my own ICP, which is faster and more customized then the old one. It didn't take a lot of time, and I've learned something really useful

0 Kudos
Message 5 of 5
(2,804 Views)