Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for INS (0.04 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rd", ins.rd)
    	wantIntReg(ctxt, ins, "rs1", ins.rs1)
    	wantIntReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateU(ctxt *obj.Link, ins *instruction) {
    	wantImmI(ctxt, ins, ins.imm, 20)
    	wantIntReg(ctxt, ins, "rd", ins.rd)
    	wantNoneReg(ctxt, ins, "rs1", ins.rs1)
    	wantNoneReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    
      let arguments = (ins
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def ConstOp: TensorflowMlrt_Op<"constop", []> {
      let summary = "The tf_mlrt ConstOp";
    
      let description = [{
        The ConstOp creates a constant tensorflow::Tensor from serialized proto.
      }];
    
      let arguments = (ins
        StrAttr:$tensor_proto
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K 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/tfr/ir/tfr_ops.td

        %3 = tfr.constant [i32, f32] -> !tfr.attr
        %4 = tfr.constant f32 -> !tfr.attr
        ```
      }];
    
      let arguments = (ins TFR_allowedConstValues:$value);
    
      let results = (outs TFR_AttrType:$out);
    
      let hasFolder = 1;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value),
        [{
          auto* ctx = value.getContext();
          $_state.addAttribute("value", value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }]>;
    
    def TFL_FusedBroadcastableBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs,
        "StringAttr":$fusedActivationFunction),
      [{
        buildFusedBroadcastableBinOp(
           &$_builder, $_state, lhs, rhs, fusedActivationFunction);
      }]>;
    
    def TFL_ComparisonBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs),
      [{
        buildComparisonBinOp(&$_builder, $_state, lhs, rhs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Constant tensor op";
    
      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value)>,
        OpBuilder<(ins "Type":$type, "Attribute":$value)>,
      ];
    
      let hasFolder = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "";
    
      let arguments = (ins);
    
      let results = (outs
        Res<TF_ResourceTensor, "", [TF_DatasetMemoryCacheAlloc]>:$handle,
        TF_VariantTensor:$deleter
      );
    }
    
    def TF_AnonymousMultiDeviceIteratorOp : TF_Op<"AnonymousMultiDeviceIterator", [TF_UniqueResourceAllocation]> {
      let summary = "A container for a multi device iterator resource.";
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Set a tensor in resource array.
    
        arg: the tensor to be set in the resource array.
        index: the index in the resource array
    
        in_ch and out_ch are for control dependencies.
      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        TFTensorType:$arg,
        StrAttr:$device,
        I64Attr:$index
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch
      );
    
      let assemblyFormat = "operands attr-dict";
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top