|
RTOpPack: Extra C/C++ Code for Vector Reduction/Transformation Operators Version of the Day
|
00001 /* 00002 // @HEADER 00003 // *********************************************************************** 00004 // 00005 // Moocho: Multi-functional Object-Oriented arCHitecture for Optimization 00006 // Copyright (2003) Sandia Corporation 00007 // 00008 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00009 // license for use of this work by or on behalf of the U.S. Government. 00010 // 00011 // This library is free software; you can redistribute it and/or modify 00012 // it under the terms of the GNU Lesser General Public License as 00013 // published by the Free Software Foundation; either version 2.1 of the 00014 // License, or (at your option) any later version. 00015 // 00016 // This library is distributed in the hope that it will be useful, but 00017 // WITHOUT ANY WARRANTY; without even the implied warranty of 00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00019 // Lesser General Public License for more details. 00020 // 00021 // You should have received a copy of the GNU Lesser General Public 00022 // License along with this library; if not, write to the Free Software 00023 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00024 // USA 00025 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 00026 // 00027 // *********************************************************************** 00028 // @HEADER 00029 */ 00030 00031 #include <math.h> 00032 00033 /* ///////////////////////////////////////////// */ 00034 /* RTOp_TOp_max_abs_vec_scalar.c */ 00035 00036 /* */ 00037 /* Note: This file was created automatically by 'new_rtop.pl' */ 00038 /* on 7/13/2002 at 13:48 */ 00039 /* */ 00040 00041 #define max(a,b) ( (a) > (b) ? (a) : (b) ) 00042 #define min(a,b) ( (a) < (b) ? (a) : (b) ) 00043 00044 #include "RTOp_TOp_max_abs_vec_scalar.h" 00045 #include "RTOp_obj_value_vtbl.h" /* vtbl for operator object instance data */ 00046 00047 /* Implementation functions for RTOp_RTOp */ 00048 00049 static int RTOp_TOp_max_abs_vec_scalar_apply_op( 00050 const struct RTOp_RTOp_vtbl_t* vtbl, const void* obj_data 00051 , const int num_vecs, const struct RTOp_SubVector vecs[] 00052 , const int num_targ_vecs, const struct RTOp_MutableSubVector targ_vecs[] 00053 , RTOp_ReductTarget reduct_obj ) 00054 { 00055 /* */ 00056 /* Declare local variables */ 00057 /* */ 00058 00059 /* Access to the operator object instance data */ 00060 RTOp_value_type *min_ele = (RTOp_value_type*)obj_data; 00061 /* Vector data */ 00062 RTOp_index_type sub_dim; 00063 /* z0 */ 00064 RTOp_value_type *z0_val; 00065 ptrdiff_t z0_val_s; 00066 00067 /* Automatic temporary variables */ 00068 register RTOp_index_type k; 00069 00070 /* */ 00071 /* Validate the input */ 00072 /* */ 00073 if( num_vecs != 0 || ( num_vecs && vecs == NULL ) ) 00074 return RTOp_ERR_INVALID_NUM_VECS; 00075 if( num_targ_vecs != 1 || ( num_targ_vecs && targ_vecs == NULL ) ) 00076 return RTOp_ERR_INVALID_NUM_TARG_VECS; 00077 assert(obj_data); 00078 00079 /* */ 00080 /* Get pointers to data */ 00081 /* */ 00082 sub_dim = targ_vecs[0].sub_dim; 00083 /* z0 */ 00084 z0_val = targ_vecs[0].values; 00085 z0_val_s = targ_vecs[0].values_stride; 00086 00087 /* */ 00088 /* Apply the operator: */ 00089 /* */ 00090 for( k = 0; k < sub_dim; ++k, z0_val += z0_val_s ) 00091 { 00092 /* Element-wise transformation */ 00093 (*z0_val) = max(fabs((*z0_val)),(*min_ele)); 00094 } 00095 00096 return 0; /* success? */ 00097 } 00098 00099 /* Virtual function table */ 00100 const struct RTOp_RTOp_vtbl_t RTOp_TOp_max_abs_vec_scalar_vtbl = 00101 { 00102 &RTOp_obj_value_vtbl 00103 ,&RTOp_obj_null_vtbl 00104 ,"TOp_max_abs_vec_scalar" 00105 ,NULL 00106 ,RTOp_TOp_max_abs_vec_scalar_apply_op 00107 ,NULL 00108 ,NULL 00109 }; 00110 00111 /* Class specific functions */ 00112 00113 int RTOp_TOp_max_abs_vec_scalar_construct( RTOp_value_type min_ele, struct RTOp_RTOp* op ) 00114 { 00115 #ifdef RTOp_DEBUG 00116 assert(op); 00117 #endif 00118 op->obj_data = NULL; 00119 op->vtbl = &RTOp_TOp_max_abs_vec_scalar_vtbl; 00120 op->vtbl->obj_data_vtbl->obj_create(NULL,NULL,&op->obj_data); 00121 return RTOp_TOp_max_abs_vec_scalar_init(min_ele,op); 00122 } 00123 00124 int RTOp_TOp_max_abs_vec_scalar_destroy( struct RTOp_RTOp* op ) 00125 { 00126 op->vtbl->obj_data_vtbl->obj_free(NULL,NULL,&op->obj_data); 00127 op->obj_data = NULL; 00128 op->vtbl = NULL; 00129 return 0; 00130 } 00131 00132 int RTOp_TOp_max_abs_vec_scalar_init( RTOp_value_type min_ele, struct RTOp_RTOp* op ) 00133 { 00134 RTOp_value_type *ptr_min_ele = (RTOp_value_type*)op->obj_data; 00135 *ptr_min_ele = min_ele; 00136 return 0; 00137 } 00138
1.7.4