Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for Qinv (3.2 sec)

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

    	CINC	NV, R2, R3                                       // ERROR "invalid condition"
    	CINVW	AL, R2, R3                                       // ERROR "invalid condition"
    	CINV	NV, R2, R3                                       // ERROR "invalid condition"
    	CNEG	AL, R2, R3                                       // ERROR "invalid condition"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	}
    
    	b, err := hex.DecodeString(val)
    	if err != nil {
    		if err == hex.ErrLength {
    			Exitf("-B argument must have even number of digits: %s", ov)
    		}
    		if inv, ok := err.(hex.InvalidByteError); ok {
    			Exitf("-B argument contains invalid hex digit %c: %s", byte(inv), ov)
    		}
    		Exitf("-B argument contains invalid hex: %s", ov)
    	}
    
    	buildinfo = b
    }
    
    // Build info note
    const (
    	ELF_NOTE_BUILDINFO_NAMESZ = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    #  endif
    #else
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X  (RA+RB), VT
    
    #define P8_STXVB16X(VS,RA,RB) \
    	STXVD2X VS, (RA+RB)
    
    #endif
    
    #define MASK_PTR   R8
    
    #define MASKV   V0
    #define INV     V1
    
    // The following macros are used for
    // the stitched implementation within
    // counterCryptASM.
    
    // Load the initial GCM counter value
    // in V30 and set up the counter increment
    // in V31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/net/timeout_test.go

    		}
    		var n int64
    		var err error
    		for {
    			var dn int
    			dn, err = c.Write([]byte("TIMEOUT TRANSMITTER"))
    			n += int64(dn)
    			if err != nil {
    				break
    			}
    		}
    		t1 := time.Now()
    		// Inv: err != nil
    		if !err.(Error).Timeout() {
    			t.Fatalf("Write did not return (any, timeout): (%d, %v)", n, err)
    		}
    		if perr := parseWriteError(err); perr != nil {
    			t.Error(perr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[ONE:.*]] = mhlo.constant dense<1.000000e+00> : tensor<f32>
        // CHECK: %[[RESULT:.*]] = mhlo.divide %[[ONE]], %arg0 : tensor<f32>
        // CHECK: return %[[RESULT]]
    
        %0 = "tf.Inv"(%arg0) : (tensor<f32>) -> tensor<f32>
        func.return %0 : tensor<f32>
      }
    
      // CHECK-LABEL: func @const_inputs
      // CHECK-SAME: (%[[ARG0:.*]]: tensor<2x2xf64>, %[[ARG1:.*]]: tensor<f64>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"CINV","Bits":"0|1|0|1|1|0|1|0|1|0|0|Rm:5|cond:4|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"CINV <Wd>, <Wn>, <cond>","Code":"","Alias":"This instruction is an alias of the CSINV instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  7. src/encoding/xml/xml_test.go

    			if err != nil {
    				break
    			}
    		}
    		if test.err == "" {
    			if err != io.EOF {
    				t.Errorf("parse %s: have %q error, expected none", test.src, err)
    			}
    			continue
    		}
    		// Inv: err != nil
    		if err == io.EOF {
    			t.Errorf("parse %s: unexpected EOF", test.src)
    			continue
    		}
    		if !strings.Contains(err.Error(), test.err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      func.return %0 : tensor<*xcomplex<f64>>
    }
    
    // Inv is the same as Reciprocal
    // CHECK-LABEL: @Inv_i32
    func.func @Inv_i32(%arg0: tensor<*xi32>) -> tensor<*xi32> {
      // CHECK: %[[ONE:.*]] = "tf.Const"() <{value = dense<1> : tensor<i32>}> : () -> tensor<i32>
      // CHECK: "tf.Div"(%[[ONE]], %arg0) : (tensor<i32>, tensor<*xi32>) -> tensor<*xi32>
      %0 = "tf.Inv"(%arg0) : (tensor<*xi32>) -> tensor<*xi32>
      func.return %0 : tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad.cc

      // Use the built-in operator.
      grad_outputs->push_back(
          internal::ReciprocalGrad(scope, op.output(0), grad_inputs[0]));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Inv", InvGrad);
    REGISTER_GRADIENT_OP("Reciprocal", InvGrad);
    
    Status SquareGrad(const Scope& scope, const Operation& op,
                      const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    ¸]W1}qÖpO^³_qòsc•\i\wQÕc•jaòçXŸ}µ­$Ö/ cîacž<²¾øF^"XG² gp ’ì]N^ñMusòL¾stãT@g EG_Vw„JïhKßÌLˆ~QWè>ûL]ömVtiovSˆ~SIîqAavWcx qehåkqpeeìÜft±ñ ¾Aãzª|wKnºVdG†ìG@vYËesTt¢GMqzéˆLrïú g E‘† U^_Uôk¦¼aV’ïsTï|nsd8ÙE@½æ Uuj snd}yÜŠF^sq_o,0vwSTz åìFc¼‹il… ¾3IÈ@}J ¾®iinv ý„Scl„lJwSËuD¼DAèh}èk¨k`¼Âbi:zyON¼íIEpyZe<LYºœêˆˆPŽ±—ƒBƒ´ °˜¨ ’ º°˜€ˆiòÔºfm{¾ûp¸Kyzà Väa<ÎñknºwJ}rÓ¦\{c ( go{ miR¸Aguª@PI (DYIKE~ VAˆorsaDï²zwoYsV}4¢YV~WEì0{úpóå^G ®aRLªnÖ{Ey}„BduªyYTÎ÷òTKŽmr¾^pïˆ qò ¼WKdÚcr¬Ä^“awˆEEÆ>ý|Míºwmî`qÙÜ¢C]ûVc€{pMªµ½§oñ}`qzStha...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top