Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Binary (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (dim_size != op.getNumResults())
        return op.emitOpError("result count must be equal to ") << dim_size;
    
      return success();
    }
    
    namespace {
    
    // Hoist coefficient-wise unary operation out of the Unpack op:
    //
    //   %unpacked:N = "tf.Unpack"(%0)
    //   %neg0 = "tf.Neg"(%unpacked#0)
    //   %neg1 = "tf.Neg"(%unpacked#1)
    //   ...
    //   %negN-1 = "tf.Neg"(%unpacked:N-1)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // (x + y) / 2 with x>=y    =>    (x - y) / 2 + y
    (Avg64u <t> x y) => (ADD (SRLconst <t> (SUB <t> x y) [1]) y)
    
    (And(64|32|16|8) ...) => (AND ...)
    (Or(64|32|16|8)  ...) => (OR ...)
    (Xor(64|32|16|8) ...) => (XOR ...)
    
    // unary ops
    (Neg(64|32|16|8) ...) => (NEG ...)
    (Neg(32|64)F     ...) => (FNEG(S|D) ...)
    (Com(64|32|16|8) ...) => (MVN ...)
    
    // math package intrinsics
    (Abs         ...) => (FABSD   ...)
    (Sqrt        ...) => (FSQRTD  ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top