Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for complexAbs (0.13 sec)

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

      // CHECK:  return [[BCT]] : tensor<?x?x?x?x?xf32>
    }
    
    func.func @complex_abs(%arg0: tensor<1 x complex<f32>>) -> tensor<1xf32> {
      %0 = "tf.ComplexAbs"(%arg0) : (tensor<1 x complex<f32>>) -> tensor<1xf32>
      func.return %0: tensor<1xf32>
    
    // CHECK-LABEL: complex_abs
    // CHECK:  "tfl.complex_abs"(%arg0) : (tensor<1xcomplex<f32>>) -> tensor<1xf32>
    // 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)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&commat;":                          "\u0040",
    	"&comp;":                            "\u2201",
    	"&compfn;":                          "\u2218",
    	"&complement;":                      "\u2201",
    	"&complexes;":                       "\u2102",
    	"&cong;":                            "\u2245",
    	"&congdot;":                         "\u2a6d",
    	"&conint;":                          "\u222e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/html/entity.go

    		"commat;":                          '\U00000040',
    		"comp;":                            '\U00002201',
    		"compfn;":                          '\U00002218',
    		"complement;":                      '\U00002201',
    		"complexes;":                       '\U00002102',
    		"cong;":                            '\U00002245',
    		"congdot;":                         '\U00002A6D',
    		"conint;":                          '\U0000222E',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<?x?x?x?x?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testComplexAbs
    func.func @testComplexAbs(%arg0: tensor<? x complex<f32>>) -> tensor<?xf32> {
      // CHECK: "tfl.complex_abs"(%arg0)
      %0 = "tfl.complex_abs"(%arg0): (tensor<? x complex<f32>>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    func.func @testComplexAbsUnsupportedType(%arg0: tensor<?xf32>) -> tensor<?xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        I32Attr:$stride_w
      );
    
      let results = (outs TFL_TensorOf<[F32]>:$output);
    
      let hasOptions = 1;
    
      let customOption = "Conv3DOptions";
    }
    
    def TFL_ComplexAbsOp : TFL_Op<"complex_abs", [
      Pure,
      SameOperandsAndResultShape]> {
      let summary = "Computes the complex absolute value of a tensor.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top