Home | History | Annotate | Download | only in verbs

Lines Matching refs:checksum

913 static uint64_t Checksum(Device* device, const DeviceContext* device_context,
915 uint64 checksum = 0;
921 checksum = (device_context != nullptr)
922 ? GPUUtil::Checksum(device, device_context, in)
923 : GPUUtil::Checksum(in);
927 checksum = Hash64(s.c_str(), s.size(), 0);
929 return checksum;
936 << ": Checksum: " << std::hex << " Expected = 0x" << expected
940 // Checksum failed. There is one case where this is allowed - if the
942 // always postpones the Tensor response in order to send a checksum message,
950 LOG(FATAL) << "[" << msg << "]: Checksum validation failed for request #"
1052 // Always send a meta data message with the source checksum
1054 checksum_ = Checksum(src_dev_, send_args.device_context, in);
1327 // checksum
1389 // checksum
1499 // Validate checksum
1500 // Unfortunately we can't always do a Checksum directly on the result tensor.
1504 uint64_t checksum = (proxy_tensor_ != nullptr)
1505 ? Checksum(nullptr, nullptr, *proxy_tensor_)
1506 : Checksum(dst_dev_, recv_args_.device_context, val);
1507 ValidateChecksum(checksum_, checksum, val, index_, key_, "RDMA");