Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/ILNumerics.2.14.4735.573/Functions/builtin/isneginf.cs @ 10355

Last change on this file since 10355 was 9102, checked in by gkronber, 12 years ago

#1967: ILNumerics source for experimentation

File size: 34.4 KB
Line 
1///
2///    This file is part of ILNumerics Community Edition.
3///
4///    ILNumerics Community Edition - high performance computing for applications.
5///    Copyright (C) 2006 - 2012 Haymo Kutschbach, http://ilnumerics.net
6///
7///    ILNumerics Community Edition is free software: you can redistribute it and/or modify
8///    it under the terms of the GNU General Public License version 3 as published by
9///    the Free Software Foundation.
10///
11///    ILNumerics Community Edition is distributed in the hope that it will be useful,
12///    but WITHOUT ANY WARRANTY; without even the implied warranty of
13///    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14///    GNU General Public License for more details.
15///
16///    You should have received a copy of the GNU General Public License
17///    along with ILNumerics Community Edition. See the file License.txt in the root
18///    of your distribution package. If not, see <http://www.gnu.org/licenses/>.
19///
20///    In addition this software uses the following components and/or licenses:
21///
22///    =================================================================================
23///    The Open Toolkit Library License
24///   
25///    Copyright (c) 2006 - 2009 the Open Toolkit library.
26///   
27///    Permission is hereby granted, free of charge, to any person obtaining a copy
28///    of this software and associated documentation files (the "Software"), to deal
29///    in the Software without restriction, including without limitation the rights to
30///    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
31///    the Software, and to permit persons to whom the Software is furnished to do
32///    so, subject to the following conditions:
33///
34///    The above copyright notice and this permission notice shall be included in all
35///    copies or substantial portions of the Software.
36///
37///    =================================================================================
38///   
39
40using System;
41using System.Collections.Generic;
42using System.Text;
43using ILNumerics;
44using ILNumerics.Exceptions;
45using ILNumerics.Storage;
46using ILNumerics.Misc;
47
48
49
50namespace ILNumerics {
51
52    public partial class ILMath {
53       
54
55
56
57#region HYCALPER AUTO GENERATED CODE
58
59        /// <summary>Finds negative infinite value elements</summary>
60        /// <param name="A">Input array</param>
61        /// <returns>Logical array with 1 if the corresponding elements of input array is negative infinite, 0 else.</returns>
62        /// <remarks><para>If the input array is empty, an empty array will be returned.</para>
63        /// <para>The array returned will be a dense array.</para></remarks>
64        public unsafe static  ILRetLogical  isneginf (ILInArray< double > A) {
65            using (ILScope.Enter(A)) {
66                if (A.IsEmpty)
67                    return new  ILRetLogical(A.Size);
68                ILSize inDim = A.Size;
69                double[] arrA = A.GetArrayForRead();
70                byte [] retArr;
71                int outLen = inDim.NumberOfElements;
72                bool inplace = true;
73               
74                if (true) {
75                    retArr = ILMemoryPool.Pool.New<byte>(outLen);
76                    inplace = false;
77                }
78                int i = 0, workItemCount = Settings.s_maxNumberThreads, workItemLength, workerCount = 1;
79                if (Settings.s_maxNumberThreads > 1 && outLen / 2 > Settings.s_minParallelElement1Count) {
80                    if (outLen / workItemCount > Settings.s_minParallelElement1Count) {
81                        workItemLength = outLen / workItemCount;
82                        //workItemLength = (int)((double)outLen / workItemCount * 1.05);
83                    } else {
84                        workItemLength = outLen / 2;
85                        workItemCount = 2;
86                    }
87                } else {
88                    workItemLength = outLen;
89                    workItemCount = 1;
90                }
91                ILDenseStorage<byte> retStorage = new ILDenseStorage<byte>(retArr, inDim);
92               
93                Action<object> worker = data => {
94                    Tuple<int, int, IntPtr, IntPtr, bool> range = (Tuple<int, int, IntPtr, IntPtr, bool>)data;
95                   
96                    byte* cp = ((byte*)range.Item4 + range.Item1);
97                    int len = range.Item2;
98                    if (range.Item5) {
99                        // inplace
100                        while (len > 20) {
101                            cp[0] =  Double.IsNegativeInfinity(cp[0]  )  ?(byte)1:(byte)0;;
102                            cp[1] =  Double.IsNegativeInfinity(cp[1]  )  ?(byte)1:(byte)0;;
103                            cp[2] =  Double.IsNegativeInfinity(cp[2]  )  ?(byte)1:(byte)0;;
104                            cp[3] =  Double.IsNegativeInfinity(cp[3]  )  ?(byte)1:(byte)0;;
105                            cp[4] =  Double.IsNegativeInfinity(cp[4]  )  ?(byte)1:(byte)0;;
106                            cp[5] =  Double.IsNegativeInfinity(cp[5]  )  ?(byte)1:(byte)0;;
107                            cp[6] =  Double.IsNegativeInfinity(cp[6]  )  ?(byte)1:(byte)0;;
108                            cp[7] =  Double.IsNegativeInfinity(cp[7]  )  ?(byte)1:(byte)0;;
109                            cp[8] =  Double.IsNegativeInfinity(cp[8]  )  ?(byte)1:(byte)0;;
110                            cp[9] =  Double.IsNegativeInfinity(cp[9]  )  ?(byte)1:(byte)0;;
111                            cp[10] =  Double.IsNegativeInfinity(cp[10]  )  ?(byte)1:(byte)0;;
112                            cp[11] =  Double.IsNegativeInfinity(cp[11]  )  ?(byte)1:(byte)0;;
113                            cp[12] =  Double.IsNegativeInfinity(cp[12]  )  ?(byte)1:(byte)0;;
114                            cp[13] =  Double.IsNegativeInfinity(cp[13]  )  ?(byte)1:(byte)0;;
115                            cp[14] =  Double.IsNegativeInfinity(cp[14]  )  ?(byte)1:(byte)0;;
116                            cp[15] =  Double.IsNegativeInfinity(cp[15]  )  ?(byte)1:(byte)0;;
117                            cp[16] =  Double.IsNegativeInfinity(cp[16]  )  ?(byte)1:(byte)0;;
118                            cp[17] =  Double.IsNegativeInfinity(cp[17]  )  ?(byte)1:(byte)0;;
119                            cp[18] =  Double.IsNegativeInfinity(cp[18]  )  ?(byte)1:(byte)0;;
120                            cp[19] =  Double.IsNegativeInfinity(cp[19]  )  ?(byte)1:(byte)0;;
121                            cp[20] =  Double.IsNegativeInfinity(cp[20]  )  ?(byte)1:(byte)0;;
122                            cp+=21; len -= 21;
123                        }
124                        while (len-- > 0) {
125                            *cp =  Double.IsNegativeInfinity(*cp  )  ?(byte)1:(byte)0;;
126                            cp++;
127                        }
128                    } else {
129                        double* ap = ((double*)range.Item3 + range.Item1);
130                        while (len > 20) {
131                            cp[0] =  Double.IsNegativeInfinity(ap[0]  )  ?(byte)1:(byte)0;;
132                            cp[1] =  Double.IsNegativeInfinity(ap[1]  )  ?(byte)1:(byte)0;;
133                            cp[2] =  Double.IsNegativeInfinity(ap[2]  )  ?(byte)1:(byte)0;;
134                            cp[3] =  Double.IsNegativeInfinity(ap[3]  )  ?(byte)1:(byte)0;;
135                            cp[4] =  Double.IsNegativeInfinity(ap[4]  )  ?(byte)1:(byte)0;;
136                            cp[5] =  Double.IsNegativeInfinity(ap[5]  )  ?(byte)1:(byte)0;;
137                            cp[6] =  Double.IsNegativeInfinity(ap[6]  )  ?(byte)1:(byte)0;;
138                            cp[7] =  Double.IsNegativeInfinity(ap[7]  )  ?(byte)1:(byte)0;;
139                            cp[8] =  Double.IsNegativeInfinity(ap[8]  )  ?(byte)1:(byte)0;;
140                            cp[9] =  Double.IsNegativeInfinity(ap[9]  )  ?(byte)1:(byte)0;;
141                            cp[10] =  Double.IsNegativeInfinity(ap[10]  )  ?(byte)1:(byte)0;;
142                            cp[11] =  Double.IsNegativeInfinity(ap[11]  )  ?(byte)1:(byte)0;;
143                            cp[12] =  Double.IsNegativeInfinity(ap[12]  )  ?(byte)1:(byte)0;;
144                            cp[13] =  Double.IsNegativeInfinity(ap[13]  )  ?(byte)1:(byte)0;;
145                            cp[14] =  Double.IsNegativeInfinity(ap[14]  )  ?(byte)1:(byte)0;;
146                            cp[15] =  Double.IsNegativeInfinity(ap[15]  )  ?(byte)1:(byte)0;;
147                            cp[16] =  Double.IsNegativeInfinity(ap[16]  )  ?(byte)1:(byte)0;;
148                            cp[17] =  Double.IsNegativeInfinity(ap[17]  )  ?(byte)1:(byte)0;;
149                            cp[18] =  Double.IsNegativeInfinity(ap[18]  )  ?(byte)1:(byte)0;;
150                            cp[19] =  Double.IsNegativeInfinity(ap[19]  )  ?(byte)1:(byte)0;;
151                            cp[20] =  Double.IsNegativeInfinity(ap[20]  )  ?(byte)1:(byte)0;;
152                            ap += 21;
153                            cp += 21;
154                            len -= 21;
155                        }
156                        while (len-- > 0) {
157                            *cp =  Double.IsNegativeInfinity(*ap  )  ?(byte)1:(byte)0;;
158                            ap++;
159                            cp++;
160                        }
161                    }
162                    System.Threading.Interlocked.Decrement(ref workerCount);
163                };
164
165                fixed ( double* arrAP = arrA)
166                fixed ( byte* retArrP = retArr) {
167                    for (; i < workItemCount - 1; i++) {
168                        Tuple<int, int, IntPtr, IntPtr, bool> range
169                            = new Tuple<int, int, IntPtr, IntPtr, bool>
170                                (i * workItemLength, workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace);
171                        System.Threading.Interlocked.Increment(ref workerCount);
172                        ILThreadPool.QueueUserWorkItem(i,worker, range);
173                    }
174                    // the last (or may the only) chunk is done right here
175                    worker(new Tuple<int, int, IntPtr, IntPtr, bool>
176                                (i * workItemLength, outLen - i * workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace));
177
178                    ILThreadPool.Wait4Workers(ref workerCount);
179                }
180                return new  ILRetLogical(retStorage);
181            }
182        }
183        /// <summary>Finds negative infinite value elements</summary>
184        /// <param name="A">Input array</param>
185        /// <returns>Logical array with 1 if the corresponding elements of input array is negative infinite, 0 else.</returns>
186        /// <remarks><para>If the input array is empty, an empty array will be returned.</para>
187        /// <para>The array returned will be a dense array.</para></remarks>
188        public unsafe static  ILRetLogical  isneginf (ILInArray< float > A) {
189            using (ILScope.Enter(A)) {
190                if (A.IsEmpty)
191                    return new  ILRetLogical(A.Size);
192                ILSize inDim = A.Size;
193                float[] arrA = A.GetArrayForRead();
194                byte [] retArr;
195                int outLen = inDim.NumberOfElements;
196                bool inplace = true;
197               
198                if (true) {
199                    retArr = ILMemoryPool.Pool.New<byte>(outLen);
200                    inplace = false;
201                }
202                int i = 0, workItemCount = Settings.s_maxNumberThreads, workItemLength, workerCount = 1;
203                if (Settings.s_maxNumberThreads > 1 && outLen / 2 > Settings.s_minParallelElement1Count) {
204                    if (outLen / workItemCount > Settings.s_minParallelElement1Count) {
205                        workItemLength = outLen / workItemCount;
206                        //workItemLength = (int)((double)outLen / workItemCount * 1.05);
207                    } else {
208                        workItemLength = outLen / 2;
209                        workItemCount = 2;
210                    }
211                } else {
212                    workItemLength = outLen;
213                    workItemCount = 1;
214                }
215                ILDenseStorage<byte> retStorage = new ILDenseStorage<byte>(retArr, inDim);
216               
217                Action<object> worker = data => {
218                    Tuple<int, int, IntPtr, IntPtr, bool> range = (Tuple<int, int, IntPtr, IntPtr, bool>)data;
219                   
220                    byte* cp = ((byte*)range.Item4 + range.Item1);
221                    int len = range.Item2;
222                    if (range.Item5) {
223                        // inplace
224                        while (len > 20) {
225                            cp[0] =  Single.IsNegativeInfinity(cp[0]  )  ?(byte)1:(byte)0;;
226                            cp[1] =  Single.IsNegativeInfinity(cp[1]  )  ?(byte)1:(byte)0;;
227                            cp[2] =  Single.IsNegativeInfinity(cp[2]  )  ?(byte)1:(byte)0;;
228                            cp[3] =  Single.IsNegativeInfinity(cp[3]  )  ?(byte)1:(byte)0;;
229                            cp[4] =  Single.IsNegativeInfinity(cp[4]  )  ?(byte)1:(byte)0;;
230                            cp[5] =  Single.IsNegativeInfinity(cp[5]  )  ?(byte)1:(byte)0;;
231                            cp[6] =  Single.IsNegativeInfinity(cp[6]  )  ?(byte)1:(byte)0;;
232                            cp[7] =  Single.IsNegativeInfinity(cp[7]  )  ?(byte)1:(byte)0;;
233                            cp[8] =  Single.IsNegativeInfinity(cp[8]  )  ?(byte)1:(byte)0;;
234                            cp[9] =  Single.IsNegativeInfinity(cp[9]  )  ?(byte)1:(byte)0;;
235                            cp[10] =  Single.IsNegativeInfinity(cp[10]  )  ?(byte)1:(byte)0;;
236                            cp[11] =  Single.IsNegativeInfinity(cp[11]  )  ?(byte)1:(byte)0;;
237                            cp[12] =  Single.IsNegativeInfinity(cp[12]  )  ?(byte)1:(byte)0;;
238                            cp[13] =  Single.IsNegativeInfinity(cp[13]  )  ?(byte)1:(byte)0;;
239                            cp[14] =  Single.IsNegativeInfinity(cp[14]  )  ?(byte)1:(byte)0;;
240                            cp[15] =  Single.IsNegativeInfinity(cp[15]  )  ?(byte)1:(byte)0;;
241                            cp[16] =  Single.IsNegativeInfinity(cp[16]  )  ?(byte)1:(byte)0;;
242                            cp[17] =  Single.IsNegativeInfinity(cp[17]  )  ?(byte)1:(byte)0;;
243                            cp[18] =  Single.IsNegativeInfinity(cp[18]  )  ?(byte)1:(byte)0;;
244                            cp[19] =  Single.IsNegativeInfinity(cp[19]  )  ?(byte)1:(byte)0;;
245                            cp[20] =  Single.IsNegativeInfinity(cp[20]  )  ?(byte)1:(byte)0;;
246                            cp+=21; len -= 21;
247                        }
248                        while (len-- > 0) {
249                            *cp =  Single.IsNegativeInfinity(*cp  )  ?(byte)1:(byte)0;;
250                            cp++;
251                        }
252                    } else {
253                        float* ap = ((float*)range.Item3 + range.Item1);
254                        while (len > 20) {
255                            cp[0] =  Single.IsNegativeInfinity(ap[0]  )  ?(byte)1:(byte)0;;
256                            cp[1] =  Single.IsNegativeInfinity(ap[1]  )  ?(byte)1:(byte)0;;
257                            cp[2] =  Single.IsNegativeInfinity(ap[2]  )  ?(byte)1:(byte)0;;
258                            cp[3] =  Single.IsNegativeInfinity(ap[3]  )  ?(byte)1:(byte)0;;
259                            cp[4] =  Single.IsNegativeInfinity(ap[4]  )  ?(byte)1:(byte)0;;
260                            cp[5] =  Single.IsNegativeInfinity(ap[5]  )  ?(byte)1:(byte)0;;
261                            cp[6] =  Single.IsNegativeInfinity(ap[6]  )  ?(byte)1:(byte)0;;
262                            cp[7] =  Single.IsNegativeInfinity(ap[7]  )  ?(byte)1:(byte)0;;
263                            cp[8] =  Single.IsNegativeInfinity(ap[8]  )  ?(byte)1:(byte)0;;
264                            cp[9] =  Single.IsNegativeInfinity(ap[9]  )  ?(byte)1:(byte)0;;
265                            cp[10] =  Single.IsNegativeInfinity(ap[10]  )  ?(byte)1:(byte)0;;
266                            cp[11] =  Single.IsNegativeInfinity(ap[11]  )  ?(byte)1:(byte)0;;
267                            cp[12] =  Single.IsNegativeInfinity(ap[12]  )  ?(byte)1:(byte)0;;
268                            cp[13] =  Single.IsNegativeInfinity(ap[13]  )  ?(byte)1:(byte)0;;
269                            cp[14] =  Single.IsNegativeInfinity(ap[14]  )  ?(byte)1:(byte)0;;
270                            cp[15] =  Single.IsNegativeInfinity(ap[15]  )  ?(byte)1:(byte)0;;
271                            cp[16] =  Single.IsNegativeInfinity(ap[16]  )  ?(byte)1:(byte)0;;
272                            cp[17] =  Single.IsNegativeInfinity(ap[17]  )  ?(byte)1:(byte)0;;
273                            cp[18] =  Single.IsNegativeInfinity(ap[18]  )  ?(byte)1:(byte)0;;
274                            cp[19] =  Single.IsNegativeInfinity(ap[19]  )  ?(byte)1:(byte)0;;
275                            cp[20] =  Single.IsNegativeInfinity(ap[20]  )  ?(byte)1:(byte)0;;
276                            ap += 21;
277                            cp += 21;
278                            len -= 21;
279                        }
280                        while (len-- > 0) {
281                            *cp =  Single.IsNegativeInfinity(*ap  )  ?(byte)1:(byte)0;;
282                            ap++;
283                            cp++;
284                        }
285                    }
286                    System.Threading.Interlocked.Decrement(ref workerCount);
287                };
288
289                fixed ( float* arrAP = arrA)
290                fixed ( byte* retArrP = retArr) {
291                    for (; i < workItemCount - 1; i++) {
292                        Tuple<int, int, IntPtr, IntPtr, bool> range
293                            = new Tuple<int, int, IntPtr, IntPtr, bool>
294                                (i * workItemLength, workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace);
295                        System.Threading.Interlocked.Increment(ref workerCount);
296                        ILThreadPool.QueueUserWorkItem(i,worker, range);
297                    }
298                    // the last (or may the only) chunk is done right here
299                    worker(new Tuple<int, int, IntPtr, IntPtr, bool>
300                                (i * workItemLength, outLen - i * workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace));
301
302                    ILThreadPool.Wait4Workers(ref workerCount);
303                }
304                return new  ILRetLogical(retStorage);
305            }
306        }
307        /// <summary>Finds negative infinite value elements</summary>
308        /// <param name="A">Input array</param>
309        /// <returns>Logical array with 1 if the corresponding elements of input array is negative infinite, 0 else.</returns>
310        /// <remarks><para>If the input array is empty, an empty array will be returned.</para>
311        /// <para>The array returned will be a dense array.</para></remarks>
312        public unsafe static  ILRetLogical  isneginf (ILInArray< fcomplex > A) {
313            using (ILScope.Enter(A)) {
314                if (A.IsEmpty)
315                    return new  ILRetLogical(A.Size);
316                ILSize inDim = A.Size;
317                fcomplex[] arrA = A.GetArrayForRead();
318                byte [] retArr;
319                int outLen = inDim.NumberOfElements;
320                bool inplace = true;
321               
322                if (true) {
323                    retArr = ILMemoryPool.Pool.New<byte>(outLen);
324                    inplace = false;
325                }
326                int i = 0, workItemCount = Settings.s_maxNumberThreads, workItemLength, workerCount = 1;
327                if (Settings.s_maxNumberThreads > 1 && outLen / 2 > Settings.s_minParallelElement1Count) {
328                    if (outLen / workItemCount > Settings.s_minParallelElement1Count) {
329                        workItemLength = outLen / workItemCount;
330                        //workItemLength = (int)((double)outLen / workItemCount * 1.05);
331                    } else {
332                        workItemLength = outLen / 2;
333                        workItemCount = 2;
334                    }
335                } else {
336                    workItemLength = outLen;
337                    workItemCount = 1;
338                }
339                ILDenseStorage<byte> retStorage = new ILDenseStorage<byte>(retArr, inDim);
340               
341                Action<object> worker = data => {
342                    Tuple<int, int, IntPtr, IntPtr, bool> range = (Tuple<int, int, IntPtr, IntPtr, bool>)data;
343                   
344                    byte* cp = ((byte*)range.Item4 + range.Item1);
345                    int len = range.Item2;
346                    if (range.Item5) {
347                        // inplace
348                        while (len > 20) {
349                            cp[0] =  fcomplex.IsNegativeInfinity(cp[0]  )  ?(byte)1:(byte)0;;
350                            cp[1] =  fcomplex.IsNegativeInfinity(cp[1]  )  ?(byte)1:(byte)0;;
351                            cp[2] =  fcomplex.IsNegativeInfinity(cp[2]  )  ?(byte)1:(byte)0;;
352                            cp[3] =  fcomplex.IsNegativeInfinity(cp[3]  )  ?(byte)1:(byte)0;;
353                            cp[4] =  fcomplex.IsNegativeInfinity(cp[4]  )  ?(byte)1:(byte)0;;
354                            cp[5] =  fcomplex.IsNegativeInfinity(cp[5]  )  ?(byte)1:(byte)0;;
355                            cp[6] =  fcomplex.IsNegativeInfinity(cp[6]  )  ?(byte)1:(byte)0;;
356                            cp[7] =  fcomplex.IsNegativeInfinity(cp[7]  )  ?(byte)1:(byte)0;;
357                            cp[8] =  fcomplex.IsNegativeInfinity(cp[8]  )  ?(byte)1:(byte)0;;
358                            cp[9] =  fcomplex.IsNegativeInfinity(cp[9]  )  ?(byte)1:(byte)0;;
359                            cp[10] =  fcomplex.IsNegativeInfinity(cp[10]  )  ?(byte)1:(byte)0;;
360                            cp[11] =  fcomplex.IsNegativeInfinity(cp[11]  )  ?(byte)1:(byte)0;;
361                            cp[12] =  fcomplex.IsNegativeInfinity(cp[12]  )  ?(byte)1:(byte)0;;
362                            cp[13] =  fcomplex.IsNegativeInfinity(cp[13]  )  ?(byte)1:(byte)0;;
363                            cp[14] =  fcomplex.IsNegativeInfinity(cp[14]  )  ?(byte)1:(byte)0;;
364                            cp[15] =  fcomplex.IsNegativeInfinity(cp[15]  )  ?(byte)1:(byte)0;;
365                            cp[16] =  fcomplex.IsNegativeInfinity(cp[16]  )  ?(byte)1:(byte)0;;
366                            cp[17] =  fcomplex.IsNegativeInfinity(cp[17]  )  ?(byte)1:(byte)0;;
367                            cp[18] =  fcomplex.IsNegativeInfinity(cp[18]  )  ?(byte)1:(byte)0;;
368                            cp[19] =  fcomplex.IsNegativeInfinity(cp[19]  )  ?(byte)1:(byte)0;;
369                            cp[20] =  fcomplex.IsNegativeInfinity(cp[20]  )  ?(byte)1:(byte)0;;
370                            cp+=21; len -= 21;
371                        }
372                        while (len-- > 0) {
373                            *cp =  fcomplex.IsNegativeInfinity(*cp  )  ?(byte)1:(byte)0;;
374                            cp++;
375                        }
376                    } else {
377                        fcomplex* ap = ((fcomplex*)range.Item3 + range.Item1);
378                        while (len > 20) {
379                            cp[0] =  fcomplex.IsNegativeInfinity(ap[0]  )  ?(byte)1:(byte)0;;
380                            cp[1] =  fcomplex.IsNegativeInfinity(ap[1]  )  ?(byte)1:(byte)0;;
381                            cp[2] =  fcomplex.IsNegativeInfinity(ap[2]  )  ?(byte)1:(byte)0;;
382                            cp[3] =  fcomplex.IsNegativeInfinity(ap[3]  )  ?(byte)1:(byte)0;;
383                            cp[4] =  fcomplex.IsNegativeInfinity(ap[4]  )  ?(byte)1:(byte)0;;
384                            cp[5] =  fcomplex.IsNegativeInfinity(ap[5]  )  ?(byte)1:(byte)0;;
385                            cp[6] =  fcomplex.IsNegativeInfinity(ap[6]  )  ?(byte)1:(byte)0;;
386                            cp[7] =  fcomplex.IsNegativeInfinity(ap[7]  )  ?(byte)1:(byte)0;;
387                            cp[8] =  fcomplex.IsNegativeInfinity(ap[8]  )  ?(byte)1:(byte)0;;
388                            cp[9] =  fcomplex.IsNegativeInfinity(ap[9]  )  ?(byte)1:(byte)0;;
389                            cp[10] =  fcomplex.IsNegativeInfinity(ap[10]  )  ?(byte)1:(byte)0;;
390                            cp[11] =  fcomplex.IsNegativeInfinity(ap[11]  )  ?(byte)1:(byte)0;;
391                            cp[12] =  fcomplex.IsNegativeInfinity(ap[12]  )  ?(byte)1:(byte)0;;
392                            cp[13] =  fcomplex.IsNegativeInfinity(ap[13]  )  ?(byte)1:(byte)0;;
393                            cp[14] =  fcomplex.IsNegativeInfinity(ap[14]  )  ?(byte)1:(byte)0;;
394                            cp[15] =  fcomplex.IsNegativeInfinity(ap[15]  )  ?(byte)1:(byte)0;;
395                            cp[16] =  fcomplex.IsNegativeInfinity(ap[16]  )  ?(byte)1:(byte)0;;
396                            cp[17] =  fcomplex.IsNegativeInfinity(ap[17]  )  ?(byte)1:(byte)0;;
397                            cp[18] =  fcomplex.IsNegativeInfinity(ap[18]  )  ?(byte)1:(byte)0;;
398                            cp[19] =  fcomplex.IsNegativeInfinity(ap[19]  )  ?(byte)1:(byte)0;;
399                            cp[20] =  fcomplex.IsNegativeInfinity(ap[20]  )  ?(byte)1:(byte)0;;
400                            ap += 21;
401                            cp += 21;
402                            len -= 21;
403                        }
404                        while (len-- > 0) {
405                            *cp =  fcomplex.IsNegativeInfinity(*ap  )  ?(byte)1:(byte)0;;
406                            ap++;
407                            cp++;
408                        }
409                    }
410                    System.Threading.Interlocked.Decrement(ref workerCount);
411                };
412
413                fixed ( fcomplex* arrAP = arrA)
414                fixed ( byte* retArrP = retArr) {
415                    for (; i < workItemCount - 1; i++) {
416                        Tuple<int, int, IntPtr, IntPtr, bool> range
417                            = new Tuple<int, int, IntPtr, IntPtr, bool>
418                                (i * workItemLength, workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace);
419                        System.Threading.Interlocked.Increment(ref workerCount);
420                        ILThreadPool.QueueUserWorkItem(i,worker, range);
421                    }
422                    // the last (or may the only) chunk is done right here
423                    worker(new Tuple<int, int, IntPtr, IntPtr, bool>
424                                (i * workItemLength, outLen - i * workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace));
425
426                    ILThreadPool.Wait4Workers(ref workerCount);
427                }
428                return new  ILRetLogical(retStorage);
429            }
430        }
431        /// <summary>Finds negative infinite value elements</summary>
432        /// <param name="A">Input array</param>
433        /// <returns>Logical array with 1 if the corresponding elements of input array is negative infinite, 0 else.</returns>
434        /// <remarks><para>If the input array is empty, an empty array will be returned.</para>
435        /// <para>The array returned will be a dense array.</para></remarks>
436        public unsafe static  ILRetLogical  isneginf (ILInArray< complex > A) {
437            using (ILScope.Enter(A)) {
438                if (A.IsEmpty)
439                    return new  ILRetLogical(A.Size);
440                ILSize inDim = A.Size;
441                complex[] arrA = A.GetArrayForRead();
442                byte [] retArr;
443                int outLen = inDim.NumberOfElements;
444                bool inplace = true;
445               
446                if (true) {
447                    retArr = ILMemoryPool.Pool.New<byte>(outLen);
448                    inplace = false;
449                }
450                int i = 0, workItemCount = Settings.s_maxNumberThreads, workItemLength, workerCount = 1;
451                if (Settings.s_maxNumberThreads > 1 && outLen / 2 > Settings.s_minParallelElement1Count) {
452                    if (outLen / workItemCount > Settings.s_minParallelElement1Count) {
453                        workItemLength = outLen / workItemCount;
454                        //workItemLength = (int)((double)outLen / workItemCount * 1.05);
455                    } else {
456                        workItemLength = outLen / 2;
457                        workItemCount = 2;
458                    }
459                } else {
460                    workItemLength = outLen;
461                    workItemCount = 1;
462                }
463                ILDenseStorage<byte> retStorage = new ILDenseStorage<byte>(retArr, inDim);
464               
465                Action<object> worker = data => {
466                    Tuple<int, int, IntPtr, IntPtr, bool> range = (Tuple<int, int, IntPtr, IntPtr, bool>)data;
467                   
468                    byte* cp = ((byte*)range.Item4 + range.Item1);
469                    int len = range.Item2;
470                    if (range.Item5) {
471                        // inplace
472                        while (len > 20) {
473                            cp[0] =  complex.IsNegativeInfinity(cp[0]  )  ?(byte)1:(byte)0;;
474                            cp[1] =  complex.IsNegativeInfinity(cp[1]  )  ?(byte)1:(byte)0;;
475                            cp[2] =  complex.IsNegativeInfinity(cp[2]  )  ?(byte)1:(byte)0;;
476                            cp[3] =  complex.IsNegativeInfinity(cp[3]  )  ?(byte)1:(byte)0;;
477                            cp[4] =  complex.IsNegativeInfinity(cp[4]  )  ?(byte)1:(byte)0;;
478                            cp[5] =  complex.IsNegativeInfinity(cp[5]  )  ?(byte)1:(byte)0;;
479                            cp[6] =  complex.IsNegativeInfinity(cp[6]  )  ?(byte)1:(byte)0;;
480                            cp[7] =  complex.IsNegativeInfinity(cp[7]  )  ?(byte)1:(byte)0;;
481                            cp[8] =  complex.IsNegativeInfinity(cp[8]  )  ?(byte)1:(byte)0;;
482                            cp[9] =  complex.IsNegativeInfinity(cp[9]  )  ?(byte)1:(byte)0;;
483                            cp[10] =  complex.IsNegativeInfinity(cp[10]  )  ?(byte)1:(byte)0;;
484                            cp[11] =  complex.IsNegativeInfinity(cp[11]  )  ?(byte)1:(byte)0;;
485                            cp[12] =  complex.IsNegativeInfinity(cp[12]  )  ?(byte)1:(byte)0;;
486                            cp[13] =  complex.IsNegativeInfinity(cp[13]  )  ?(byte)1:(byte)0;;
487                            cp[14] =  complex.IsNegativeInfinity(cp[14]  )  ?(byte)1:(byte)0;;
488                            cp[15] =  complex.IsNegativeInfinity(cp[15]  )  ?(byte)1:(byte)0;;
489                            cp[16] =  complex.IsNegativeInfinity(cp[16]  )  ?(byte)1:(byte)0;;
490                            cp[17] =  complex.IsNegativeInfinity(cp[17]  )  ?(byte)1:(byte)0;;
491                            cp[18] =  complex.IsNegativeInfinity(cp[18]  )  ?(byte)1:(byte)0;;
492                            cp[19] =  complex.IsNegativeInfinity(cp[19]  )  ?(byte)1:(byte)0;;
493                            cp[20] =  complex.IsNegativeInfinity(cp[20]  )  ?(byte)1:(byte)0;;
494                            cp+=21; len -= 21;
495                        }
496                        while (len-- > 0) {
497                            *cp =  complex.IsNegativeInfinity(*cp  )  ?(byte)1:(byte)0;;
498                            cp++;
499                        }
500                    } else {
501                        complex* ap = ((complex*)range.Item3 + range.Item1);
502                        while (len > 20) {
503                            cp[0] =  complex.IsNegativeInfinity(ap[0]  )  ?(byte)1:(byte)0;;
504                            cp[1] =  complex.IsNegativeInfinity(ap[1]  )  ?(byte)1:(byte)0;;
505                            cp[2] =  complex.IsNegativeInfinity(ap[2]  )  ?(byte)1:(byte)0;;
506                            cp[3] =  complex.IsNegativeInfinity(ap[3]  )  ?(byte)1:(byte)0;;
507                            cp[4] =  complex.IsNegativeInfinity(ap[4]  )  ?(byte)1:(byte)0;;
508                            cp[5] =  complex.IsNegativeInfinity(ap[5]  )  ?(byte)1:(byte)0;;
509                            cp[6] =  complex.IsNegativeInfinity(ap[6]  )  ?(byte)1:(byte)0;;
510                            cp[7] =  complex.IsNegativeInfinity(ap[7]  )  ?(byte)1:(byte)0;;
511                            cp[8] =  complex.IsNegativeInfinity(ap[8]  )  ?(byte)1:(byte)0;;
512                            cp[9] =  complex.IsNegativeInfinity(ap[9]  )  ?(byte)1:(byte)0;;
513                            cp[10] =  complex.IsNegativeInfinity(ap[10]  )  ?(byte)1:(byte)0;;
514                            cp[11] =  complex.IsNegativeInfinity(ap[11]  )  ?(byte)1:(byte)0;;
515                            cp[12] =  complex.IsNegativeInfinity(ap[12]  )  ?(byte)1:(byte)0;;
516                            cp[13] =  complex.IsNegativeInfinity(ap[13]  )  ?(byte)1:(byte)0;;
517                            cp[14] =  complex.IsNegativeInfinity(ap[14]  )  ?(byte)1:(byte)0;;
518                            cp[15] =  complex.IsNegativeInfinity(ap[15]  )  ?(byte)1:(byte)0;;
519                            cp[16] =  complex.IsNegativeInfinity(ap[16]  )  ?(byte)1:(byte)0;;
520                            cp[17] =  complex.IsNegativeInfinity(ap[17]  )  ?(byte)1:(byte)0;;
521                            cp[18] =  complex.IsNegativeInfinity(ap[18]  )  ?(byte)1:(byte)0;;
522                            cp[19] =  complex.IsNegativeInfinity(ap[19]  )  ?(byte)1:(byte)0;;
523                            cp[20] =  complex.IsNegativeInfinity(ap[20]  )  ?(byte)1:(byte)0;;
524                            ap += 21;
525                            cp += 21;
526                            len -= 21;
527                        }
528                        while (len-- > 0) {
529                            *cp =  complex.IsNegativeInfinity(*ap  )  ?(byte)1:(byte)0;;
530                            ap++;
531                            cp++;
532                        }
533                    }
534                    System.Threading.Interlocked.Decrement(ref workerCount);
535                };
536
537                fixed ( complex* arrAP = arrA)
538                fixed ( byte* retArrP = retArr) {
539                    for (; i < workItemCount - 1; i++) {
540                        Tuple<int, int, IntPtr, IntPtr, bool> range
541                            = new Tuple<int, int, IntPtr, IntPtr, bool>
542                                (i * workItemLength, workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace);
543                        System.Threading.Interlocked.Increment(ref workerCount);
544                        ILThreadPool.QueueUserWorkItem(i,worker, range);
545                    }
546                    // the last (or may the only) chunk is done right here
547                    worker(new Tuple<int, int, IntPtr, IntPtr, bool>
548                                (i * workItemLength, outLen - i * workItemLength, (IntPtr)arrAP, (IntPtr)retArrP, inplace));
549
550                    ILThreadPool.Wait4Workers(ref workerCount);
551                }
552                return new  ILRetLogical(retStorage);
553            }
554        }
555
556#endregion HYCALPER AUTO GENERATED CODE
557
558    }
559}
Note: See TracBrowser for help on using the repository browser.