()
| 1174 | return packages |
| 1175 | |
| 1176 | |
| 1177 | def 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 |
no test coverage detected