Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 3xcomplex (0.39 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: "mhlo.fft"(%arg0) <{fft_length = dense<8> : tensor<1xi64>, fft_type = #mhlo<fft_type IFFT>}> : (tensor<8xcomplex<f32>>
      %0 = "tf.IFFT"(%arg0) : (tensor<8xcomplex<f32>>) -> tensor<8xcomplex<f32>>
      func.return %0 : tensor<8xcomplex<f32>>
    }
    
    // -----
    
    // CHECK-LABEL: func @rfft_1D
    func.func @rfft_1D(%arg0: tensor<8xf32>) -> tensor<5xcomplex<f32>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @complex(
    // CHECK-SAME:                  %[[VAL_0:.*]]: tensor<3xf32>,
    // CHECK-SAME:                  %[[VAL_1:.*]]: tensor<3xf32>) -> tensor<3xcomplex<f32>> {
    // CHECK:           %[[VAL_2:.*]] = "tf.Complex"(%[[VAL_0]], %[[VAL_1]]) : (tensor<3xf32>, tensor<3xf32>) -> tensor<3xcomplex<f32>>
    // CHECK:           return %[[VAL_2]] : tensor<3xcomplex<f32>>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			}
    		}
    		return s.newValue1(op, tt, v)
    	}
    
    	if ft.IsComplex() && tt.IsComplex() {
    		var op ssa.Op
    		if ft.Size() == tt.Size() {
    			switch ft.Size() {
    			case 8:
    				op = ssa.OpRound32F
    			case 16:
    				op = ssa.OpRound64F
    			default:
    				s.Fatalf("weird complex conversion %v -> %v", ft, tt)
    			}
    		} else if ft.Size() == 8 && tt.Size() == 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-50179`](https://youtrack.jetbrains.com/issue/KT-50179) Fix DUPLICATE_LABEL_IN_WHEN warning with new rules of complex boolean constants
    - [`KT-45334`](https://youtrack.jetbrains.com/issue/KT-45334) Prohibit referencing constructors of sealed classes by its inner members
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/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: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// What action was taken/failed regarding to the Regarding object.
    	// +optional
    	Action string `json:"action,omitempty" protobuf:"bytes,12,opt,name=action"`
    
    	// Optional secondary object for more complex actions.
    	// +optional
    	Related *ObjectReference `json:"related,omitempty" protobuf:"bytes,13,opt,name=related"`
    
    	// Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top