Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              (MHLO_FftOp $input, MHLO_FftTypeValue<"FFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    def : Pat<(TF_IFFTOp:$res $input),
              (MHLO_FftOp $input, MHLO_FftTypeValue<"IFFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    //===----------------------------------------------------------------------===//
    // GatherV2 op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-LABEL: func @ifft_1D
    func.func @ifft_1D(%arg0: tensor<8xcomplex<f32>>) -> tensor<8xcomplex<f32>> {
      // 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
    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/tensorflow/ir/tf_generated_ops.td

          mlir::RankedTensorType::get({},
          $_builder.getType<mlir::TF::ResourceType>()),
          container, shared_name, use_node_name_sharing, key_dtype, value_dtype);
        }]>];
    }
    
    def TF_IFFTOp : TF_Op<"IFFT", [Pure]> {
      let summary = "Inverse fast Fourier transform.";
    
      let description = [{
    Computes the inverse 1-dimensional discrete Fourier transform over the
    inner-most dimension of `input`.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. RELEASE.md

            object (e.g. "hparams.add_hparam(name='a.b', value=0.0)").
        *   Benchmark for tf.scan in graph and eager modes.
        *   Added complex128 support to FFT, FFT2D, FFT3D, IFFT, IFFT2D, and IFFT3D.
        *   Making ids unique in `nn.embedding_lookup_sparse`. This helps to reduce
            RPC calls for looking up the embeddings when there are repeated ids in
            the batch.
    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