Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for with_tpu_support (0.05 sec)

  1. tensorflow/BUILD

    config_setting(
        name = "with_tpu_support_define",
        define_values = {"with_tpu_support": "true"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "with_tpu_support_flag",
        flag_values = {":enable_tpu_support": "True"},
        visibility = ["//visibility:public"],
    )
    
    selects.config_setting_group(
        name = "with_tpu_support",
        match_any = [
            ":with_tpu_support_define",
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Wed Nov 12 19:21:56 UTC 2025
    - 53.1K bytes
    - Viewed (0)
  2. .bazelrc

    # AWS SDK must be compiled in release mode. see: https://github.com/tensorflow/tensorflow/issues/37498
    common:dbg --copt -DDEBUG_BUILD
    
    # Config to build TF TPU
    common:tpu --define=with_tpu_support=true
    common:tpu --define=framework_shared_object=true
    common:tpu --copt=-DLIBTPU_ON_GCE
    common:tpu --define=enable_mlir_bridge=true
    
    common:rocm --copt=-Wno-gnu-offsetof-extensions
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
Back to top