Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for ckpt (0.1 sec)

  1. tensorflow/compiler/aot/tests/make_test_graphs.py

      with session.Session() as sess:
        sess.run(init_op)
        sess.run(y.assign(y + 42))
        # Without the checkpoint, the variable won't be set to 42.
        ckpt = os.path.join(out_dir, 'test_graph_tfadd_with_ckpt.ckpt')
        saver.save(sess, ckpt)
    
    
    def tfadd_with_ckpt_saver(out_dir):
      x = array_ops.placeholder(dtypes.int32, name='x_hold')
      y = variable_v1.VariableV1(constant_op.constant([0]), name='y_saved')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/BUILD

        ],
    )
    
    genrule(
        name = "gen_test_graphs",
        testonly = 1,
        outs = [
            "test_graph_tfadd.pb",
            "test_graph_tfadd_with_ckpt.ckpt",
            "test_graph_tfadd_with_ckpt.pb",
            "test_graph_tfadd_with_ckpt_saver.ckpt",
            "test_graph_tfadd_with_ckpt_saver.pb",
            "test_graph_tfadd_with_ckpt_saver.saver",
            "test_graph_tfassert_eq.pb",
            "test_graph_tfcond.pb",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tensorflow/c/checkpoint_reader.cc

          var_to_data_type_map_(nullptr) {
      // Depending on whether this is a V2 ckpt, initializes "reader_" or
      // "v2_reader_".
      std::vector<string> v2_path;
      if (Env::Default()->GetMatchingPaths(MetaFilename(filename), &v2_path).ok() &&
          !v2_path.empty()) {
        v2_reader_.reset(
            new BundleReader(Env::Default(), filename /* prefix to a V2 ckpt */));
        if (!v2_reader_->status().ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 21:29:12 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Nil(err)
    
    	as.False(testManager.ShouldResetExtendedResourceCapacity())
    
    	// checkpoint is absent, representing node recreation
    	ckpts, err := ckm.ListCheckpoints()
    	as.Nil(err)
    	for _, ckpt := range ckpts {
    		err = ckm.RemoveCheckpoint(ckpt)
    		as.Nil(err)
    	}
    	as.True(testManager.ShouldResetExtendedResourceCapacity())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. .bazelrc

    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    build:linux --copt="-Werror=switch"
    # Required for building with clang
    build:linux --copt="-Wno-error=unused-but-set-variable"
    
    # Linux ARM64 specific options
    build:linux_arm64 --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    build --profile=/tf/pkg/profile.json.gz
    
    # Use the rebuilt gcc toolchain to compile for manylinux2014
    build --crosstool_top="@ml2014_clang_aarch64_config_aarch64//crosstool:toolchain"
    
    build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    # Test-related settings below this point.
    test --build_tests_only --keep_going --test_output=errors --verbose_failures=true
    test --test_timeout=500,900,-1,-1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    build --crosstool_top="@ml2014_aarch64_config_aarch64//crosstool:toolchain"
    test --crosstool_top="@ml2014_aarch64_config_aarch64//crosstool:toolchain"
    
    build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3"
    
    # Test-related settings below this point.
    test --build_tests_only --keep_going --test_output=errors --verbose_failures=true
    test --test_timeout=500,900,-1,-1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. samples/ambient-argo/documentation/argo-reference-arch.dot

        app[label="application/application.yaml"]
        meta -> app
        istio[label="istio/*"]
        meta -> istio
        cni[label="istio/cni.yaml"]
        istio -> cni
        cpt[label="istio/control-plane-appset.yaml"]
        istio -> cpt
        ztunnel[label="istio/ztunnel.yaml"]
        istio -> ztunnel
        extras[label="istio/extras.yaml"]
        istio -> extras
        tags[label="istio/tags.yaml"]
        istio -> tags
        fontsize="32"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ModuleComponentSelectorSerializer.java

            String required = decoder.readString();
            String preferred = decoder.readString();
            String strictly = decoder.readString();
            int cpt = decoder.readSmallInt();
            List<String> rejects = Lists.newArrayListWithCapacity(cpt);
            for (int i = 0; i < cpt; i++) {
                rejects.add(decoder.readString());
            }
            String branch = decoder.readNullableString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/scripts/process-log.groovy

        def sorted = sortDeep(parsed)
        JsonOutput.toJson(sorted)
    }
    
    private File findProcessedDirectory() {
        int cpt = 0
        File processedDir
        while (processedDir == null) {
            processedDir = new File("processed-${cpt++}")
            if (processedDir.exists()) {
                processedDir = null
            }
        }
        processedDir.mkdirs()
        return processedDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top