Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NEG (0.04 sec)

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

    			break
    		}
    		v.reset(OpARM64MNEGW)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (NEG (NEG x))
    	// result: x
    	for {
    		if v_0.Op != OpARM64NEG {
    			break
    		}
    		x := v_0.Args[0]
    		v.copyOf(x)
    		return true
    	}
    	// match: (NEG (MOVDconst [c]))
    	// result: (MOVDconst [-c])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Float).MantExp", Method, 5},
    		{"(*Float).MarshalText", Method, 6},
    		{"(*Float).MinPrec", Method, 5},
    		{"(*Float).Mode", Method, 5},
    		{"(*Float).Mul", Method, 5},
    		{"(*Float).Neg", Method, 5},
    		{"(*Float).Parse", Method, 5},
    		{"(*Float).Prec", Method, 5},
    		{"(*Float).Quo", Method, 5},
    		{"(*Float).Rat", Method, 5},
    		{"(*Float).Scan", Method, 8},
    		{"(*Float).Set", 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)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TF_FloatTensor:$x
      );
    
      let results = (outs
        TF_FloatTensor:$y
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_NegOp : TF_Op<"Neg", [Pure, TF_CwiseUnary, TF_Involution, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes numerical negative value element-wise.";
    
      let description = [{
    I.e., \\(y = -x\\).
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. RELEASE.md

    tf.reverse() now takes indices of axes to be reversed. E.g. `tf.reverse(a,
    [True, False, True])` must now be written as `tf.reverse(a, [0, 2])`.
    `tf.reverse_v2()` will remain until 1.0 final. * `tf.mul`, `tf.sub` and `tf.neg`
    are deprecated in favor of `tf.multiply`, `tf.subtract` and `tf.negative`. *
    `tf.pack` and `tf.unpack` are deprecated in favor of `tf.stack` and
    `tf.unstack`. * `TensorArray.pack` and `TensorArray.unpack` are getting
    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