Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for fingerprinting (0.22 sec)

  1. tensorflow/cc/saved_model/fingerprinting.h

    #include <string>
    
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    // Creates a FingerprintDef proto from a SavedModel (regular or chunked) and the
    // checkpoint meta file (.index) in `export_dir`.
    absl::StatusOr<FingerprintDef> CreateFingerprintDef(
        absl::string_view export_dir);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 19:55:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/fingerprinting.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/cc/saved_model/fingerprinting.h"
    
    #include <cstdint>
    #include <string>
    
    #include "absl/container/btree_map.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting_chunked_test.cc

    #include <gtest/gtest.h>
    #include "absl/container/flat_hash_set.h"
    #include "tensorflow/cc/saved_model/fingerprinting.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    namespace {
    
    TEST(FingerprintingTest, TestChunkedProto) {
      const std::string export_dir =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/BUILD

            "@local_tsl//tsl/platform:status_matchers",
        ],
    )
    
    # Linked directly into ":tensorflow_framework".
    cc_library(
        name = "fingerprinting_impl",
        srcs = [
            "fingerprinting.cc",
            "fingerprinting.h",
        ],
        visibility = [
            "//tensorflow:__pkg__",
            "//tensorflow/python:__pkg__",
        ],
        deps = [
            ":constants",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_test.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/cc/saved_model/fingerprinting.h"
    
    #include <string>
    
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/framework/graph.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

                    } catch (IOException e) {
                        LOGGER.debug("Could not load fingerprint for " + context.getSnapshot().getAbsolutePath() + ". Falling back to full entry fingerprinting", e);
                        return null;
                    }
                });
        }
    
        @Override
        Optional<HashCode> tryHash(ZipEntryContext zipEntryContext) {
            return Optional.of(zipEntryContext)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/bundle_v2.cc

    #include <string>
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "tensorflow/cc/saved_model/constants.h"
    #include "tensorflow/cc/saved_model/fingerprinting.h"
    #include "tensorflow/cc/saved_model/metrics.h"
    #include "tensorflow/cc/saved_model/reader.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/byte_order.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/fingerprinting_utils.h

    #include "tensorflow/core/protobuf/saved_model.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/tools/proto_splitter/chunk.pb.h"
    
    namespace tensorflow::saved_model::fingerprinting {
    
    namespace fingerprinting_utils_internal {
    
    using ::tensorflow::protobuf::Map;
    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasher.java

                    } catch (Exception e) {
                        LOGGER.debug("Could not load fingerprint for " + snapshotContext.getSnapshot().getAbsolutePath() + ". Falling back to full entry fingerprinting", e);
                        return null;
                    }
                });
        }
    
        @Override
        public Optional<HashCode> tryHash(ZipEntryContext zipEntryContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         *     <li>an input is not tracked.</li>
         * </ul>
         *
         * @see <a href="https://docs.gradle.org/current/userguide/incremental_build.html#sec:how_does_it_work">How fingerprinting works</a>
         */
        NON_CACHEABLE_INPUTS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top