parent
8bb7420492
commit
a836864711
4
third_party/gpus/cuda_configure.bzl
vendored
4
third_party/gpus/cuda_configure.bzl
vendored
@ -360,8 +360,8 @@ def _cuda_include_path(repository_ctx, cuda_config):
|
|||||||
)
|
)
|
||||||
inc_entries = []
|
inc_entries = []
|
||||||
if target_dir != "":
|
if target_dir != "":
|
||||||
inc_entries.append(target_dir)
|
inc_entries.append(str(repository_ctx.path(target_dir).realpath))
|
||||||
inc_entries.append(cuda_config.cuda_toolkit_path + "/include")
|
inc_entries.append(str(repository_ctx.path(cuda_config.cuda_toolkit_path + "/include").realpath))
|
||||||
return inc_entries
|
return inc_entries
|
||||||
|
|
||||||
def enable_cuda(repository_ctx):
|
def enable_cuda(repository_ctx):
|
||||||
|
2
third_party/gpus/find_cuda_config.py
vendored
2
third_party/gpus/find_cuda_config.py
vendored
@ -449,7 +449,7 @@ def find_cuda_config():
|
|||||||
cuda_version = os.environ.get("TF_CUDA_VERSION", "")
|
cuda_version = os.environ.get("TF_CUDA_VERSION", "")
|
||||||
base_paths = _list_from_env("TF_CUDA_PATHS",
|
base_paths = _list_from_env("TF_CUDA_PATHS",
|
||||||
_get_default_cuda_paths(cuda_version))
|
_get_default_cuda_paths(cuda_version))
|
||||||
base_paths = [path for path in base_paths if os.path.exists(path)]
|
base_paths = [os.path.realpath(path) for path in base_paths if os.path.exists(path)]
|
||||||
|
|
||||||
result = {}
|
result = {}
|
||||||
if "cuda" in libraries:
|
if "cuda" in libraries:
|
||||||
|
Loading…
Reference in New Issue
Block a user