Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,246 for moveWB (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

          parallel_execute.getOperation()->isBeforeInBlock(resource_handle_op))
        return nullptr;
    
      return assign_var;
    }
    
    // Finds AssignVariableOps that can be moved into a parallel_execute region and
    // moves them. Leftover parallel_execute results that were used by the
    // such AssignVariableOp are also pruned.
    void SinkResourceWritesIntoParallelExecute(
        tf_device::ParallelExecuteOp parallel_execute) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/internal/SymbolHider.java

            public DataReader(byte[] dataBytes) {
                this.dataBytes = dataBytes;
            }
    
            public int getPosition() {
                return position;
            }
    
            public void moveTo(int position) {
                this.position = position;
            }
    
            public int readByte() {
                return Byte.toUnsignedInt(dataBytes[position++]);
            }
    
            public int readWord() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/runtime/memmove_ppc64x.s

    	STXVL	V0, TGT, TMP
    	RET
    #endif
    lt8:	// Move word if possible
    	CMP BYTES, $4
    	BLT lt4
    	MOVWZ 0(SRC), TMP
    	ADD $-4, BYTES
    	MOVW TMP, 0(TGT)
    	ADD $4, SRC
    	ADD $4, TGT
    lt4:	// Move halfword if possible
    	CMP BYTES, $2
    	BLT lt2
    	MOVHZ 0(SRC), TMP
    	ADD $-2, BYTES
    	MOVH TMP, 0(TGT)
    	ADD $2, SRC
    	ADD $2, TGT
    lt2:	// Move last byte if 1 left
    	CMP BYTES, $1
    	BC 12, 0, LR	// ble lr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. test/solitaire.go

    		}
    	}
    	if n != 1 {
    		center = -1 // no single hole
    	}
    }
    
    var moves int // number of times move is called
    
    // move tests if there is a peg at position pos that can jump over another peg
    // in direction dir. If the move is valid, it is executed and move returns true.
    // Otherwise, move returns false.
    func move(pos, dir int) bool {
    	moves++
    	if board[pos] == '●' && board[pos+dir] == '●' && board[pos+2*dir] == '○' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	// If a move request has been received, move it to the BackoffQ, otherwise move
    	// it to unschedulablePods.
    	for plugin := range rejectorPlugins {
    		metrics.UnschedulableReason(plugin, pInfo.Pod.Spec.SchedulerName).Inc()
    	}
    	if p.moveRequestCycle >= podSchedulingCycle || len(rejectorPlugins) == 0 {
    		// Two cases to move a Pod to the active/backoff queue:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

          tensorflow::XlaCallModuleLoader::Create(
              context, static_cast<int>(op.getVersion()), op.getModule().str(),
              std::move(disabled_checks), std::move(platforms),
              /*num_invocation_args=*/op.getArgs().size(),
              op.getHasTokenInputOutput()));
      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. test/typeparam/listimp2.dir/a.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *List[T]) MoveToFront(e *Element[T]) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. src/compress/bzip2/move_to_front.go

    package bzip2
    
    // moveToFrontDecoder implements a move-to-front list. Such a list is an
    // efficient way to transform a string with repeating elements into one with
    // many small valued numbers, which is suitable for entropy encoding. It works
    // by starting with an initial list of symbols and references symbols by their
    // index into that list. When a symbol is referenced, it's moved to the front
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  9. test/fixedbugs/bug440_64.go

    // run
    
    // Test for 6g register move bug.  The optimizer gets confused
    // about 32- vs 64-bit moves during splitContractIndex.
    
    // Issue 3918.
    
    package main
    
    func main() {
    	const c = 0x123400005678
    	index, offset := splitContractIndex(c)
    	if index != (c&0xffffffff)>>5 || offset != c+1 {
    		println("BUG", index, offset)
    	}
    }
    
    func splitContractIndex(ce uint64) (index uint32, offset uint64) {
    	h := uint32(ce)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 435 bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

            return move.executeMoveOr(moveFailedException -> {
                // On Windows, files left open by the executed work can legitimately prevent an atomic move of the temporary directory
                // In this case we'll try to make a copy of the temporary workspace to another temporary workspace, and move that to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top