struct dnnl::pooling_v2_forward

Overview

Pooling v2 (dilated pooling) forward propagation primitive. More…

#include <dnnl.hpp>

struct pooling_v2_forward: public dnnl::primitive
{
    // structs

    struct desc;
    struct primitive_desc;

    // construction

    pooling_v2_forward();
    pooling_v2_forward(const primitive_desc& pd);
};

Inherited Members

public:
    // enums

    enum kind;

    // methods

    handle<T, traits>& operator = (const handle<T, traits>&);
    handle<T, traits>& operator = (handle<T, traits>&&);
    void reset(T t, bool weak = false);
    T get(bool allow_empty = false) const;
    operator T () const;
    operator bool () const;
    bool operator == (const handle<T, traits>& other) const;
    bool operator != (const handle& other) const;
    const_dnnl_primitive_desc_t get_primitive_desc() const;
    kind get_kind() const;
    void execute(const stream& astream, const std::unordered_map<int, memory>& args) const;
    handle();
    handle();
    handle();
    handle();

Detailed Documentation

Pooling v2 (dilated pooling) forward propagation primitive.

Construction

pooling_v2_forward()

Default constructor. Produces an empty object.

pooling_v2_forward(const primitive_desc& pd)

Constructs a pooling v2 (dilated pooling) forward propagation primitive.

Parameters:

pd

Primitive descriptor for a pooling v2 (dilated pooling) forward propagation primitive.