operator==

Function Usage

Determines whether formats are the same.

Prototype

1
bool operator==(const StorageFormat &other) const

Parameters

Parameter

Input/Output

Description

other

Input

Another format

Returns

The value true indicates that the formats are the same, and the value false indicates that the formats are different.

Constraints

None

Examples

1
2
3
4
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_same_fmt = format == another_format; // false