OWL
OptiX7 Wrapper Library
array2D.h
Go to the documentation of this file.
1 // ======================================================================== //
2 // Copyright 2019-2020 Ingo Wald //
3 // //
4 // Licensed under the Apache License, Version 2.0 (the "License"); //
5 // you may not use this file except in compliance with the License. //
6 // You may obtain a copy of the License at //
7 // //
8 // http://www.apache.org/licenses/LICENSE-2.0 //
9 // //
10 // Unless required by applicable law or agreed to in writing, software //
11 // distributed under the License is distributed on an "AS IS" BASIS, //
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
13 // See the License for the specific language governing permissions and //
14 // limitations under the License. //
15 // ======================================================================== //
16 
17 #pragma once
18 
19 #include <owl/common/math/vec.h>
20 
21 namespace owl {
22  namespace common {
23  namespace array2D {
24 
25  inline int linear(const vec2i &ID, const vec2i &dims)
26  { return ID.x + dims.x*ID.y; }
27 
28  template<typename Lambda>
29  inline void for_each(const vec2i &dims, const Lambda &lambda)
30  {
31  for (int iy=0;iy<dims.y;iy++)
32  for (int ix=0;ix<dims.x;ix++)
33  lambda(vec2i(ix,iy));
34  }
35 
36 #if OWL_HAVE_PARALLEL_FOR
37  template<typename Lambda>
38  inline void parallel_for(const vec2i &dims, const Lambda &lambda)
39  {
40  owl::common::parallel_for(dims.x*dims.y,[&](int index){
41  lambda(vec2i(index%dims.x,index/dims.x));
42  });
43  }
44 #endif
45  template<typename Lambda>
46  inline void serial_for(const vec2i &dims, const Lambda &lambda)
47  {
48  owl::common::serial_for(dims.x*dims.y,[&](int index){
49  lambda(vec2i(index%dims.x,index/dims.x));
50  });
51  }
52 
53  } // owl::common::array2D
54  } // owl::common
55 } // owl
owl::common::array2D::serial_for
void serial_for(const vec2i &dims, const Lambda &lambda)
Definition: array2D.h:46
owl::common::parallel_for
void parallel_for(INDEX_T nTasks, TASK_T &&taskFunction, size_t blockSize=1)
Definition: parallel_for.h:69
owl::common::array2D::for_each
void for_each(const vec2i &dims, const Lambda &lambda)
Definition: array2D.h:29
owl::common::array2D::linear
int linear(const vec2i &ID, const vec2i &dims)
Definition: array2D.h:25
vec.h
owl
Definition: APIContext.cpp:36
owl::common::serial_for
void serial_for(INDEX_T nTasks, TASK_T &&taskFunction)
Definition: parallel_for.h:38