Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MOD (0.1 sec)

  1. 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)
  2. 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)
  3. 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