| 57 | |
| 58 | int Depth() const { return IntegralDivideRoundUp(channels_, 4); } |
| 59 | int4 GetSizeWithDepth() const { |
| 60 | return int4(width_, height_, channels_, |
| 61 | IntegralDivideRoundUp(channels_, 4)); |
| 62 | } |
| 63 | cl_mem GetMemoryPtr() const { return memory_; } |
| 64 | |
| 65 | Status WriteDataBHWC(absl::Span<const float> in, CLCommandQueue* queue); |
no test coverage detected