Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for flatbuffer_export (0.34 sec)

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

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    
    #include <stddef.h>
    #include <stdlib.h>
    
    #include <algorithm>
    #include <cassert>
    #include <cstdint>
    #include <cstdio>
    #include <cstring>
    #include <iterator>
    #include <limits>
    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/flatbuffer_export.h

    Chuan He <******@****.***> 1699497939 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/utils/convert_type.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "flatbuffer_translate_lib",
        hdrs = [
            "flatbuffer_export.h",
            "flatbuffer_export_flags.h",
            "flatbuffer_import.h",
            "utils/convert_type.h",
        ],
        deps = [
            ":flatbuffer_export",
            ":flatbuffer_import",
            "//tensorflow/compiler/mlir:op_or_arg_name_mapper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    // dependent on side effects. Reflects the current runtime logic; see below.
    bool OpHasSideEffects(Operation *op) {
      // Note that TFL::IfOp are only ever instantiated in flatbuffer_export; until
      // then, they are represented as mlir::TF::IfOp. We add them here, anyway, to
      // be future-proof.
      if (llvm::isa<TF::IfOp, TFL::IfOp, TFL::CallOnceOp, TFL::WhileOp>(op))
        return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/tf_tfl_passes.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/debug/debug.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/tf_tfl_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

    #include "mlir/IR/Dialect.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      // flatbuffer file.
      if (auto custom_op = dyn_cast<mlir::TFL::CustomOp>(*op)) {
        return custom_op.getCustomCode().starts_with("Flex");
      }
    
      // We never see TFL::IfOps in the IR -- it is flatbuffer_export that rewrites
      // them from TF::IfOps.
      if (isa<TF::IfOp>(op)) {
        return false;
      }
    
      // We assume all other TF operators are flex delegated.
      return op->getDialect()->getNamespace() == "tf";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top