struct ov::streams::Num

Overview

Class to represent number of streams in streams executor. More…

#include <properties.hpp>

struct Num
{
    // typedefs

    typedef std::tuple<int32_t> Base;

    // fields

    int32_t num = 0;

    // construction

    Num();
    Num(const int32_t num_);

    // methods

    constexpr operator int32_t () const;
};

Detailed Documentation

Class to represent number of streams in streams executor.

Typedefs

typedef std::tuple<int32_t> Base

NumStreams is representable as int32_t.