|
Zoltan2
|
00001 // @HEADER 00002 // 00003 // *********************************************************************** 00004 // 00005 // Zoltan2: A package of combinatorial algorithms for scientific computing 00006 // Copyright 2012 Sandia Corporation 00007 // 00008 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00009 // the U.S. Government retains certain rights in this software. 00010 // 00011 // Redistribution and use in source and binary forms, with or without 00012 // modification, are permitted provided that the following conditions are 00013 // met: 00014 // 00015 // 1. Redistributions of source code must retain the above copyright 00016 // notice, this list of conditions and the following disclaimer. 00017 // 00018 // 2. Redistributions in binary form must reproduce the above copyright 00019 // notice, this list of conditions and the following disclaimer in the 00020 // documentation and/or other materials provided with the distribution. 00021 // 00022 // 3. Neither the name of the Corporation nor the names of the 00023 // contributors may be used to endorse or promote products derived from 00024 // this software without specific prior written permission. 00025 // 00026 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00027 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00028 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00029 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00030 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00031 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00032 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00033 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00034 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00035 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00036 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00037 // 00038 // Questions? Contact Karen Devine (kddevin@sandia.gov) 00039 // Erik Boman (egboman@sandia.gov) 00040 // Siva Rajamanickam (srajama@sandia.gov) 00041 // 00042 // *********************************************************************** 00043 // 00044 // @HEADER 00045 00057 #ifndef _ZOLTAN2_STANDARDS_HPP_ 00058 #define _ZOLTAN2_STANDARDS_HPP_ 00059 00060 #include <Zoltan2_Version.hpp> 00061 00063 // Generated by CMake 00064 #include <Zoltan2_config.h> 00065 00067 // Omit time consuming actions? 00068 00069 #ifdef Z2_OMIT_ALL_OPTIONAL_ACTIONS 00070 #define Z2_OMIT_ALL_STATUS_MESSAGES 00071 #define Z2_OMIT_ALL_PROFILING 00072 #define Z2_OMIT_ALL_ERROR_CHECKING 00073 #endif 00074 00076 // Frequently used Trilinos symbols 00077 00078 #include <Teuchos_RCP.hpp> 00079 #include <Teuchos_Array.hpp> 00080 #include <Teuchos_Tuple.hpp> 00081 #include <Teuchos_ArrayRCP.hpp> 00082 #include <Teuchos_ArrayView.hpp> 00083 #include <Teuchos_ParameterList.hpp> 00084 #include <Teuchos_ParameterEntry.hpp> 00085 #include <Teuchos_DefaultComm.hpp> 00086 #include <Teuchos_Comm.hpp> 00087 #include <Teuchos_CommHelpers.hpp> 00088 00089 namespace Zoltan2{ 00090 00091 using Teuchos::ENull; 00092 using Teuchos::RCP; 00093 using Teuchos::rcp; 00094 using Teuchos::rcp_const_cast; 00095 using Teuchos::rcp_implicit_cast; 00096 using Teuchos::rcp_dynamic_cast; 00097 using Teuchos::Array; 00098 using Teuchos::Tuple; 00099 using Teuchos::ArrayRCP; 00100 using Teuchos::arcp_const_cast; 00101 using Teuchos::arcp_reinterpret_cast; 00102 using Teuchos::arcp; 00103 using Teuchos::ArrayView; 00104 using Teuchos::av_const_cast; 00105 #ifdef HAVE_ZOLTAN2_MPI 00106 using Teuchos::MpiComm; 00107 #endif 00108 using Teuchos::Comm; 00109 using Teuchos::SerialComm; 00110 using Teuchos::DefaultComm; 00111 using Teuchos::CommRequest; 00112 using Teuchos::ParameterList; 00113 using Teuchos::ParameterEntry; 00114 using Teuchos::reduceAll; 00115 using Teuchos::gatherAll; 00116 00117 typedef size_t global_size_t; 00118 00119 } 00120 00122 // Our data types 00123 // Prepend API types with zoltan2_. 00125 00127 // For debugging 00129 00130 #define HELLO 00131 //#define HELLO printf("HELLO from %s:%i\n", __FILE__, __LINE__); // Turn on for debug 00132 00134 // Internal macros and methods 00136 00137 #include <Zoltan2_Exceptions.hpp> 00138 00140 // Until Kokkos node types are supported, use default 00142 00143 #include <Kokkos_DefaultNode.hpp> 00144 00145 namespace Zoltan2{ 00146 typedef KokkosClassic::DefaultNode::DefaultNodeType default_node_t; 00147 } 00148 00149 #endif
1.7.6.1