Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for NEG (0.18 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CNTTZW R3,R4                    // 7c640434
    	CNTTZWCC R3,R4                  // 7c640435
    	CNTTZD R3,R4                    // 7c640474
    	CNTTZDCC R3,R4                  // 7c640475
    	NEG R3, R4                      // 7c8300d0
    	NEGCC R3, R4                    // 7c8300d1
    	NEGV R3, R4                     // 7c8304d0
    	NEGVCC R3, R4                   // 7c8304d1
    
    	BEQ 0(PC)                       // 41820000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %0 = "tf.Abs"(%cst) {device = ""} : (tensor<3x4xf32>) -> tensor<3x4xf32>
      %1 = "tf.Max"(%0, %cst_0) {device = "", keep_dims = false} : (tensor<3x4xf32>, tensor<i32>) -> tensor<4xf32>
      %2 = "tf.Neg"(%1) {device = ""} : (tensor<4xf32>) -> tensor<4xf32>
      %3 = "tfl.custom_tf"(%cst, %2, %1) ({
      ^bb0(%arg1: tensor<*xf32>, %arg2: tensor<*xf32>, %arg3: tensor<*xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    		o |= 1 << 24
    	}
    	if sc&C_UBIT == 0 {
    		o |= 1 << 23
    	}
    	if sc&C_WBIT != 0 {
    		o |= 1 << 21
    	}
    	o |= 1<<26 | 1<<20
    	if v < 0 {
    		if sc&C_UBIT != 0 {
    			c.ctxt.Diag(".U on neg offset")
    		}
    		v = -v
    		o ^= 1 << 23
    	}
    
    	if v >= 1<<12 || v < 0 {
    		c.ctxt.Diag("literal span too large: %d (R%d)\n%v", v, b, c.printp)
    	}
    	o |= uint32(v)
    	o |= (uint32(b) & 15) << 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top