MCPcopy Create free account
hub / github.com/ByteDance-Seed/Triton-distributed / get_entry_points

Function get_entry_points

python/setup.py:1176–1184  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1174 return packages
1175
1176
1177def get_entry_points():
1178 entry_points = {}
1179 if check_env_flag("TRITON_BUILD_PROTON", "ON"): # Default ON
1180 entry_points["console_scripts"] = [
1181 "proton-viewer = triton.profiler.viewer:main",
1182 "proton = triton.profiler.proton:main",
1183 ]
1184 entry_points["triton.backends"] = [f"{b.name} = triton.backends.{b.name}" for b in backends]
1185 return entry_points
1186
1187

Callers 1

setup.pyFile · 0.85

Calls 1

check_env_flagFunction · 0.85

Tested by

no test coverage detected