// Copyright (c) 2017 Graphcore Ltd. All rights reserved.
/** \file
 *  Definitions for pooling operations.
 */

#ifndef popnn_PoolingDef_hpp
#define popnn_PoolingDef_hpp

namespace popnn {

/// Pooling types
enum class PoolingType { MAX, AVG, SUM };

} // End namespace popnn.

#endif // popnn_PoolingDef_hpp
