Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UInt32 (0.47 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint32(x) < uint32(y)) {
    			break
    		}
    		v.reset(OpPPC64FlagLT)
    		return true
    	}
    	// match: (CMPWUconst (MOVDconst [x]) [y])
    	// cond: uint32(x)>uint32(y)
    	// result: (FlagGT)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint32(x) > uint32(y)) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	{types.TINT32, types.TFLOAT64}: {ssa.OpCopy, ssa.OpCvt32to64F, types.TINT32},
    	{types.TINT64, types.TFLOAT64}: {ssa.OpCopy, ssa.OpCvt64to64F, types.TINT64},
    
    	{types.TFLOAT32, types.TINT8}:  {ssa.OpCvt32Fto32, ssa.OpTrunc32to8, types.TINT32},
    	{types.TFLOAT32, types.TINT16}: {ssa.OpCvt32Fto32, ssa.OpTrunc32to16, types.TINT32},
    	{types.TFLOAT32, types.TINT32}: {ssa.OpCvt32Fto32, ssa.OpCopy, types.TINT32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            dilations_attr.template getValues<int64_t>().begin(),
            dilations_attr.template getValues<int64_t>().end()};
        auto strides_attr = GetI64ElementsAttr(op.getStrides());
        std::vector<tensorflow::int32> strides{
            strides_attr.template getValues<int64_t>().begin(),
            strides_attr.template getValues<int64_t>().end()};
    
        std::vector<int64_t> explicit_paddings;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top