Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for TOCO (0.08 sec)

  1. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          return DT_UINT32;
        case toco::IODataType::INT64:
          return DT_INT64;
        case toco::IODataType::UINT8:
          return DT_UINT8;
        case toco::IODataType::UINT64:
          return DT_UINT64;
        case toco::IODataType::STRING:
          return DT_STRING;
        case toco::IODataType::BOOL:
          return DT_BOOL;
        case toco::IODataType::COMPLEX64:
          return DT_COMPLEX64;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.h

    #include "tensorflow/core/public/session.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace internal {
    
    // Register all custom ops including user specified custom ops.
    Status RegisterAllCustomOps(const toco::TocoFlags& toco_flags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

    #include "tensorflow/lite/schema/schema_generated.h"
    #include "tensorflow/lite/toco/logging/conversion_log_util.h"
    #include "tensorflow/lite/toco/logging/toco_conversion_log.pb.h"
    #include "tensorflow/lite/toco/model.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_convert.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/toco_graphviz_dump_options.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.h

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given Jax model to a TF Lite FlatBuffer
    // string according to the given model flags, toco flags and tags. Returns error
    // status if it fails to convert the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.h

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given saved_model(either v1 or v2) to a TF Lite FlatBuffer
    // string according to the given model flags, toco flags and tags. Returns error
    // status if it fails to convert the input.
    Status ConvertSavedModelToTFLiteFlatBuffer(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.h

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given GraphDef to a TF Lite FlatBuffer string according to the
    // given model flags, toco flags and debug information. Returns error status if
    // it fails to convert the input.
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tensorflow/lite/tools/optimize/reduced_precision_support.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/protobuf.h"  // IWYU pragma: keep
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    using tensorflow::quantization::PyFunctionLibrary;
    
    Status HandleInputOutputArraysWithModule(
        const toco::ModelFlags& model_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.h

    #include <unordered_set>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tflite {
    // Options for exporting to Flatbuffer.
    struct FlatbufferExportOptions {
      // TocoFlags proto. The following fields are migrated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top