Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 3xcomplex (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %res2 = "tf.DivNoNan"(%arg0, %comp2) : (tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>) -> tensor<2xcomplex<f32>>
      %res3 = "tf.MulNoNan"(%arg0, %comp3) : (tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>) -> tensor<2xcomplex<f32>>
      func.return %res1, %res2, %res3 : tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>, tensor<2xcomplex<f32>>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @mul_complex32(%arg0: tensor<14xcomplex<f32>>, %arg1: tensor<14xcomplex<f32>>) -> tensor<14xcomplex<f32>> {
      %0 = "tf.Mul"(%arg0, %arg1) : (tensor<14xcomplex<f32>>, tensor<14xcomplex<f32>>) -> tensor<14xcomplex<f32>>
      func.return %0: tensor<14xcomplex<f32>>
    
    // CHECK-LABEL: mul_complex32
    // CHECK:  tfl.mul %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<14xcomplex<f32>>
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		},
    		"add only not nulls": {
    			Original: `{}`,
    			Current:  `{}`,
    			Modified: `{"complex":{"nested":null,"nested2":"foo"}}`,
    
    			ExpectedTwoWay:         `{"complex":{"nested":null,"nested2":"foo"}}`,
    			ExpectedTwoWayResult:   `{"complex":{"nested2":"foo"}}`,
    			ExpectedThreeWay:       `{"complex":{"nested":null,"nested2":"foo"}}`,
    			ExpectedThreeWayResult: `{"complex":{"nested2":"foo"}}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let arguments = (ins
        TFL_TensorOf<[Complex<F<32>>, Complex<F<64>>]>:$input
      );
    
      let results = (outs
        TFL_TensorOf<[F32, F64]>:$output
      );
    }
    
    def TFL_RealOp : TFL_Op<"real", [
      Pure,
      SameOperandsAndResultShape]> {
      let summary = "Returns the real part of a complex number.";
    
      let description = [{
    Given a tensor `input` of complex numbers, this operation returns a tensor of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testMulComplex(tensor<? x complex<f32>>, tensor<? x complex<f32>>) -> tensor<? x complex<f32>> {
    ^bb0(%arg0: tensor<? x complex<f32>>, %arg1: tensor<? x complex<f32>>):
      // CHECK: tfl.mul %arg0, %arg1 {fused_activation_function = "NONE"}
      %0 = tfl.mul %arg0, %arg1 {fused_activation_function = "NONE"}: tensor<? x complex<f32>>
      func.return %0#0 : tensor<? x complex<f32>>
    }
    
    // CHECK-LABEL: testAddWithI64Broadcasting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	}
    }
    
    type _Complex struct {
    	a int
    	b [3]*_Complex
    	c *string
    	d map[float64]float64
    }
    
    func TestDeepEqualComplexStruct(t *testing.T) {
    	m := make(map[float64]float64)
    	stra, strb := "hello", "hello"
    	a, b := new(_Complex), new(_Complex)
    	*a = _Complex{5, [3]*_Complex{a, b, a}, &stra, m}
    	*b = _Complex{5, [3]*_Complex{b, a, a}, &strb, m}
    	if !DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	STT_LOPROC  SymType = 13 /* reserved range for processor */
    	STT_HIPROC  SymType = 15 /*   specific semantics. */
    
    	/* Non-standard symbol types. */
    	STT_RELC      SymType = 8  /* Complex relocation expression. */
    	STT_SRELC     SymType = 9  /* Signed complex relocation expression. */
    	STT_GNU_IFUNC SymType = 10 /* Indirect code object. */
    )
    
    var sttStrings = []intName{
    	{0, "STT_NOTYPE"},
    	{1, "STT_OBJECT"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		rt.Base.goString(indent+2, ""))
    }
    
    // ComplexType is a complex type.
    type ComplexType struct {
    	Base AST
    }
    
    func (ct *ComplexType) print(ps *printState) {
    	printBase(ps, ct, ct.Base)
    }
    
    func (ct *ComplexType) printInner(ps *printState) {
    	ps.writeString(" _Complex")
    }
    
    func (ct *ComplexType) Traverse(fn func(AST) bool) {
    	if fn(ct) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<16xf32>
    }
    
    // -----
    
    // Test tf.Min with complex numbers.
    // Previous versions of tensorflow said complex numbers were allowed with
    // tf.Min even though it doesn't make sense. The legalization of tf to xla
    // requires that complex types are not allowed in tf.Min, so we have an
    // explicit unit here to make sure that invariant is enforced.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    		}},
    		expectedNewlyActiveUDPServices: map[proxy.ServicePortName]bool{},
    		expectedLocalEndpoints:         map[types.NamespacedName]int{},
    	}, {
    		// Case[13]: complex add and remove
    		name:              "complex add and remove",
    		previousEndpoints: complexBefore,
    		currentEndpoints:  complexAfter,
    		oldEndpoints: map[proxy.ServicePortName][]endpointExpectation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top