| 42 | } |
| 43 | |
| 44 | void Tensor::UpdateReshapeCount(void) |
| 45 | { |
| 46 | reshaped_count_--; |
| 47 | |
| 48 | if(reshaped_count_ < 0) |
| 49 | { |
| 50 | LOG_ERROR() << "tensor: " << name_ << " has bad reshaped_count: " << ( int )reshaped_count_ << "\n"; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | unsigned int Tensor::GetTotalSize(void) const |
| 55 | { |
no outgoing calls
no test coverage detected