Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fft_length (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::GatherV2Op, 2>,     // $axis
          CompileTimeConstantOperand<TF::IRFFT2DOp, 1>,      // $fft_length
          CompileTimeConstantOperand<TF::IRFFT3DOp, 1>,      // $fft_length
          CompileTimeConstantOperand<TF::IRFFTOp, 1>,        // $fft_length
          CompileTimeConstantOperand<TF::InTopKV2Op, 2>,     // $k
          CompileTimeConstantOperand<TF::LinSpaceOp, 2>,     // $num
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/tfl_stablehlo_pass.cc

        return true;
      if ((op_name == "stablehlo.dynamic_slice" || op_name == "stablehlo.gather") &&
          field_name == "slice_sizes")
        return true;
      if (op_name == "stablehlo.fft" && field_name == "fft_length") return true;
      if ((op_name == "stablehlo.map" || op_name == "stablehlo.reduce" ||
           op_name == "stablehlo.reverse") &&
          field_name == "dimensions")
        return true;
      if (op_name == "stablehlo.pad" &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 06:08:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

        (convertIntAttrTo32Bit $new_axis_mask),
        (convertIntAttrTo32Bit $shrink_axis_mask),
        (GetBoolAttr<false>))>;
    
    def LegalizeRfft2d : Pat<
      (TF_RFFT2DOp $input, $fft_length),
      (TFL_RFFT2dOp $input, $fft_length)>;
    
    def LegalizeComplexAbs : Pat<(TF_ComplexAbsOp $arg), (TFL_ComplexAbsOp $arg)>;
    
    def LegalizeReal : Pat<(TF_RealOp $arg), (TFL_RealOp $arg)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let hasCanonicalizer = 1;
    }
    
    def TFR_GetLengthOp : TFR_Op<"get_length", [Pure]> {
      let description = [{
        The `get_length` operation returns the number of tensors for a
        tfr.tensor_list.
    
        Example:
    
        ```mlir
        %2 = tfr.get_length(%1) : tfr.tensor -> index
        %2 = tfr.get_length %1 -> index
        ```
      }];
    
      let arguments = (ins TFR_TensorListType:$tensor_list);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/tests/canonicalize.mlir

    // CHECK-NEXT: return %[[c]] : !tfr.attr
    }
    
    // -----
    
    // CHECK-LABEL: get_length
    func.func @get_length(%arg0: !tfr.tensor<A>, %arg1: !tfr.tensor<B>) -> index {
      %0 = "tfr.build_list"(%arg0, %arg1) : (!tfr.tensor<A>, !tfr.tensor<B>) -> !tfr.tensor_list
      %1 = "tfr.get_length"(%0) : (!tfr.tensor_list) -> index
      func.return %1 : index
    
    // CHECK-NEXT: %[[c:.*]] = arith.constant 2 : index
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/tests/ops.mlir

      func.return %4 : !tfr.attr
    }
    
    // -----
    
    // CHECK-LABEL: get_length
    func.func @get_length(%arg0: !tfr.tensor<A>, %arg1: !tfr.tensor<B>) -> index {
      %0 = "tfr.build_list"(%arg0, %arg1) : (!tfr.tensor<A>, !tfr.tensor<B>) -> !tfr.tensor_list
      %1 = "tfr.get_length"(%0) : (!tfr.tensor_list) -> index
      func.return %1 : index
    }
    
    // -----
    
    // CHECK-LABEL: tfr.func
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	Accessasid uint16  // E
    	Loginname  [8]byte // 10
    	Flag1      byte    // 18
    	Flag1b2    byte    // 19
    }
    
    type Bpxystat_t struct { // DSECT BPXYSTAT
    	St_id           [4]uint8  // 0
    	St_length       uint16    // 0x4
    	St_version      uint16    // 0x6
    	St_mode         uint32    // 0x8
    	St_ino          uint32    // 0xc
    	St_dev          uint32    // 0x10
    	St_nlink        uint32    // 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top