Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MOD (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*YCbCr).YCbCrAt", Method, 4},
    		{"(*YCbCr).YOffset", Method, 0},
    		{"(Point).Add", Method, 0},
    		{"(Point).Div", Method, 0},
    		{"(Point).Eq", Method, 0},
    		{"(Point).In", Method, 0},
    		{"(Point).Mod", Method, 0},
    		{"(Point).Mul", Method, 0},
    		{"(Point).String", Method, 0},
    		{"(Point).Sub", Method, 0},
    		{"(Rectangle).Add", Method, 0},
    		{"(Rectangle).At", Method, 5},
    		{"(Rectangle).Bounds", Method, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeListAttr Tinputs = TF_DerivedOperandTypeListAttr<0>;
      TF_DerivedResultTypeListAttr Toutputs = TF_DerivedResultTypeListAttr<0>;
    }
    
    def TF_ModOp : TF_Op<"Mod", [Pure, ResultsBroadcastableShape, TF_SameOperandsAndResultElementTypeResolveRef]>,
                   WithBroadcastableBinOpBuilder {
      let summary = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueARM64_OpARM64MOD(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOD (MOVDconst [c]) (MOVDconst [d]))
    	// cond: d != 0
    	// result: (MOVDconst [c%d])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. RELEASE.md

    * TensorFlow/models have been moved to a separate github repository. * Division
    and modulus operators (/, //, %) now match Python (flooring) semantics. This
    applies to `tf.div` and `tf.mod` as well. To obtain forced integer truncation
    based behaviors you can use `tf.truncatediv` and `tf.truncatemod`. *
    `tf.divide()` is now the recommended division function. `tf.div()` will remain,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top