Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for complexAbs (0.21 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"@":                          "\u0040",
    	"∁":                            "\u2201",
    	"∘":                          "\u2218",
    	"∁":                      "\u2201",
    	"ℂ":                       "\u2102",
    	"≅":                            "\u2245",
    	"⩭":                         "\u2a6d",
    	"∮":                          "\u222e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/fmt/fmt_test.go

    	{"%#+-6d", [3]byte{1, 11, 111}, "[+1     +11    +111  ]"},
    
    	// floates with %v
    	{"%v", 1.2345678, "1.2345678"},
    	{"%v", float32(1.2345678), "1.2345678"},
    
    	// complexes with %v
    	{"%v", 1 + 2i, "(1+2i)"},
    	{"%v", complex64(1 + 2i), "(1+2i)"},
    
    	// structs
    	{"%v", A{1, 2, "a", []int{1, 2}}, `{1 2 a [1 2]}`},
    	{"%+v", A{1, 2, "a", []int{1, 2}}, `{i:1 j:2 s:a x:[1 2]}`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K 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)
  6. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. RELEASE.md

    `tf.image.decode_jpeg` by default uses the faster DCT method, sacrificing a
    little fidelity for improved speed. One can revert to the old behavior by
    specifying the attribute `dct_method='INTEGER_ACCURATE'`. * `tf.complex_abs` has
    been removed from the Python interface. `tf.abs` supports complex tensors and
    should be used instead. * In the C++ API (in tensorflow/cc), Input, Output, etc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top