comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » idl parallel processing
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: idl parallel processing [message #94433 is a reply to message #94430] Sun, 21 May 2017 19:59 Go to previous messageGo to previous message
siumtesfai is currently offline  siumtesfai
Messages: 62
Registered: April 2013
Member
On Friday, May 19, 2017 at 10:59:07 AM UTC-4, wlandsman wrote:
> Yes, you can use the IDL Bridge for this. But if you have IDL 8.4 or later, then more valuable would be using the .HASVALUE() static method. Your code would then be
>
> result= bytarr(n_elements(siteN))
> FOR i= 0,n_elements(siteN)-1 do result[i] = data.hasvalue(siteN[i])
>
> The reasons this is much faster are (1) you don't need to compute the output vector of WHERE(). All you care about is whether the siteN[i] value is present in the data array-- you don't care where it is. And (2) the .hasvalue() method will return as soon as it finds a single case where the siteN[i] value is present, so you skip having to search the entire data array
>
> --Wayne
>
> On Thursday, May 18, 2017 at 6:05:51 PM UTC-4, Sium T wrote:
>> Hello,
>>
>> I have a procedure below. It want to call my procedure in my main program and do parallel processing on the do loop.
>>
>> How can use the IDL_Bridge . Any suggestion
>>
>> pro computation,data=data,siteN=siteN,result
>>
>> result=fltarr(n_elements(siteN))
>>
>> FOR i= 0,n_elements(siteN)-1 do begin
>> y=where(data eq siteN(i))
>> if y(0) ge 0 then begin
>> result(i)=1
>> endif else begin
>> result(i)=0
>> endelse
>> ENDFOR
>>
>> end

Thanks Wayne

I tried your method
result= bytarr(n_elements(siteN))
FOR i= 0,n_elements(siteN)-1 do result[i] = data.hasvalue(siteN[i])

However, I got this error message.

Object reference type required in this context:
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: trouble with pointers within array of structures
Next Topic: Plotting Vectors on Map Objects

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Wed Oct 08 13:32:16 PDT 2025

Total time taken to generate the page: 0.00430 seconds