Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for fbs (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/import_json.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    
    // CHECK: %[[CST:.*]] = "tfl.no_value"() <{value}> : () -> none
    // CHECK: %[[RES0:.*]] = "tfl.conv_2d"(%arg0, %arg1, %[[CST]]) <{dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "SAME", stride_h = 1 : i32, stride_w = 1 : i32}> : (tensor<256x32x32x3xf32>, tensor<16x3x3x3xf32>, none) -> tensor<256x32x32x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | flatbuffer_translate -mlir-to-tflite-flatbuffer - -o - | flatbuffer_to_string - | FileCheck --check-prefix=RoundTrip %s
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/optional_input.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir -o - | FileCheck %s
    
    // This test is to test that if the flatbuffer omits the last optional input `bias` of tfl.conv_2d op, the flatbuffer_importer will automatically adds `none` value to tfl.conv_2d.
    
    // CHECK: %[[CST:.*]] = "tfl.no_value"() <{value}> : () -> none
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/json_to_flatbuffer.cc

    #include "flatbuffers/flatbuffers.h"  // from @flatbuffers
    #include "flatbuffers/idl.h"  // from @flatbuffers
    #include "flatbuffers/util.h"  // from @flatbuffers
    
    int main(int argc, char** argv) {
      // load FlatBuffer schema (.fbs) and JSON from disk
      if (argc < 2) {
        std::cerr << "Missing input argument. Usage:\n"
                  << argv[0] << " <filename or - for stdin>\n\n";
        return 1;
      }
      const char* schema_path = argv[1];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    flatbuffer_cc_library(
        name = "runtime_metadata_fbs",
        srcs = ["runtime_metadata.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    cc_library(
        name = "execution_metadata_exporter",
        srcs = [
            "execution_metadata_exporter.cc",
        ],
        hdrs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          return std::nullopt;
        }
      }
    
      absl::Cord result;
      auto fbs = absl::string_view(
          reinterpret_cast<const char*>(builder_.GetBufferPointer()),
          builder_.GetSize());
      result.Append(fbs);
    
      // Return serialized string for the built FlatBuffer.
      if (use_buffer_offset_) {
        // Pad to be 16 bytes aligned
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match type="regex" value="2\r?\n(?:HEADER|ENTITIES)\r?\n" offset="12:60"/>
          </match>
        </magic>
      </mime-type>
    
      <mime-type type="image/vnd.fastbidsheet">
        <glob pattern="*.fbs"/>
      </mime-type>
      <mime-type type="image/vnd.fpx">
        <glob pattern="*.fpx"/>
      </mime-type>
      <mime-type type="image/vnd.fst">
        <glob pattern="*.fst"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. RELEASE.md

        weight.
    *   Adds time series models to contrib. See contrib/timeseries/README.md for
        details.
    *   Adds FULLY_CONNECTED Op to tensorflow/lite/schema.fbs
    
    ## Known Issues
    
    *   Tensorflow_gpu compilation fails with Bazel 0.5.3.
    
    ## Bug Fixes and Other Changes
    
    *   Fixes `strides` and `begin` dtype mismatch when slicing using int64 Tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top