Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ckpt (0.32 sec)

  1. 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)
  2. 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)
  3. .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)
  4. tensorflow/compiler/aot/tfcompile.bzl

            # //tensorflow/core:lib.
            #
            # Note: to get smaller size on android for comparison, compile with:
            #    --copt=-fvisibility=hidden
            #    --copt=-D_LIBCPP_TYPE_VIS=_LIBCPP_HIDDEN
            #    --copt=-D_LIBCPP_EXCEPTION_ABI=_LIBCPP_HIDDEN
            native.cc_binary(
                name = benchmark_name,
                srcs = [benchmark_file],
                testonly = testonly,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. configure.py

      cc_opt_flags = get_from_env_or_user_or_default(environ_cp, 'CC_OPT_FLAGS',
                                                     question, default_cc_opt_flags)
      for opt in cc_opt_flags.split():
        write_to_bazelrc('build:opt --copt=%s' % opt)
        write_to_bazelrc('build:opt --host_copt=%s' % opt)
    
    
    def set_tf_cuda_clang(environ_cp):
      """set TF_CUDA_CLANG action_env.
    
      Args:
        environ_cp: copy of the os.environ.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  6. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    config_setting(
        name = "linux_x86_64_no_sse",
        values = {
            "cpu": "k8",
            "copt": "-mno-sse4.2",
        },
        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    # TODO(b/290533709): Remove this with PJRT build rule cleanup.
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BpfJump", Func, 0},
    		{"BpfProgram", Type, 0},
    		{"BpfProgram.Insns", Field, 0},
    		{"BpfProgram.Len", Field, 0},
    		{"BpfProgram.Pad_cgo_0", Field, 0},
    		{"BpfStat", Type, 0},
    		{"BpfStat.Capt", Field, 2},
    		{"BpfStat.Drop", Field, 0},
    		{"BpfStat.Padding", Field, 2},
    		{"BpfStat.Recv", Field, 0},
    		{"BpfStats", Func, 0},
    		{"BpfStmt", Func, 0},
    		{"BpfTimeout", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. RELEASE.md

            `tf.grad_pass_through(tf.quantization.quantize_and_dequantize_v2)(...)`.
    
    *   Building TensorFlow:
    
        *   Windows platform builds: TensorFlow on Windows under MSVC is now built
            with `--copt=/experimental:preprocessor
            --host_copt=/experimental:preprocessor` (see `.bazelrc` for more
            details). Builds including TensorFlow may fail with unexpected syntax
            errors if these flags are absent. See also
    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