Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rstore (0.2 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    	// match: (Move {t1} [n] dst1 src1 store:(Store {t2} op:(OffPtr [o2] dst2) _ mem))
    	// cond: isSamePtr(dst1, dst2) && store.Uses == 1 && n >= o2 + t2.Size() && disjoint(src1, n, op, t2.Size()) && clobber(store)
    	// result: (Move {t1} [n] dst1 src1 mem)
    	for {
    		n := auxIntToInt64(v.AuxInt)
    		t1 := auxToType(v.Aux)
    		dst1 := v_0
    		src1 := v_1
    		store := v_2
    		if store.Op != OpStore {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Int64).Load", Method, 19},
    		{"(*Int64).Store", Method, 19},
    		{"(*Int64).Swap", Method, 19},
    		{"(*Pointer).CompareAndSwap", Method, 19},
    		{"(*Pointer).Load", Method, 19},
    		{"(*Pointer).Store", Method, 19},
    		{"(*Pointer).Swap", Method, 19},
    		{"(*Uint32).Add", Method, 19},
    		{"(*Uint32).CompareAndSwap", Method, 19},
    		{"(*Uint32).Load", Method, 19},
    		{"(*Uint32).Store", Method, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. RELEASE.md

        *   Provided a new `experimental_skip_saver` argument which, if specified, will suppress the addition of `SavedModel`-native save and restore ops to the `SavedModel`, for cases where users already build custom save/restore ops and checkpoint formats for the model being saved, and the creation of the SavedModel-native save/restore ops simply cause longer model serialization times.
    
    * Add ops to `tensorflow.raw_ops` that were missing.
    
    * `tf.CheckpointOptions`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    V1 might be deprecated and eventually removed.
    
    By default, restores the named tensors in full.  If the caller wishes to restore
    specific slices of stored tensors, "shape_and_slices" should be non-empty
    strings and correspondingly well-formed.
    
    Callers must ensure all the named tensors are indeed stored in the checkpoint.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpARM64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 8 && !t.IsFloat()
    	// result: (MOVQstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 8 && !t.IsFloat()) {
    			break
    		}
    		v.reset(OpAMD64MOVQstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
                "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
                "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top