Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. CONTRIBUTING.md

    When [building Tensorflow](https://www.tensorflow.org/install/source), passing
    `--config=dbg` to Bazel will build with debugging information and without
    optimizations, allowing you to use GDB or other debuggers to debug C++ code. For
    example, you can build the pip package with debugging information by running:
    
    ```bash
    bazel build --config=dbg //tensorflow/tools/pip_package:build_pip_package
    ```
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. .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 Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  3. 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 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
Back to top