mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Now that expandable_segments has been merged from OSS, we can enable it in the internal build. It still defaults to off, so this should not change any behavior changes in the allocator unless the flag is explicitly set. Differential Revision: D45249535 Pull request resolved: https://github.com/pytorch/pytorch/pull/100184
67 lines
1.6 KiB
Python
67 lines
1.6 KiB
Python
def define_targets(rules, extra_defines=[]):
|
|
rules.cc_library(
|
|
name = "cuda",
|
|
srcs = rules.glob(
|
|
[
|
|
"*.cpp",
|
|
"impl/*.cpp",
|
|
],
|
|
exclude = [
|
|
"test/**/*.cpp",
|
|
],
|
|
),
|
|
hdrs = rules.glob(
|
|
[
|
|
"*.h",
|
|
"impl/*.h",
|
|
],
|
|
exclude = [
|
|
"CUDAMacros.h",
|
|
],
|
|
),
|
|
defines = ["USE_CUDA"] + extra_defines,
|
|
linkstatic = True,
|
|
local_defines = ["C10_BUILD_MAIN_LIB"],
|
|
target_compatible_with = rules.requires_cuda_enabled(),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":Macros",
|
|
"//c10/core:base",
|
|
"//c10/macros",
|
|
"//c10/util:base",
|
|
"@cuda",
|
|
],
|
|
# This library uses registration. Don't let registered
|
|
# entities be removed.
|
|
alwayslink = True,
|
|
)
|
|
|
|
rules.cc_library(
|
|
name = "Macros",
|
|
srcs = [":cuda_cmake_macros"],
|
|
hdrs = ["CUDAMacros.h"],
|
|
linkstatic = True,
|
|
local_defines = ["C10_BUILD_MAIN_LIB"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
rules.cmake_configure_file(
|
|
name = "cuda_cmake_macros",
|
|
src = "impl/cuda_cmake_macros.h.in",
|
|
out = "impl/cuda_cmake_macros.h",
|
|
definitions = [],
|
|
)
|
|
|
|
rules.filegroup(
|
|
name = "headers",
|
|
srcs = rules.glob(
|
|
[
|
|
"*.h",
|
|
"impl/*.h",
|
|
],
|
|
exclude = [
|
|
],
|
|
),
|
|
visibility = ["//c10:__pkg__"],
|
|
)
|