Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dbg (0.16 sec)

  1. .bazelrc

    # Users can still include debug info for a specific kernel, e.g. with:
    #     --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g
    # Since this .bazelrc file is synced between the tensorflow/tensorflow repo and
    # the openxla/xla repo, also include debug info for files under xla/.
    build:dbg --per_file_copt=+.*,-tensorflow.*,-xla.*@-g0
    build:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  2. tensorflow/BUILD

    config_setting(
        name = "linux_riscv64",
        values = {"cpu": "riscv64"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "debug",
        values = {
            "compilation_mode": "dbg",
        },
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "optimized",
        values = {
            "compilation_mode": "opt",
        },
        visibility = ["//visibility:public"],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
Back to top