Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for value_size (0.27 sec)

  1. tensorflow/cc/saved_model/loader_util.cc

        init_op_collection_key = kSavedModelLegacyInitOpKey;
      }
    
      const auto init_op_it = collection_def_map.find(init_op_collection_key);
      if (init_op_it != collection_def_map.end()) {
        if (init_op_it->second.node_list().value_size() != 1) {
          return errors::FailedPrecondition(
              strings::StrCat("Expected exactly one main op in : ", export_dir));
        }
        *init_op_name = init_op_it->second.node_list().value(0);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/c_api.cc

                                              TF_CoordinationServiceAgent* agent,
                                              TF_Status* status) {
      auto* cc_agent = reinterpret_cast<tsl::CoordinationServiceAgent*>(agent);
      absl::Status cc_status = cc_agent->InsertKeyValue(
          std::string_view(key, key_size), std::string_view(value, value_size));
      status->status = cc_status;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/merge_summary_op.cc

                         "Could not parse one of the summary inputs");
            TF_OpKernelContext_Failure(ctx, status.get());
            return;
          }
          for (int v = 0; v < summary_in.value_size(); ++v) {
            // This tag is unused by the TensorSummary op, so no need to check for
            // duplicates.
            const tensorflow::string& tag = summary_in.value(v).tag();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/c_api.h

    TF_CAPI_EXPORT extern bool TF_CoordinationServiceIsInitialized(
        TF_CoordinationServiceAgent* agent);
    
    TF_CAPI_EXPORT extern void TF_CoordinationServiceInsertKeyValue(
        const char* key, int64_t key_size, const char* value, int64_t value_size,
        TF_CoordinationServiceAgent* agent, TF_Status* status);
    
    // Obtains key-value from coordination service agent. The returned `TF_Buffer`
    // is a newly allocated buffer to hold the string key-value, and caller is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/runtime/map_fast64.go

    		for i, k := uintptr(0), b.keys(); i < abi.MapBucketCount; i, k = i+1, add(k, 8) {
    			if *(*uint64)(k) == key && !isEmpty(b.tophash[i]) {
    				return add(unsafe.Pointer(b), dataOffset+abi.MapBucketCount*8+i*uintptr(t.ValueSize))
    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_fast64 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/map_fast32.go

    		for i, k := uintptr(0), b.keys(); i < abi.MapBucketCount; i, k = i+1, add(k, 4) {
    			if *(*uint32)(k) == key && !isEmpty(b.tophash[i]) {
    				return add(unsafe.Pointer(b), dataOffset+abi.MapBucketCount*4+i*uintptr(t.ValueSize))
    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_fast32 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/runtime/map_faststr.go

    						break
    					}
    					continue
    				}
    				if k.str == key.str || memequal(k.str, key.str, uintptr(key.len)) {
    					return add(unsafe.Pointer(b), dataOffset+abi.MapBucketCount*2*goarch.PtrSize+i*uintptr(t.ValueSize))
    				}
    			}
    			return unsafe.Pointer(&zeroVal[0])
    		}
    		// long key, try not to do more comparisons than necessary
    		keymaybe := uintptr(abi.MapBucketCount)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. src/internal/fuzz/mem.go

    	rawInMem bool
    }
    
    // sharedMemSize returns the size needed for a shared memory buffer that can
    // contain values of the given size.
    func sharedMemSize(valueSize int) int {
    	// TODO(jayconrod): set a reasonable maximum size per platform.
    	return int(unsafe.Sizeof(sharedMemHeader{})) + valueSize
    }
    
    // sharedMemTempFile creates a new temporary file of the given size, then maps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. src/runtime/map.go

    		throw("key size wrong")
    	}
    	if t.Elem.Size_ > abi.MapMaxElemBytes && (!t.IndirectElem() || t.ValueSize != uint8(goarch.PtrSize)) ||
    		t.Elem.Size_ <= abi.MapMaxElemBytes && (t.IndirectElem() || t.ValueSize != uint8(t.Elem.Size_)) {
    		throw("elem size wrong")
    	}
    	if t.Key.Align_ > abi.MapBucketCount {
    		throw("key align too big")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

            canonicalized_input_signature.DebugString()));
      }
    
      const TupleValue& args_kwargs_tuple =
          canonicalized_input_signature.tuple_value();
      if (args_kwargs_tuple.values_size() != 2) {
        return absl::FailedPreconditionError(absl::StrCat(
            "SignatureDefFunction's canonicalized_input_signature should be "
            "a tuple of two elements (args, kwargs), but was instead: \n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top