Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for INS (0.02 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      let description = [{
        Set a tensor in resource array.
    
        arg: the tensor to be set in the resource array.
        index: the index in the resource array
      }];
    
      let arguments = (ins
        TFTensorType:$arg,
        I64Attr:$index
      );
    
      let results = (outs);
    
      let assemblyFormat = "operands attr-dict";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

      }];
    
      let arguments = (ins
        MlrtFutureType:$future
      );
    
      let assemblyFormat = "operands attr-dict";
    }
    
    def AwaitAllControlOp: Mlrt_Op<"await_all_control", []> {
      let summary = "Awaits multiple signals";
    
      let description = [{
        Awaits multiple signals
    
        $futures: A list of !mlrt.futures
      }];
    
      let arguments = (ins
        Variadic<MlrtFutureType>:$futures
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // elements. It returns a new slice of inline elements with links added.
    func addSymbolLinksInlines(ins []md.Inline, defaultPackage string) []md.Inline {
    	ins = splitAtBrackets(ins)
    	var res []md.Inline
    	for i := 0; i < len(ins); i++ {
    		if txt := symbolLinkText(i, ins); txt != "" {
    			link, ok := symbolLink(txt, defaultPackage)
    			if ok {
    				res = append(res, link)
    				i += 2
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

          "std::vector<int>", "GetSparseOperands", (ins)
        >,
        InterfaceMethod<
          [{Returns the supported block size of float sparse operands.}],
          "std::vector<std::vector<int>>", "GetFloatBlockSize", (ins)
        >,
        InterfaceMethod<
          [{Returns the supported block size of quantized sparse operands.}],
          "std::vector<std::vector<int>>", "GetQuantizedBlockSize", (ins)
        >,
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td

          "int", "GetAffineOperandIndex",
          (ins), [{}], [{return 1;}]>,
        InterfaceMethod<
          [{Returns whether narrow range is required for the affine operand.}],
          "bool", "RequiredNarrowRangeAffineOperand",
          (ins), [{}], [{return true;}]>,
        InterfaceMethod<
          [{Returns quantization dim for the affine operand.}],
          "int", "GetQuantizationDimIndex",
          (ins)>,
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.td

          "SmallVector<unsigned, 4>", "GetLayoutDependentArgs", (ins)
        >,
        InterfaceMethod<
          [{Returns indices of layout dependent results.}],
          "SmallVector<unsigned, 4>", "GetLayoutDependentResults", (ins)
        >,
        InterfaceMethod<
          [{Returns the optimal data layout based on the available devices.}],
          "StringRef", "GetOptimalLayout", (ins "const RuntimeDevices&":$devices)
        >,
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 30 19:07:07 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    	}
    	for _, test := range tests {
    		t.Run(test.ins, func(t *testing.T) {
    			if got := test.fn(test.a, test.b); got != test.want {
    				t.Errorf("Assembly %v %v, %v = %v, want %v", test.ins, test.a, test.b, got, test.want)
    			}
    			if got := test.goFn(test.a, test.b); got != test.want {
    				t.Errorf("Go %v %v, %v = %v, want %v", test.ins, test.a, test.b, got, test.want)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/s390x/ggen.go

    		if n > 256 {
    			n = 256
    		}
    
    		switch n {
    		// Handle very small clears with move instructions.
    		case 8, 4, 2, 1:
    			ins := s390x.AMOVB
    			switch n {
    			case 8:
    				ins = s390x.AMOVD
    			case 4:
    				ins = s390x.AMOVW
    			case 2:
    				ins = s390x.AMOVH
    			}
    			p = pp.Append(p, ins, obj.TYPE_CONST, 0, 0, obj.TYPE_MEM, reg, off)
    
    		// Handle clears that would require multiple move instructions with CLEAR (assembled as XC).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

    def TF_UniformQuantizedDotGeneralOp : TF_Op<"UniformQuantizedDotGeneral", [Pure]> {
      // TODO(b/230804708): Improve the operator description.
      let summary = "Quantized dot general operator.";
    
      let arguments = (ins
        TensorOf<[TF_Float32, TF_Qint8]>:$lhs,
        TensorOf<[TF_Qint8]>:$rhs,
        TF_Float32Tensor:$lhs_scales,
        TF_Int32Tensor:$lhs_zps,
        TF_Float32Tensor:$rhs_scales,
        TF_Int32Tensor:$rhs_zps,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      let description = [{
        Setting a tensor value in TFRT runtime's static resource manager, using
        index as its identifier. It can be retrieved by _TfrtGetResource using the
        same index.
      }];
    
      let arguments = (ins
        TF_Tensor:$arg,
        I64Attr:$index
      );
    }
    
    def TF__TfrtGetResourceOp : TF_Op<"_TfrtGetResource",
        [Pure, TF_NoConstantFold, DeclareOpInterfaceMethods<TF_ResourceHandleAllocatorInterface>]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top