Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for chunked_fields (0.32 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.cc

      uint64_t field_checksum = 0;
      // Find chunked_fields that match the field_tags.
      for (const ChunkedField& chunked_field : chunked_message.chunked_fields()) {
        const RepeatedPtrField<FieldIndex> chunked_field_tags =
            chunked_field.field_tag();
        const ChunkedMessage& chunked_message = chunked_field.message();
        // Number of sequential field_tag matches.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    }
    
    absl::StatusOr<RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>>
    ExtractFieldTags(absl::string_view chunked_field_text_proto) {
      ChunkedField chunked_field;
      TF_RETURN_IF_ERROR(ParseTextProto(chunked_field_text_proto, &chunked_field));
      return chunked_field.field_tag();
    }
    
    TEST(FingerprintingTest, TestFieldTagMatchesInitialSubsequence) {
      TF_ASSERT_OK_AND_ASSIGN(RepeatedPtrField<FieldIndex> field_tags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_utils.h

        const RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>& a,
        const RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>& b);
    
    // Pull out the relevant data within `chunked_message`. A `chunked_field` is
    // relevant if its `field_tags` are an initial subsequence any of the
    // `target_fields` in the provided `target_fields_list`.
    absl::StatusOr<::tensorflow::proto_splitter::ChunkedMessage>
    PruneChunkedMessage(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top