Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SHUFFLED4x16INT8 (0.19 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/fully_connected_v2.mlir

      // CHECK-NEXT:      outputs: [ 2, 3 ],
      // CHECK-NEXT:      builtin_options_type: FullyConnectedOptions,
      // CHECK-NEXT:      builtin_options: {
      // CHECK-NEXT:        weights_format: SHUFFLED4x16INT8
      // CHECK-NEXT:      }
      // CHECK-NEXT:    } ],
      // CHECK-NEXT:    name: "main"
      // CHECK-NEXT:  } ],
      // CHECK-NEXT:  description: "MLIR Converted.",
      // CHECK-NEXT:  buffers: [ {
      // CHECK-EMPTY:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    // FullyConnectedOptionsWeightFormat attributes
    def TFL_FCWOEnum_Default         : I32EnumAttrCase<"DEFAULT", 0>;
    def TFL_FCWOEnum_Shuffled4x16i8  : I32EnumAttrCase<"SHUFFLED4x16INT8", 1>;
    def TFL_FullyConnectedOptionsWeightFormatAttr :
        TFL_AnyStrAttrOf<[
          TFL_FCWOEnum_Default.symbol,
          TFL_FCWOEnum_Shuffled4x16i8.symbol
        ]>;
    def TFL_FCWO_Default        : ConstantStrAttr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      time_major:bool;
      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    
    // An implementation of TensorFlow fully_connected (a.k.a Dense) layer.
    table FullyConnectedOptions {
      // Parameters for FullyConnected version 1 or above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

      return llvm::StringSwitch<tflite::FullyConnectedOptionsWeightsFormat>(str)
          .Case("DEFAULT", tflite::FullyConnectedOptionsWeightsFormat_DEFAULT)
          .Case("SHUFFLED4x16INT8",
                tflite::FullyConnectedOptionsWeightsFormat_SHUFFLED4x16INT8);
    }
    
    static tflite::LSTMKernelType ConvertTFL_LSTMKernelTypeAttrForOptionWriter(
        mlir::TFL::LSTMKernelType kernel_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      time_major:bool;
      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    
    // An implementation of TensorFlow fully_connected (a.k.a Dense) layer.
    table FullyConnectedOptions {
      // Parameters for FullyConnected version 1 or above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      fused_activation_function:ActivationFunctionType;
      merge_outputs: bool;
      asymmetric_quantize_inputs:bool;
    }
    
    // LINT.IfChange
    enum FullyConnectedOptionsWeightsFormat: byte {
      DEFAULT = 0,
      SHUFFLED4x16INT8 = 1,
    }
    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td)
    
    // An implementation of TensorFlow fully_connected (a.k.a Dense) layer.
    table FullyConnectedOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return op.emitOpError(llvm::formatv(
                   "expect 'input' num_elements % {0} == 0, got input type ", z_in))
               << input_type;
      }
    
      // TODO(jpienaar): Include more shape verification for SHUFFLED4x16INT8
      // format.
      if (op.getWeightsFormat() == "DEFAULT") {
        ShapedType output_type =
            (*op.getOutput().begin()).getType().cast<ShapedType>();
        if (!output_type.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      };
      return values;
    }
    
    inline const char * const *EnumNamesFullyConnectedOptionsWeightsFormat() {
      static const char * const names[3] = {
        "DEFAULT",
        "SHUFFLED4x16INT8",
        nullptr
      };
      return names;
    }
    
    inline const char *EnumNameFullyConnectedOptionsWeightsFormat(FullyConnectedOptionsWeightsFormat e) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top