We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c6bea commit f0f41baCopy full SHA for f0f41ba
1 file changed
build_tools/jax.py
@@ -102,9 +102,9 @@ def setup_jax_extension(
102
cxx_flags.append("-g0")
103
104
if bool(int(os.getenv("NVTE_UB_WITH_MPI", "0"))):
105
- assert os.getenv("MPI_HOME") is not None, (
106
- "MPI_HOME=/path/to/mpi must be set when compiling with NVTE_UB_WITH_MPI=1!"
107
- )
+ assert (
+ os.getenv("MPI_HOME") is not None
+ ), "MPI_HOME=/path/to/mpi must be set when compiling with NVTE_UB_WITH_MPI=1!"
108
mpi_path = Path(os.getenv("MPI_HOME"))
109
include_dirs.append(mpi_path / "include")
110
cxx_flags.append("-DNVTE_UB_WITH_MPI")
0 commit comments