1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- //
- // Copyright 2010 Intel Corporation
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- #include "RCCE.h"
- #include <math.h>
- #include <stdio.h>
- #include "applu_share.h"
- #include "applu_macros.h"
- #include "applu_protos.h"
- #define u000ijk(m) u000ijk[m-1]
- #define errnm(m) errnm[m-1]
- #define dummy(m) dummy[m-1]
- void error() {
- // local variables
- int i, j, k, m, iglob, jglob;
- double tmp, u000ijk[5], dummy[5];
- for (m=1; m<=5; m++) {
- errnm(m) = 0.0;
- dummy(m) = 0.0;
- }
- for (k=2; k<=(nz)-1; k++)
- for (j=jst; j<=(jend); j++) {
- jglob = jpt + j;
- for (i=ist;i<=(iend); i++) {
- iglob = ipt + i;
- exact(iglob, jglob, k, u000ijk);
- for (m=1; m<=5; m++) {
- tmp = ( u000ijk(m) - u(m,i,j,k) );
- dummy(m) = dummy(m) + tmp * tmp;
- }
- }
- }
- // compute the global sum of individual contributions to dot product.
- RCCE_allreduce((char*)dummy, (char*)errnm, 5, RCCE_DOUBLE, RCCE_SUM, RCCE_COMM_WORLD);
- for (m=1; m<=5; m++) {
- errnm(m) = sqrt ( errnm(m) / ( (nx0-2)*(ny0-2)*(nz0-2) ) );
- }
- return;
- }
-
|