Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 161 for aloop (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Do not convert control outputs to chains in the presence of an op with
    // unknown side effects in the while body.
    // This test checks that loop signatures are unchanged and no control output is
    // erased from while loop body.
    
    // CHECK-LABEL: func @unknown_resource_op_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Chain control outputs of while loop body_
    
    This pass converts the control outputs of a while loop body function to data
    outputs. Thus, inter iteration control dependencies are transformed to
    data dependencies. Since data dependencies can express which particular
    operations in the while loop body are dependent on which inputs, it captures
    inter iteration parallelism in while loop. Control dependencies on the other
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

      // Inputs to the while loop and the function as a whole
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
      TF_Operation* feed2 = Placeholder(func_graph_, s_, "feed2");
    
      // Outputs of the while loop corresponding to the two inputs above
      // The first one will the function's output
      std::vector<TF_Output> outputs;
    
      // Add while loop to func_graph_
      {
        // The inputs to the while loop
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // condition and body computations.  Dependency between them can be created
        // if a special Identity node in the following pattern is clustered in.
        // That is, an Identity node in the loop cond computation is used to drive
        // const nodes consumed by the loop body.  If this Identity node goes into
        // the same cluster with nodes from the loop body, extra dependency is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		{"symlink", true, fmt.Sprintf("%s/inode/symlink/pod-link", tmpDir)},
    		{"loop", false, fmt.Sprintf("%s/inode/symlink/loop", tmpDir)},
    		{"loop", true, fmt.Sprintf("%s/inode/symlink/loop", tmpDir)},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			b := newDefaultBuilder().
    				FilenameParam(false, &FilenameOptions{Recursive: tt.recursive, Filenames: []string{tt.directory}}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // The resources captured for While loop fall into two categories:
      // (a) read-only. These reads can be replaced by a hoisted read created
      //        before the WhileOp (similar to if and case).
      // (b) written: since the value is written in the loop (which can only in
      //        loop body, all these will become loop variables. Since all resource
      //        variables are removed from the loop variabled during
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    type Embed0c Embed0
    
    type Embed0p struct {
    	image.Point
    }
    
    type Embed0q struct {
    	Point
    }
    
    type embed struct {
    	Q int
    }
    
    type Loop struct {
    	Loop1 int `json:",omitempty"`
    	Loop2 int `json:",omitempty"`
    	*Loop
    }
    
    // From reflect test:
    // The X in S6 and S7 annihilate, but they also block the X in S8.S9.
    type S5 struct {
    	S6
    	S7
    	S8
    }
    
    type S6 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    			if err != nil {
    				t.Errorf("error parsing protobuf profile: %v", err)
    			}
    
    			// High-numbered loop-i goroutines imply that every lower-numbered
    			// loop-i goroutine should be present in the profile too.
    			counts := make(map[string]int)
    			for _, s := range p.Sample {
    				label := s.Label[t.Name()+"-loop-i"]
    				if len(label) > 0 {
    					counts[label[0]]++
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Run()
    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      the same. Note that the condition and body regions can implicitly capture
      loop invariant values directly. In canonical form, iteration variables that
      pass through the loop body unmodified are converted to implicitly captured
      references to their values outside the loop.
      }];
    
      let arguments = (ins
        Variadic<AnyTensor>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top