Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for node_size (0.28 sec)

  1. cluster/gce/config-test.sh

    export GCE_API_ENDPOINT=${KUBE_GCE_API_ENDPOINT:-}
    ZONE=${KUBE_GCE_ZONE:-us-central1-b}
    export REGION=${ZONE%-*}
    RELEASE_REGION_FALLBACK=${RELEASE_REGION_FALLBACK:-false}
    REGIONAL_KUBE_ADDONS=${REGIONAL_KUBE_ADDONS:-true}
    NODE_SIZE=${NODE_SIZE:-e2-standard-2}
    NUM_NODES=${NUM_NODES:-3}
    NUM_WINDOWS_NODES=${NUM_WINDOWS_NODES:-0}
    MASTER_SIZE=${MASTER_SIZE:-e2-standard-$(get-master-size)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

    export GCLOUD=gcloud
    ZONE=${KUBE_GCE_ZONE:-us-central1-b}
    export REGION=${ZONE%-*}
    RELEASE_REGION_FALLBACK=${RELEASE_REGION_FALLBACK:-false}
    REGIONAL_KUBE_ADDONS=${REGIONAL_KUBE_ADDONS:-true}
    NODE_SIZE=${NODE_SIZE:-e2-standard-2}
    NUM_NODES=${NUM_NODES:-3}
    NUM_WINDOWS_NODES=${NUM_WINDOWS_NODES:-0}
    MASTER_SIZE=${MASTER_SIZE:-e2-standard-$(get-master-size)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

      return absl::OkStatus();
    }
    
    // Sorts control inputs of a graphdef so that they are deterministically
    // ordered.
    void SortControlInputs(GraphDef* gdef) {
      int64_t num_nodes = gdef->node_size();
      for (int64_t i = 0; i < num_nodes; ++i) {
        NodeDef* node = gdef->mutable_node(i);
        // Stable sort control inputs and leave the order of data inputs unchanged.
        std::stable_sort(node->mutable_input()->begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho.go

    // (as it depends on the rest of the file).
    func machoCodeSigSym(ctxt *Link, codeSize int64) loader.Sym {
    	ldr := ctxt.loader
    	cs := ldr.CreateSymForUpdate(".machocodesig", 0)
    	if !ctxt.NeedCodeSign() || ctxt.IsExternal() {
    		return cs.Sym()
    	}
    	sz := codesign.Size(codeSize, "a.out")
    	cs.Grow(sz)
    	cs.SetSize(sz)
    	return cs.Sym()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    	// At entry, r12 holds the address of the symbol resolver stub
    	// for the target routine and the argument registers hold the
    	// arguments for the target routine.
    	//
    	// PC-rel offsets are computed once the final codesize of the
    	// resolver is known.
    	//
    	// This stub is PIC, so first get the PC of label 1 into r11.
    	glink.AddUint32(ctxt.Arch, OP_MFLR_R0) // mflr r0
    	glink.AddUint32(ctxt.Arch, OP_BCL_NIA) // bcl 20,31,1f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    Status DiagnoseMultipleConcreteFunctions(const SavedObjectGraph& object_graph,
                                             const ObjectNames& object_names) {
      for (int node_id = 0; node_id < object_graph.nodes_size(); node_id++) {
        const SavedObject& object = object_graph.nodes(node_id);
        if (object_names.GetExportedNames(node_id).empty()) {
          continue;
        }
        if (object.kind_case() == SavedObject::kFunction) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. RELEASE.md

                    methods `tensors_size()` and `tensor(int)`.
                *   Uses of the non-const overload of `nodes_and_registration` can
                    be replaced by calling the existing methods `nodes_size()` and
                    `context()`, and then calling the `GetNodeAndRegistration`
                    method in the `TfLiteContext` returned by `context()`.
        *   NNAPI
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top