| 344 | data_type_(descriptor.data_type) {} |
| 345 | |
| 346 | std::string TensorCodeGenerator::GetDeclaration() const { |
| 347 | return GetTensorDeclaration(storage_type_, name_, access_, data_type_); |
| 348 | } |
| 349 | |
| 350 | std::string TensorCodeGenerator::GetDeclaration(AccessType access_type) const { |
| 351 | return GetTensorDeclaration(storage_type_, name_, access_type, data_type_); |
no test coverage detected