Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XLA_FLAGS (0.2 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

                          "--xla_cpu_fast_math_honor_division=false " +
                          "--xla_cpu_enable_fast_min_max=true " +
                          ctx.attr.xla_flags + " " +
                          "$${XLA_FLAGS:-}' "),
            "CUDA_VISIBLE_DEVICES": "",
        }
    
        dfsan_flags = []
        dfsan_deps = []
    
        # DFSan is only supported on linux.
        if ctx.attr.is_linux and ctx.attr.dfsan:
            dfsan_flags = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/BUILD

            mlir_components = "HloLowering",  # XLA:CPU-Next only.
            tags = [
                "manual",
                "no_mac",  # TODO(b/228273415)
            ],
            xla_flags = xla_flags,
        ),
    ] for (bench_name, config_file, template_file, sed_replace, xla_flags) in tfcompile_bench_tfmatmul_custom_tiling]
    
    tf_cc_test(
        name = "tfcompile_test",
        srcs = ["tfcompile_test.cc"],
        tags = [
            "manual",
    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/c_api_experimental.h

        unsigned char enable);
    TF_CAPI_EXPORT unsigned char TF_SetTfXlaCpuGlobalJit(unsigned char enable);
    
    // Sets XLA's auto jit mode according to the specified string, which is parsed
    // as if passed in XLA_FLAGS. This has global effect.
    TF_CAPI_EXPORT void TF_SetXlaAutoJitMode(const char* mode);
    
    // Returns whether the single GPU or general XLA auto jit optimizations are
    // enabled through MarkForCompilationPassFlags.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top