Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for fbs (0.02 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    Yu-Cheng Ling <******@****.***> 1618860748 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/runtime_metadata.fbs

    Renjie Liu <******@****.***> 1626830261 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

    A. Unique TensorFlower <******@****.***> 1714756686 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    A. Unique TensorFlower <******@****.***> 1716905600 +0000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/BUILD

        licenses = ["notice"],
    )
    
    exports_files(
        srcs = ["schema.fbs"],
    )
    
    filegroup(
        name = "tflite_internal_cc_3p_api_deps_src",
        srcs = [
            ":schema_fbs_srcs",
            ":schema_utils.h",
        ],
        visibility = ["//tensorflow/lite:__pkg__"],
    )
    
    flatbuffer_cc_library(
        name = "schema_fbs",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":importer_test_min_max",
            ":test_schema.fbs",
            "//tensorflow/compiler/mlir:tf-opt",
            "//tensorflow/compiler/mlir/lite:flatbuffer_to_string",
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      std::string base_contents, current_contents;
      const char *base_filename = TFLITE_TF_PREFIX
          "compiler/mlir/lite/schema/schema_v3b.fbs";
      const char *current_filename =
          TFLITE_TF_PREFIX "compiler/mlir/lite/schema/schema.fbs";
    
      ASSERT_TRUE(LoadFileRaw(base_filename, &base_contents));
      ASSERT_TRUE(LoadFileRaw(current_filename, &current_contents));
      // Parse the schemas
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/multi_output_op.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir --mlir-print-debuginfo -o - | FileCheck %s
    
    // CHECK: #[[LOC0:.*]] = loc("<stdin>":0:0)
    // CHECK: "tfl.split"
    // CHECK-SAME: loc(#[[SPLIT_LOC:.*]])
    // CHECK: #[[LOC1:.*]] = loc("output0"(#[[LOC0]]))
    // CHECK: #[[LOC2:.*]] = loc("output1"(#[[LOC0]]))
    // CHECK: #[[SPLIT_LOC]] = loc(fused[#[[LOC1]], #[[LOC2]]])
    
    {
      "version": 3,
      "operator_codes": [
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/legacy_reshape.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    
    // CHECK: %0 = "tfl.pseudo_const"() <{value = dense<2> : tensor<2xi32>}> : () -> tensor<2xi32>
    // CHECK: %1 = "tfl.reshape"(%arg0, %0) : (tensor<1x4xf32>, tensor<2xi32>) -> tensor<2x2xf32>
    
    {
      "version": 3,
      "operator_codes": [
        {
          "builtin_code": "RESHAPE"
        }
      ],
      "subgraphs": [
        {
          "tensors": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 986 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/empty_input_output_names.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    
    // If input and output tensors don't have names, there shouldn't be an
    // `tf.entry_function` attribute created.
    // CHECK-NOT: tf.entry_function
    
    {
      "version": 3,
      "operator_codes": [
        {
          "builtin_code": "CONV_2D"
        }
      ],
      "subgraphs": [
        {
          "tensors": [
            {
              "shape": [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 21:03:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top