OWL
OptiX7 Wrapper Library
array3D.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"
21 
22 namespace owl {
23  namespace common {
24  namespace array3D {
25 
26  inline int64_t linear(const vec3i &ID, const vec3i &dims)
27  { return ID.x + dims.x*(ID.y + dims.y*(int64_t)ID.z); }
28 
29  template<typename Lambda>
30  inline void for_each(const vec3i &dims, const Lambda &lambda)
31  {
32  for (int iz=0;iz<dims.z;iz++)
33  for (int iy=0;iy<dims.y;iy++)
34  for (int ix=0;ix<dims.x;ix++)
35  lambda(vec3i(ix,iy,iz));
36  }
37 
38 #if OWL_HAVE_PARALLEL_FOR
39  template<typename Lambda>
40  inline void parallel_for(const vec3i &dims, const Lambda &lambda)
41  {
42  owl::common::parallel_for(dims.x*(size_t)dims.y*dims.z,[&](size_t index){
43  lambda(vec3i(index%dims.x,
44  (index/dims.x)%dims.y,
45  index/((size_t)dims.x*dims.y)));
46  });
47  }
48 #endif
49  template<typename Lambda>
50  inline void serial_for(const vec3i &dims, const Lambda &lambda)
51  {
52  owl::common::serial_for(dims.x*size_t(dims.y)*dims.z,[&](size_t index){
53  lambda(vec3i(index%dims.x,
54  (index/dims.x)%dims.y,
55  index/((size_t)dims.x*dims.y)));
56  });
57  }
58 
59  } // owl::common::array3D
60  } // owl::common
61 } // owl
owl::common::array3D::for_each
void for_each(const vec3i &dims, const Lambda &lambda)
Definition: array3D.h:30
owl::common::array3D::linear
int64_t linear(const vec3i &ID, const vec3i &dims)
Definition: array3D.h:26
owl::common::parallel_for
void parallel_for(INDEX_T nTasks, TASK_T &&taskFunction, size_t blockSize=1)
Definition: parallel_for.h:69
owl::common::array3D::serial_for
void serial_for(const vec3i &dims, const Lambda &lambda)
Definition: array3D.h:50
vec.h
owl
Definition: APIContext.cpp:36
parallel_for.h
owl::common::serial_for
void serial_for(INDEX_T nTasks, TASK_T &&taskFunction)
Definition: parallel_for.h:38