-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path.bazelrc
More file actions
21 lines (18 loc) · 967 Bytes
/
Copy path.bazelrc
File metadata and controls
21 lines (18 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Allow empty globs across all Bazel commands (required for external deps e.g. Eigen / XLA under Bazel 8).
common --incompatible_disallow_empty_glob=false
build:oss --experimental_repo_remote_exec
build:oss --nocheck_visibility
build:oss --copt=-DMLIR_PYTHON_PACKAGE_PREFIX=jaxlib.mlir.
build:oss --override_module=torch_tpu=%workspace%/shims/torch_tpu
build:oss --action_env=CC=clang-18
build:oss --action_env=CXX=clang++-18
build:oss --repo_env=CC=clang-18
build:ci --google_default_credentials=true
build:ci --remote_cache=grpcs://remotebuildexecution.googleapis.com
build:ci --remote_instance_name=projects/ml-oss-rbe-testing/instances/default_instance
build:ci --remote_default_exec_properties=cache-silo-key=tpu_raiden_v1
build:ci --remote_local_fallback
# All C++ compiles at C++20, matching the -std=c++20 the torch extension
# targets set per-target and the flags kokoro presubmit passes globally.
build --cxxopt=-std=c++20
build --host_cxxopt=-std=c++20