Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for live_out (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    // live_in[5] = use[5]   U (live_out[5] - def[5])
    //            = {%3}     U ({∅} - {∅})            = {%3}
    // live_in[4] = use[4]   U (live_out[4] - def[4])
    //            = {%1, %2} U ({%3} - {%3})          = {%1, %2}
    // live_in[3] = use[3]   U (live_out[3] - def[3])
    //            = {%0, %1} U ({%1, %2} - {%2})      = {%0, %1}
    // live_in[2] = use[2]   U (live_out[2] - def[2])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

      return_builder.create<tf_device::ReturnOp>(return_builder.getUnknownLoc(),
                                                 live_outs);
    
      llvm::SmallVector<Type, 4> live_out_types;
      live_out_types.reserve(live_outs.size());
      for (Value v : live_outs) {
        live_out_types.emplace_back(v.getType());
      }
    
      tf_device::LaunchOp launch_op = builder->create<tf_device::LaunchOp>(
          builder->getUnknownLoc(), builder->getStringAttr(c.target),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    
    			if !be.liveout.Eq(newliveout) {
    				change = true
    				be.liveout.Copy(newliveout)
    			}
    
    			// A variable is live on input to this block
    			// if it is used by this block, or live on output from this block and
    			// not set by the code in this block.
    			//
    			// in[b] = uevar[b] \cup (out[b] \setminus varkill[b])
    			newlivein.AndNot(be.liveout, be.varkill)
    			be.livein.Or(newlivein, be.uevar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: %[[SIZE:.*]] = "tf.Const"() <{value = dense<5> : tensor<i32>}> : () -> tensor<i32>
      %size_out = "tf.TensorArraySizeV3"(%ta#0, %write) : (tensor<!tf_type.resource>, tensor<f32>) -> tensor<i32>
      // CHECK: return %[[SIZE]] : tensor<i32>
      func.return %size_out : tensor<i32>
    }
    
    // -----
    
    // Test inferring shape from the first scatter.
    
    // CHECK-LABEL: func @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	linesIn := strings.Split(f.Preamble, "\n")
    	linesOut := make([]string, 0, len(linesIn))
    	f.NoCallbacks = make(map[string]bool)
    	f.NoEscapes = make(map[string]bool)
    	for _, line := range linesIn {
    		l := strings.TrimSpace(line)
    		if len(l) < 5 || l[:4] != "#cgo" || !unicode.IsSpace(rune(l[4])) {
    			linesOut = append(linesOut, line)
    		} else {
    			linesOut = append(linesOut, "")
    
    			// #cgo (nocallback|noescape) <function name>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top