Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for hilite (0.27 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            } else {
              return tflite::TensorType_INT4;
            }
          case 8:
            return itype.isUnsigned() ? tflite::TensorType_UINT8
                                      : tflite::TensorType_INT8;
          case 16:
            return itype.isUnsigned() ? tflite::TensorType_UINT16
                                      : tflite::TensorType_INT16;
          case 32:
            return itype.isUnsigned() ? tflite::TensorType_UINT32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      return op.getFeatureGroupCount() > 1;
    }
    
    // Returns kernel output feature dimension of TFLite convolutions.
    int64_t GetConvolutionKernelOutputFeatureDimension(bool is_depthwise) {
      return is_depthwise ? 3 : 0;
    }
    
    // Returns kernel input feature dimension of TFLite convolutions.
    int64_t GetConvolutionKernelInputFeatureDimension(bool is_depthwise) {
      return is_depthwise ? 0 : 3;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }  // namespace TFL
    }  // namespace mlir
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_dialect.cc.inc"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_enums.cc.inc"
    #define GET_ATTRDEF_CLASSES
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_attrdefs.cc.inc"
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.cc.inc"
    
    namespace mlir {
    namespace TFL {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      // Whether the TFLite operator has options in the schema representation.
      bit hasOptions = 0b0;
      // Whether the TFLite operator has options2 in the schema representation.
      bit hasOptions2 = 0b0;
    
      // Use to specify a custom options type for TFLite operators where
      // the option's name does not match the TFLite operator's name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK{LITERAL}: dense<[1, 2]> : tensor<2xi32>
    // CHECK: %[[DILATE:.+]] = "tfl.dilate"(%[[ARG0]], %[[INTERIOR]], %[[ARG1]]) : (tensor<2x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>, tensor<2xi32>, tensor<!quant.uniform<i8:f32, 2.000000e+00:-1>>) -> tensor<3x7x!quant.uniform<i8:f32, 2.000000e+00:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testDilate
    func.func @testDilate(%arg0: tensor<3x4x5xf32>) -> tensor<5x7x9xf32> {
      // CHECK: "tfl.dilate"(%arg0, %cst, %cst_0)
      %cst = arith.constant dense<1> : tensor<3xi32>
      %cst_0 = arith.constant dense<-1.0> : tensor<f32>
      %0 = "tfl.dilate"(%arg0, %cst, %cst_0) : (tensor<3x4x5xf32>, tensor<3xi32>, tensor<f32>) -> tensor<5x7x9xf32>
      func.return %0 : tensor<5x7x9xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    #include "stablehlo/dialect/ChloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // expected-warning @+1 {{TFLite does not support batched input for non_max_suppression_padded}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    // A helper class to import a TensorFlow model expressed in SavedModel V1 into
    // an MLIR Module in SavedModel dialect.
    //
    // TODO(b/179683149): Rename this class to avoid confusion with TFLite.
    class SavedModelSignatureDefImporterLite {
     public:
      // Main entry point: converts all functions (specified by SignatureDefs) in
      // the given meta graph to an MLIR Module.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top