Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for entryBlock (0.22 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) entryNewValue0(op ssa.Op, t *types.Type) *ssa.Value {
    	return s.entryBlock().NewValue0(src.NoXPos, op, t)
    }
    
    // entryNewValue0A adds a new value with no arguments and an aux value to the entry block.
    func (s *state) entryNewValue0A(op ssa.Op, t *types.Type, aux ssa.Aux) *ssa.Value {
    	return s.entryBlock().NewValue0A(src.NoXPos, op, t, aux)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        // created entry block arguments in the function body.
        {
          Block &entry_block = outlined_func.getBody().front();
          auto loc = outlined_func.getLoc();
          for (Value operand : operands) {
            BlockArgument newArg = entry_block.addArgument(operand.getType(), loc);
            replaceAllUsesInRegionWith(operand, newArg, outlined_func.getBody());
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top