Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 688 for restoreAt (0.32 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_restore_pruning.mlir

      // CHECK-NOT: tf.RestoreV2
      %0 = "tf.RestoreV2"(%cst, %cst_1, %cst_0): (tensor<!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<3x1xf32>
      %1 = "tf.VarHandleOp"() <{container = "", shared_name = "y"}> : () -> tensor<!tf_type.resource<tensor<3x1xf32>>>
      return
    }
    
    
    // CHECK-LABEL: func.func @used_restore_remains
    func.func @used_restore_remains() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 22:02:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_restore_splitting.mlir

      // CHECK: %[[FOO_NAME:.*]] = "tf.Const"() <{value = dense<"foo"> : tensor<1x!tf_type.string>}>
      // CHECK: %[[FOO:.*]] = "tf.RestoreV2"(%[[ARG0]], %[[FOO_NAME]], {{.*}})
    
      // CHECK: %[[BAR_NAME:.*]] = "tf.Const"() <{value = dense<"bar"> : tensor<1x!tf_type.string>}>
      // CHECK: %[[BAR:.*]] = "tf.RestoreV2"(%[[ARG0]], %[[BAR_NAME]], {{.*}})
    
      // CHECK: return %[[FOO]], %[[BAR]]
      func.return %2#0, %2#1 : tensor<*xf32>, tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 05 23:51:03 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

        LOG(INFO) << "No session initializer function with type 'restore_op'. "
                     "RestoreV2 op will not be created.";
        return;
      }
    
      std::vector<TF::VarHandleOp> target_var_handle_ops =
          CollectVariableOps(session_init_func);
      if (target_var_handle_ops.empty()) {
        LOG(INFO) << "There are no VarHandleOps to restore. RestoreV2 op will not "
                     "be created.";
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_restore_merging.mlir

    // CHECK-LABEL: func @single_restore_group
    // CHECK-SAME:    (%[[ARG0:.*]]: {{.*}})
    func.func @single_restore_group(%arg0: tensor<!tf_type.string>) -> (tensor<*xf32>, tensor<*xi32>) {
      %0 = "tf.Const"() {value = dense<"foo"> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
      %1 = "tf.Const"() {value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 18:22:47 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    		//nolint:staticcheck // ST1005 user-facing error message
    		return nil, fmt.Errorf("could not restore state from checkpoint: %v, please drain this node and delete the memory manager checkpoint file %q before restarting Kubelet",
    			err, filepath.Join(stateDir, checkpointName))
    	}
    
    	return stateCheckpoint, nil
    }
    
    // restores state from a checkpoint and creates it if it doesn't exist
    func (sc *stateCheckpoint) restoreState() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            override fun toTracking(): Tracking {
                throw IllegalStateException("Cannot track state because it was restored")
            }
    
            override fun toRestoring(): Restoring {
                throw IllegalStateException("Cannot restore state because it was already restored")
            }
    
            fun loadFrom(storedState: CachedEnvironmentState) {
                if (storedState.cleared) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/runtime/mkpreempt.go

    type regPos struct {
    	pos int
    
    	saveOp    string
    	restoreOp string
    	reg       string
    
    	// If this register requires special save and restore, these
    	// give those operations with a %d placeholder for the stack
    	// offset.
    	save, restore string
    }
    
    func (l *layout) add(op, reg string, size int) {
    	l.regs = append(l.regs, regPos{saveOp: op, restoreOp: op, reg: reg, pos: l.stack})
    	l.stack += size
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_s390x.S

    	ld      %f14, 48(%r15)
    	ld      %f15, 56(%r15)
    
    	/* de-allocate stack frame */
    	la      %r15, 64(%r15)
    
    	/* restore general purpose registers */
    	lmg     %r6, %r15, 48(%r15)
    
    	br      %r14 /* restored by lmg */
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",%progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      are multiple output tensors from one node). Since Retval nodes are not used in
      SavedModel, this function removes them and restore the names to the actual
      output tensors.
    
      Args:
        graph_def: the converted GraphDef.
    
      Returns:
        The GraphDef with Retval nodes removed and output tensor names restored.
      """
      output_renaming_map = {}
      with session.Session(graph=ops.Graph()):
        importer.import_graph_def(graph_def, name='')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            assertTrue(enabledOnOtherThread)
        }
    
        @Test
        fun `input tracking is restored to the state when it was disabled`() {
            val state = InputTrackingState()
            state.disableForCurrentThread() // <1>
            state.disableForCurrentThread() // <2>
    
            state.restoreForCurrentThread() // Revert call at <2>, restore to "disabled" state set by call at <1>
            assertFalse(state.isEnabledForCurrentThread())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top