| 56 | TensorStorageType StorageType() const { return storage_type_; } |
| 57 | |
| 58 | int Depth() const { return IntegralDivideRoundUp(channels_, 4); } |
| 59 | int4 GetSizeWithDepth() const { |
| 60 | return int4(width_, height_, channels_, |
| 61 | IntegralDivideRoundUp(channels_, 4)); |
no test coverage detected