Type

#include <poplar/Type.hpp>

Defines

POPLAR_DECLARE_EQUIV_TYPE(T1, T2)
template<>
struct hash<poplar::Type>

Public Functions

inline size_t operator()(const poplar::Type &t) const
namespace poplar

Poplar classes and functions.

Functions

inline std::ostream &operator<<(std::ostream &os, const Type &t)

Variables

Type BOOL

Device type: bool

Type CHAR

Device type: char

Type UNSIGNED_CHAR

Device type: unsigned char

Type SIGNED_CHAR

Device type: signed char

Type UNSIGNED_SHORT

Device type: unsigned short

Type SHORT

Device type: short

Type UNSIGNED_INT

Device type: unsigned int

Type INT

Device type: int

Type UNSIGNED_LONG

Device type: unsigned long

Type LONG

Device type: long

Type UNSIGNED_LONGLONG

Device type: unsigned long long

Type LONGLONG

Device type: long long

Type QUARTER

Device type: quarter (8-bit float)

Type QUARTER_METADATA

Type to represent the format of 8-bit floats

Type HALF

Device type: half (16-bit float)

Type FLOAT

Device type: float (32-bit float)

template<typename T>
struct equivalent_device_type
#include <Type.hpp>

Template structure to relate a host type to a device type.

This structure is specialized to allow a program to relate a host type to a corresponding device type. For example::

poplar::Type t = equivalent_device_type<int>().value;

class Type
#include <Type.hpp>

Class representing device data types.

These are used to define types for Poplar variables and tensors using Graph::addVariable() and constants using Graph::addConstant(). Poplar variables and constants may be connected to edges of Poplar vertices using Graph::addVertex() and Graph::connect(). All fields of a vertex must be one of the supported device data types. See Graph::connect() and the VertexRef class to connect vertex fields.

The following types are not supported:

  • LONG

  • UNSIGNED_LONG

  • DOUBLE

For supported types, the sizes on the IPU are:

  • BOOL: 1 byte

  • CHAR: 1 byte (signed)

  • SIGNED_CHAR: 1 byte

  • UNSIGNED_CHAR: 1 byte

  • SHORT: 2 bytes

  • SIGNED_SHORT: 2 bytes

  • UNSIGNED_SHORT: 2 bytes

  • INT: 4 bytes

  • SIGNED_INT: 4 bytes

  • SIGNED: 4 bytes

  • UNSIGNED_INT: 4 bytes

  • UNSIGNED: 4 bytes

  • LONGLONG: 8 bytes

  • UNSIGNED_LONGLONG: 8 bytes

  • QUARTER: 1 byte

  • HALF: 2 bytes

  • FLOAT: 4 bytes

Public Functions

Type()
~Type()
Type(const Type &other)
Type(Type &&other) noexcept
Type &operator=(const Type &other)
Type &operator=(Type &&other) noexcept
StringRef toString() const

Get a string representation on a type.

Returns

A string representation of the type.

bool operator==(const Type &other) const
inline bool operator!=(const Type &other) const
bool operator<(const Type &other) const
Type(SSOPointer<core::Type>)
const core::Type &getImpl() const
std::size_t hash() const
bool isFloatingPoint() const
bool requiresMetadata() const

Private Members

SSOPointer<core::Type> impl
namespace core
namespace std
template<> Type >

Public Functions

inline size_t operator()(const poplar::Type &t) const