- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for attr_size (0.04 sec)
-
tensorflow/c/c_api.cc
LIST_CASE(tensor, TF_ATTR_FUNC); #undef LIST_CASE // All lists empty, determine the type from the OpDef. if (metadata.list_size == 0) { for (int i = 0; i < oper->node.op_def().attr_size(); ++i) { const auto& a = oper->node.op_def().attr(i); if (a.name() != attr_name) continue; const string& typestr = a.type(); if (typestr == "list(string)") {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
src/archive/zip/reader.go
for len(fieldBuf) >= 4 { // need at least tag and size attrTag := fieldBuf.uint16() attrSize := int(fieldBuf.uint16()) if len(fieldBuf) < attrSize { continue parseExtras } attrBuf := fieldBuf.sub(attrSize) if attrTag != 1 || attrSize != 24 { continue // Ignore irrelevant attributes } const ticksPerSecond = 1e7 // Windows timestamp resolution
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0)