Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IRFFT (0.05 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Fixes a `CHECK`-fail in `LoadAndRemapMatrix`
        ([CVE-2021-29561](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29561))
    *   Fixes a `CHECK`-fail in `tf.raw_ops.IRFFT`
        ([CVE-2021-29562](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29562))
    *   Fixes a `CHECK`-fail in `tf.raw_ops.RFFT`
        ([CVE-2021-29563](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29563))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: "mhlo.fft"(%[[SLICED]]) <{fft_length = dense<8> : tensor<1xi64>, fft_type = #mhlo<fft_type IRFFT>}> : (tensor<5xcomplex<f32>>
      %0 = "tf.IRFFT"(%arg0, %fftlength) : (tensor<8xcomplex<f32>>, tensor<1xi32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
    }
    
    // -----
    
    // CHECK-LABEL: fft_1D_dynamic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        }
    
        int64_t expected_dim = fft_length;
        std::string fft_string = "RFFT";
        if (typeid(OpTy) == typeid(TF::IRFFTOp)) {
          expected_dim = fft_length / 2 + 1;
          fft_string = "IRFFT";
        }
        Location loc = op.getLoc();
    
        // The inner-most dim cannot be dynamic.
        if (input_ty.isDynamicDim(input_shape.size() - 1)) {
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    @compatibility(numpy)
    Equivalent to np.fft.ifftn with 3 dimensions.
    @end_compatibility}]>:$output
      );
    
      TF_DerivedOperandTypeAttr Tcomplex = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_IRFFTOp : TF_Op<"IRFFT", [Pure]> {
      let summary = "Inverse real-valued fast Fourier transform.";
    
      let description = [{
    Computes the inverse 1-dimensional discrete Fourier transform of a real-valued
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top