80 |
int i,j; |
int i,j; |
81 |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
82 |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
83 |
#pragma omp parallel for private(i,j) schedule(static) |
#pragma omp parallel for private(i,j) schedule(static) |
84 |
for (i=0;i<numRows;i++) { |
for (i=0;i<numRows;i++) { |
85 |
for (j=0;j<numCols;j++) { |
for (j=0;j<numCols;j++) { |
86 |
try { |
try { |
87 |
getPointDataView().copy(getPointOffset(i,j),other.getPointDataView(),other.getPointOffset(i,j)); |
getPointDataView().copy(getPointOffset(i,j), |
88 |
|
other.getPointDataView(), |
89 |
|
other.getPointOffset(i,j)); |
90 |
} |
} |
91 |
catch (std::exception& e) { |
catch (std::exception& e) { |
92 |
cout << e.what() << endl; |
cout << e.what() << endl; |
111 |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
112 |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
113 |
int i,j; |
int i,j; |
114 |
#pragma omp parallel for private(i,j) schedule(static) |
#pragma omp parallel for private(i,j) schedule(static) |
115 |
for (i=0;i<numRows;i++) { |
for (i=0;i<numRows;i++) { |
116 |
for (j=0;j<numCols;j++) { |
for (j=0;j<numCols;j++) { |
117 |
try { |
try { |
118 |
getPointDataView().copySlice(getPointOffset(i,j),other.getPointDataView(),other.getPointOffset(i,j),region_loop_range); |
getPointDataView().copySlice(getPointOffset(i,j), |
119 |
|
other.getPointDataView(), |
120 |
|
other.getPointOffset(i,j), |
121 |
|
region_loop_range); |
122 |
} |
} |
123 |
catch (std::exception& e) { |
catch (std::exception& e) { |
124 |
cout << e.what() << endl; |
cout << e.what() << endl; |
179 |
int i,j; |
int i,j; |
180 |
int nRows=m_data.getNumRows(); |
int nRows=m_data.getNumRows(); |
181 |
int nCols=m_data.getNumCols(); |
int nCols=m_data.getNumCols(); |
182 |
#pragma omp parallel for private(i,j) schedule(static) |
#pragma omp parallel for private(i,j) schedule(static) |
183 |
for (i=0;i<nRows;i++) { |
for (i=0;i<nRows;i++) { |
184 |
for (j=0;j<nCols;j++) { |
for (j=0;j<nCols;j++) { |
185 |
// NOTE: An exception may be thown from this call if |
// NOTE: An exception may be thown from this call if |
228 |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
DataArrayView::ValueType::size_type numRows=m_data.getNumRows(); |
229 |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
DataArrayView::ValueType::size_type numCols=m_data.getNumCols(); |
230 |
int i, j; |
int i, j; |
231 |
#pragma omp parallel for private(i,j) schedule(static) |
#pragma omp parallel for private(i,j) schedule(static) |
232 |
for (i=0;i<numRows;i++) { |
for (i=0;i<numRows;i++) { |
233 |
for (j=0;j<numCols;j++) { |
for (j=0;j<numCols;j++) { |
234 |
getPointDataView().copySliceFrom(getPointOffset(i,j),tempDataExp->getPointDataView(),tempDataExp->getPointOffset(i,j),region_loop_range); |
getPointDataView().copySliceFrom(getPointOffset(i,j), |
235 |
|
tempDataExp->getPointDataView(), |
236 |
|
tempDataExp->getPointOffset(i,j), |
237 |
|
region_loop_range); |
238 |
} |
} |
239 |
} |
} |
240 |
} |
} |
247 |
int nRows=m_data.getNumRows(); |
int nRows=m_data.getNumRows(); |
248 |
int nCols=m_data.getNumCols(); |
int nCols=m_data.getNumCols(); |
249 |
int i,j; |
int i,j; |
250 |
#pragma omp parallel for private(i,j) schedule(static) |
#pragma omp parallel for private(i,j) schedule(static) |
251 |
for (i=0;i<nRows;i++) { |
for (i=0;i<nRows;i++) { |
252 |
for (j=0;j<nCols;j++) { |
for (j=0;j<nCols;j++) { |
253 |
// NOTE: An exception may be thown from this call if |
// NOTE: An exception may be thown from this call if |