Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 493 for operands_ (0.17 sec)

  1. src/go/types/api_predicates.go

    }
    
    // Identical reports whether x and y are identical types.
    // Receivers of [Signature] types are ignored.
    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

    // Requires the function to provide arguments for each of the `fn` operands
    // that is compatible for tensor cast.
    static Operation* CallFn(Location loc, const std::function<Value(int)>& get_arg,
                             func::FuncOp fn, OpBuilder* builder) {
      FunctionType fn_type = fn.getFunctionType();
      llvm::SmallVector<Value, 4> operands;
      int num_operands = fn_type.getNumInputs();
      operands.reserve(num_operands);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class TFL_OperandsHaveSameDimsTrait<int x, int y, int i, int j> :
      PredOpTrait<"dim " # i # " of operand " # x # " equals to dim " # j #
        " of operand " # y,
        TFL_OperandsHaveSameDims<x, y, i, j>>;
    
    // Return true if number of elements of x-th operand is the same as j-th dim of
    // y-th operand or any of those operands does not have static shape.
    class TFL_NumElementsEqualsDim<int x, int y, int j> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    The `tf_executor.graph` operation does not accept any operands, inputs are
    implicitly captured by the region, representing the feeds to the graph.
    
    The region attached to `tf_executor.graph` is terminated by a
    `tf_executor.fetch` operation. The non-control operands of the terminator
    correspond to the result values (or fetches) of the `tf_executor.graph`
    operation. The behavior is undefined if any of the operands of the
    `tf_executor.fetch` is dead.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // format operators and their operand types.
    //
    // # Examples
    //
    // The %d format operator requires an integer operand.
    // Here it is incorrectly applied to a string:
    //
    //	fmt.Printf("%d", "hello") // fmt.Printf format %d has arg "hello" of wrong type string
    //
    // A call to Printf must have as many operands as there are "verbs" in
    // the format string, not too few:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/const.go

    // This file implements functions for untyped constant operands.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    	"math"
    )
    
    // overflow checks that the constant x is representable by its type.
    // For untyped constants, it checks that the value doesn't become
    // arbitrarily large.
    func (check *Checker) overflow(x *operand, opPos syntax.Pos) {
    	assert(x.mode == constant_)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Forcely assign operand types to result types (the i-th operand type will
      // assign to i-th result type). Returns true if anything is changed.
      bool ForceTypeForPassThroughOperands(Operation* op, OperandRange operands,
                                           ResultRange results);
    
      // Makes result types match the operand types (the i-th result type will
      // match the i-th operand type). Returns true if anything is changed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

        }
        tf_executor.fetch %0 : !tf_executor.control
      }
      func.return
    }
    
    // CHECK-NEXT: return
    
    
    // Test empty island with no operands and no data result user is removed.
    // Control result users should also have their respective operands removed.
    // CHECK-LABEL: func @empty_island_no_operand_no_data_result
    func.func @empty_island_no_operand_no_data_result() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/default_quant_params.cc

      for (Value value : activation_values) {
        QuantizeValue(builder, value, default_params);
      }
    
      // Since all the non-biases operands have quantization parameters now, we
      // should be able to propagate them to the bias operand.
      for (Value bias : bias_values) {
        Operation *op = *bias.user_begin();
        auto spec = TFL::GetOpQuantSpec(op);
        for (auto &it : spec->biases_params) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. 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)
Back to top