Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for abde (0.05 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              func_aliases.values(), [quantize_model_test_base.FUNC_ALIAS]
          )
    
      @parameterized.parameters(
          testing.parameter_combinations([{
              'equation': (
                  'abc,cde->abde',
                  'abc,dce->abde',
              ),
          }])
      )
      def test_einsum_ptq_model(
          self,
          equation: str,
      ):
        _, y_shape, bias_shape, x_signature, y_signature = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    func InvertBranch(as obj.As) obj.As {
    	switch as {
    	case ABEQ:
    		return ABNE
    	case ABEQZ:
    		return ABNEZ
    	case ABGE:
    		return ABLT
    	case ABGEU:
    		return ABLTU
    	case ABGEZ:
    		return ABLTZ
    	case ABGT:
    		return ABLE
    	case ABGTU:
    		return ABLEU
    	case ABGTZ:
    		return ABLEZ
    	case ABLE:
    		return ABGT
    	case ABLEU:
    		return ABGTU
    	case ABLEZ:
    		return ABGTZ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    	asmeq, invasmun bool
    }{
    	ssa.BlockPPC64EQ: {ppc64.ABEQ, ppc64.ABNE, false, false},
    	ssa.BlockPPC64NE: {ppc64.ABNE, ppc64.ABEQ, false, false},
    
    	ssa.BlockPPC64LT: {ppc64.ABLT, ppc64.ABGE, false, false},
    	ssa.BlockPPC64GE: {ppc64.ABGE, ppc64.ABLT, false, false},
    	ssa.BlockPPC64LE: {ppc64.ABLE, ppc64.ABGT, false, false},
    	ssa.BlockPPC64GT: {ppc64.ABGT, ppc64.ABLE, false, false},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        protocol: Protocol,
        mockWebServer: MockWebServer,
      ) {
        setUp(protocol, mockWebServer)
        server.enqueue(MockResponse(body = "ABCDE"))
        val call = client.newCall(Request(server.url("/foo")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("ABCDE")
        assertThat(response.code).isEqualTo(200)
        assertThat(response.message).isEqualTo("")
        assertThat(response.protocol).isEqualTo(protocol)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // PING
        peer.sendFrame().ping(true, Http2Connection.AWAIT_PING, 0)
        peer.acceptFrame() // HEADERS STREAM 3
        peer.sendFrame().windowUpdate(3, 5)
        peer.acceptFrame() // DATA STREAM 3 "abcde"
        peer.sendFrame().windowUpdate(3, 5)
        peer.acceptFrame() // DATA STREAM 3 "fghi"
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    linked, including any test suite binaries. Gradle's up-to-date checks are used to only compile or link if something has changed. For instance, if you have changed source files in a way that do not affect the headers of your project, Gradle will be able to skip compilation for dependent components and only need to re-link with the new library. Tests are not run when assembling a component.
    
    When you _build_ dependents of a component, the component and all of its dependent binaries are compiled,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    		case AMVN:
    			break
    
    		case ABEQ:
    			opset(ABNE, r0)
    			opset(ABCS, r0)
    			opset(ABHS, r0)
    			opset(ABCC, r0)
    			opset(ABLO, r0)
    			opset(ABMI, r0)
    			opset(ABPL, r0)
    			opset(ABVS, r0)
    			opset(ABVC, r0)
    			opset(ABHI, r0)
    			opset(ABLS, r0)
    			opset(ABGE, r0)
    			opset(ABLT, r0)
    			opset(ABGT, r0)
    			opset(ABLE, r0)
    
    		case ASLL:
    			opset(ASRL, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    		return 0x1a << 26
    	case ABLT, ABLTZ, ABGTZ:
    		return 0x18 << 26
    	case ABGEU:
    		return 0x1b << 26
    	case ABGE, ABGEZ, ABLEZ:
    		return 0x19 << 26
    	case -ABEQ: // beqz
    		return 0x10 << 26
    	case -ABNE: // bnez
    		return 0x11 << 26
    	case ABEQ:
    		return 0x16 << 26
    	case ABNE:
    		return 0x17 << 26
    	case ABFPT:
    		return 0x12<<26 | 0x1<<8
    	case ABFPF:
    		return 0x12<<26 | 0x0<<8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"field": *stringSchema,
    					},
    				}},
    				applyPatchOperation{
    					"create instance",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "doesnt abide pattern",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"add pattern validation on `field`",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	downscaleStabilisationWindow time.Duration
    
    	monitor monitor.Monitor
    
    	// hpaLister is able to list/get HPAs from the shared cache from the informer passed in to
    	// NewHorizontalController.
    	hpaLister       autoscalinglisters.HorizontalPodAutoscalerLister
    	hpaListerSynced cache.InformerSynced
    
    	// podLister is able to list/get Pods from the shared cache from the informer passed in to
    	// NewHorizontalController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top