| 340 | } |
| 341 | |
| 342 | std::string RedzoneCheckStatus::RedzoneFailureMsg() const { |
| 343 | return absl::StrFormat( |
| 344 | "Redzone mismatch in %s redzone of buffer %p at offset %d; " |
| 345 | "expected %08x but was %08x.", |
| 346 | buffer_name, user_buffer_address, offset, expected_value, actual_value); |
| 347 | } |
| 348 | |
| 349 | } // namespace cuda |
| 350 | } // namespace stream_executor |
no outgoing calls
no test coverage detected