Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for INS (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

      }];
    
      let arguments = (ins
        StrAttr:$device
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
      let regions = (region SizedRegion<1>:$body);
    
      let extraClassDeclaration = [{
        Block &GetBody() { return getOperation()->getRegion(0).front(); }
        bool WrapsSingleOp();
      }];
    
      let builders = [
        OpBuilder<(ins "StringAttr":$device, "TypeRange":$result_types),
        [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def Quantization_QuantizeCastOp : Quantization_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    // converting back from a quantized to quantizable (expressed) type.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    def quantfork_QuantizeCastOp : quantfork_Op<"qcast", [Pure]> {
      let arguments = (ins quant_RealValueType:$arg);
      let results = (outs quant_RealValueType);
    }
    
    // A DequantizeCast op (dcast) represents the inverse of a qcast,
    // converting back from a quantized to quantizable (expressed) type.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. test/235.go

    		1250, 1280, 1296, 1350, 1440, 1458, 1500, 1536, 1600}
    
    	x := uint64(1)
    	ins := make([]T, n)
    	outs := make([]T, n)
    	xs := make([]uint64, n)
    	for i := 0; i < n; i++ {
    		ins[i], outs[i] = M(F[i])
    		xs[i] = x
    	}
    
    	for i := 0; i < len(OUT); i++ {
    		for i := 0; i < n; i++ {
    			ins[i] <- x
    		}
    
    		for i := 0; i < n; i++ {
    			if xs[i] == x {
    				xs[i] = <-outs[i]
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.6K bytes
    - Viewed (0)
Back to top