Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,635 for Koop (0.04 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    operations in the while loop body are dependent on which inputs, it captures
    inter iteration parallelism in while loop. Control dependencies on the other
    hand create a barrier at the end of while loop body thus blocking any
    parallelism across iterations.
    
    For example, the following while loop body has a `%barrier` at the end.
    Although there is no data/control dependency between `tf.AssignVariableOp`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    package ssa
    
    import (
    	"fmt"
    )
    
    type loop struct {
    	header *Block // The header node of this (reducible) loop
    	outer  *loop  // loop containing this loop
    
    	// By default, children, exits, and depth are not initialized.
    	children []*loop  // loops nested directly within this loop. Initialized by assembleChildren().
    	exits    []*Block // exits records blocks reached by exits from this loop. Initialized by findExits().
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/looprotate.go

    package ssa
    
    // loopRotate converts loops with a check-loop-condition-at-beginning
    // to loops with a check-loop-condition-at-end.
    // This helps loops avoid extra unnecessary jumps.
    //
    //	 loop:
    //	   CMPQ ...
    //	   JGE exit
    //	   ...
    //	   JMP loop
    //	 exit:
    //
    //	  JMP entry
    //	loop:
    //	  ...
    //	entry:
    //	  CMPQ ...
    //	  JLT loop
    func loopRotate(f *Func) {
    	loopnest := f.loopnest()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/while_gradients.cc

      for (int i = 0; i < n; ++i) result.push_back(ToOutput(output_tensors[i]));
      return result;
    }
    
    // The backprop loop counter and main backprop loop run in their own execution
    // frame (conceptually, the main forward loop and forward loop counter run
    // together in a frame, then the backprop loop counter and backprop loop run
    // together in a different frame). This returns the frame name to use for the
    // backprop while loops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

    // CHECK-LABEL: func @preserve_unreachable_tpu_replicate_metadata
    func.func @preserve_unreachable_tpu_replicate_metadata() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
        // CHECK: "tf.NoOp"
        %1 = tf_executor.island wraps "tf.NoOp"() : () -> ()
        // CHECK: "tf.TPUReplicateMetadata"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            code << [
                    "id('noop')",
                    "id 'noop'",
                    "id('noop').version('bar')",
                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // Package loopclosure defines an Analyzer that checks for references to
    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. test/escape_goto.go

    package escape
    
    var x bool
    
    func f1() {
    	var p *int
    loop:
    	if x {
    		goto loop
    	}
    	// BAD: We should be able to recognize that there
    	// aren't any more "goto loop" after here.
    	p = new(int) // ERROR "escapes to heap"
    	_ = p
    }
    
    func f2() {
    	var p *int
    	if x {
    	loop:
    		goto loop
    	} else {
    		p = new(int) // ERROR "does not escape"
    	}
    	_ = p
    }
    
    func f3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 677 bytes
    - Viewed (0)
  9. test/fixedbugs/bug070.go

    func main() {
    	var i, k int
    	var r string
    outer:
    	for k = 0; k < 2; k++ {
    		r += fmt.Sprintln("outer loop top k", k)
    		if k != 0 {
    			panic("k not zero")
    		} // inner loop breaks this one every time
    		for i = 0; i < 2; i++ {
    			if i != 0 {
    				panic("i not zero")
    			} // loop breaks every time
    			r += fmt.Sprintln("inner loop top i", i)
    			if true {
    				r += "do break\n"
    				break outer
    			}
    		}
    	}
    	r += "broke\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 715 bytes
    - Viewed (0)
  10. tensorflow/cc/ops/while_loop.h

        BodyGraphBuilderFn;
    
    // Constructs a while loop.
    //
    // Arguments:
    // * scope: used to construct the while loop.
    // * inputs: the initial values of the loop variables. Must be non-empty.
    // * cond: a function that builds the condition graph of the loop. Takes the
    //     current loop variables as inputs and returns a scalar boolean Output
    //     indicating whether the loop should continue.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top