Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for liveouts_ (0.1 sec)

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

    // proper subgraphs.
    class LiveOuts {
     public:
      LiveOuts() = default;
    
      explicit LiveOuts(OperandRange range)
          : liveouts_(range.begin(), range.end()), prev_liveouts_(liveouts_) {}
    
      // Delete the current op from liveouts and moves on to the parent ops.
      void update(Operation& op) {
        for (Value result_value : op.getResults()) {
          liveouts_.remove(result_value);
        }
    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)
Back to top