Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 363 for abde (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization.mlir

      %0 = mhlo.constant dense<(1.000000e+00,-1.000000e+00)> : tensor<128x32x4xcomplex<f32>>
      %1 = mhlo.constant dense<(1.000000e+00,1.000000e+00)> : tensor<8x64x128xcomplex<f32>>
      %2 = "mhlo.einsum"(%1, %0) <{einsum_config = "abc,cde->abde"}> : (tensor<8x64x128xcomplex<f32>>, tensor<128x32x4xcomplex<f32>>) -> tensor<8x64x32x4xcomplex<f32>>
      return %2 : tensor<8x64x32x4xcomplex<f32>>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            input_tensor=ops.convert_to_tensor(input_data)
        )
    
        self.assertAllClose(expected_outputs, got_outputs, atol=0.05)
    
      @parameterized.parameters(
          ('abc,cde->abde', quant_opts_pb2.XLA),
          ('abc,dce->abde', quant_opts_pb2.XLA),
      )
      def test_einsum_ptq_model(
          self,
          equation: str,
          target_opset: quant_opts_pb2.OpSet,
      ):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/internal/trace/order_test.go

    				t.Fatalf("check %q: expected to be able to pop after %d pops", name, i+1)
    			} else if got != want {
    				t.Fatalf("check %q: expected value %d after on pop %d, got %d", name, want, i+1, got)
    			}
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values", name)
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values a second time", name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/custom-docs-ui-assets.md

        If you integrate your API with an OAuth2 provider, you will be able to authenticate and come back to the API docs with the acquired credentials. And interact with it using the real OAuth2 authentication.
    
        Swagger UI will handle it behind the scenes for you, but it needs this "redirect" helper.
    
    ### Create a *path operation* to test it
    
    Now, to be able to test that everything works, create a *path operation*:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/cache2/RelayTest.kt

        val relay = edit(file, upstream, metadata, 5)
        val source1 = relay.newSource()!!.buffer()
        val source2 = relay.newSource()!!.buffer()
        assertThat(source1.readUtf8(5)).isEqualTo("abcde")
        assertThat(source2.readUtf8(5)).isEqualTo("abcde")
        assertThat(source2.readUtf8(5)).isEqualTo("fghij")
        assertThat(source1.readUtf8(5)).isEqualTo("fghij")
        assertThat(source1.exhausted()).isTrue()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/math/big/arith_ppc64x.s

    	MOVD  16(R9), R17     // R17 = y[i+1]
    	MOVD  24(R9), R18     // R18 = y[i+2]
    	MOVDU 32(R9), R19     // R19 = y[i+3]
    	ADDE  R11, R16, R20   // R20 = x[i] + y[i] + CA
    	ADDE  R12, R17, R21   // R21 = x[i+1] + y[i+1] + CA
    	ADDE  R14, R18, R22   // R22 = x[i+2] + y[i+2] + CA
    	ADDE  R15, R19, R23   // R23 = x[i+3] + y[i+3] + CA
    	MOVD  R20, 8(R10)     // z[i]
    	MOVD  R21, 16(R10)    // z[i+1]
    	MOVD  R22, 24(R10)    // z[i+2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/handling-errors.md

    This way, if any part of Starlette's internal code, or a Starlette extension or plug-in, raises a Starlette `HTTPException`, your handler will be able to catch and handle it.
    
    In this example, to be able to have both `HTTPException`s in the same code, Starlette's exceptions is renamed to `StarletteHTTPException`:
    
    ```Python
    from starlette.exceptions import HTTPException as StarletteHTTPException
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top