Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IRFFT (0.09 sec)

  1. 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)
Back to top