Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 237 for Operands (0.37 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/assignments.go

    				v = w
    				v_used = v.used
    			}
    		}
    	}
    
    	var x operand
    	check.expr(nil, &x, lhs)
    
    	if v != nil {
    		v.used = v_used // restore v.used
    	}
    
    	if x.mode == invalid || !isValid(x.typ) {
    		return Typ[Invalid]
    	}
    
    	// spec: "Each left-hand side operand must be addressable, a map index
    	// expression, or the blank identifier. Operands may be parenthesized."
    	switch x.mode {
    	case invalid:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

          Value operand = std::get<0>(operand_and_type);
          Type expected_type = std::get<1>(operand_and_type);
          if (operand.getType() != expected_type) {
            operand = rewriter.create<TF::CastOp>(
                op.getLoc(), expected_type, operand,
                /*Truncate=*/rewriter.getBoolAttr(false));
          }
          casted_operands.push_back(operand);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    			s.argLimit = f
    		}
    
    		if numProcessed >= len(a) { // out of operands
    			s.errorString("too few operands for format '%" + format[i-w:] + "'")
    			break
    		}
    		arg := a[numProcessed]
    
    		s.scanOne(c, arg)
    		numProcessed++
    		s.argLimit = s.limit
    	}
    	if numProcessed < len(a) {
    		s.errorString("too many operands")
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_FORM_flag_present = 0x19 // flag
    	DW_FORM_ref_sig8     = 0x20 // reference
    	// Pseudo-form: expanded to data4 on IOS, udata elsewhere.
    	DW_FORM_udata_pseudo = 0x99
    )
    
    // Table 24 (#operands, notes)
    const (
    	DW_OP_addr                = 0x03 // 1 constant address (size target specific)
    	DW_OP_deref               = 0x06 // 0
    	DW_OP_const1u             = 0x08 // 1 1-byte constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  7. src/go/types/assignments.go

    				v = w
    				v_used = v.used
    			}
    		}
    	}
    
    	var x operand
    	check.expr(nil, &x, lhs)
    
    	if v != nil {
    		v.used = v_used // restore v.used
    	}
    
    	if x.mode == invalid || !isValid(x.typ) {
    		return Typ[Invalid]
    	}
    
    	// spec: "Each left-hand side operand must be addressable, a map index
    	// expression, or the blank identifier. Operands may be parenthesized."
    	switch x.mode {
    	case invalid:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      // Collect all operands of `execute` whose defining ops are variable reads
      // that might get merged, and add relevant information to `var_access_info`.
      for (auto operand : llvm::enumerate(execute->getOpOperands())) {
        var_access_info.new_operand_values.push_back(operand.value().get());
        auto read_op = llvm::dyn_cast_or_null<TF::ReadVariableOp>(
            operand.value().get().getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/util.go

    	return fmt.Sprintf("RL???%d", list)
    }
    
    // Special operands
    type spcSet struct {
    	lo      int64
    	hi      int64
    	SPCconv func(int64) string
    }
    
    var spcSpace []spcSet
    
    // RegisterSpecialOperands binds a pretty-printer (SPCconv) for special
    // operand numbers to a given special operand number range. Lo is inclusive,
    // hi is exclusive (valid special operands are lo through hi-1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect WhileOp outline pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateWhileOutlinePass();
    
    // Creates a pass to remove operands of TFL WhileOp without changing outcomes.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateReduceWhileOperandsPass();
    
    // Verifies runtime constraints.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top