operator!=
Description
Determines whether formats are different.
Prototype
bool operator!=(const StorageFormat &other) const
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
other |
Input |
Another format |
Returns
true indicates that the formats are different.
Restrictions
None
Example
ExpandDimsType dim_type("1100");
StorageFormat format(ge::Format::FORMAT_NCHW, ge::Format::FORMAT_C1HWNC0, dim_type);
StorageFormat another_format(ge::Format::FORMAT_NCHW, ge::Format::FORMAT_NC, dim_type);
bool is_diff_fmt = format != another_format; // true
Parent topic: StorageFormat