Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Operands (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      };
      const SmallVector<Value> operands(dot_general_op->getOperands());
      const SmallVector<Value> results(dot_general_op->getResults());
      Operation* lifted_op =
          LiftAsFunctionCall(builder_, dot_general_op->getLoc(),
                             FunctionCallOpType::TFXlaCallModuleOp,
                             "composite_dot_general_fn", operands, results,
                             attributes)[0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/go/types/call.go

    	if n := len(elist); n == 1 {
    		xlist, _ = check.multiExpr(elist[0], false)
    	} else if n > 1 {
    		// multiple (possibly invalid) values
    		xlist = make([]*operand, n)
    		for i, e := range elist {
    			var x operand
    			check.expr(nil, &x, e)
    			xlist[i] = &x
    		}
    	}
    	return
    }
    
    // genericExprList is like exprList but result operands may be uninstantiated or partially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    type Prog struct {
    	Ctxt     *Link     // linker context
    	Link     *Prog     // next Prog in linked list
    	From     Addr      // first source operand
    	RestArgs []AddrPos // can pack any operands that not fit into {Prog.From, Prog.To}, same kinds of operands are saved in order
    	To       Addr      // destination operand (second is RegTo2 below)
    	Pool     *Prog     // constant pool entry, for arm,arm64 back ends
    	Forwd    *Prog     // for x86 back end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/math/big/float.go

    // This file implements multi-precision floating-point numbers.
    // Like in the GNU MPFR library (https://www.mpfr.org/), operands
    // can be of mixed precision. Unlike MPFR, the rounding mode is
    // not specified with each operation, but with each operand. The
    // rounding mode of the result operand determines the rounding
    // mode of an operation. This is a from-scratch implementation.
    
    package big
    
    import (
    	"fmt"
    	"math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        }
    
        // This pass should be always at the end of the model
        // conversion (even after quantization). Some TFL ops like unidirectional
        // sequence lstm will have stateful operands and some optimization passes
        // will merge those operands if they have identical values & types. However,
        // it's not desired by TFL. This pass serves as a "fix" pass to split the
        // merged inputs until we have 1st class variable support or reuse
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    	if n := len(elist); n == 1 {
    		xlist, _ = check.multiExpr(elist[0], false)
    	} else if n > 1 {
    		// multiple (possibly invalid) values
    		xlist = make([]*operand, n)
    		for i, e := range elist {
    			var x operand
    			check.expr(nil, &x, e)
    			xlist[i] = &x
    		}
    	}
    	return
    }
    
    // genericExprList is like exprList but result operands may be uninstantiated or partially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // quantizable unit.
    message StaticRangePtq {
      // Operand index -> QuantizedType mapping. Operands that are not specified
      // here will be quantized with best effort.
      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    message WeightOnlyPtq {
      // Operand index -> QuantizedType mapping. Operands that are not specified
      // here will be quantized with best effort.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let description = [{
        Defers activation transposes (e.g. LHS of `stablehlo.add`) to the output and
        optionally inserts `stablehlo.transpose`s to match the shape of operands.
        This is useful when recursively pushing down the extra `stablehlo.transpose`
        inserted to activation tensors after running `NchwConvolutionToNhwcPass`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      });
    }
    
    // Propagates the resource IDs from an input operand to a result. Returns true
    // if the mapping changed.
    bool ResourceAliasAnalysisInfo::PropagateInputToOutput(const Value& operand,
                                                           const OpResult& result) {
      auto operand_it = resource_value_to_ids_.find(operand);
      assert(operand_it != resource_value_to_ids_.end() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top