triton-model-analyzer 1.48.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. model_analyzer/__init__.py +15 -0
  2. model_analyzer/analyzer.py +448 -0
  3. model_analyzer/cli/__init__.py +15 -0
  4. model_analyzer/cli/cli.py +193 -0
  5. model_analyzer/config/__init__.py +15 -0
  6. model_analyzer/config/generate/__init__.py +15 -0
  7. model_analyzer/config/generate/automatic_model_config_generator.py +164 -0
  8. model_analyzer/config/generate/base_model_config_generator.py +352 -0
  9. model_analyzer/config/generate/brute_plus_binary_parameter_search_run_config_generator.py +164 -0
  10. model_analyzer/config/generate/brute_run_config_generator.py +154 -0
  11. model_analyzer/config/generate/concurrency_sweeper.py +75 -0
  12. model_analyzer/config/generate/config_generator_interface.py +52 -0
  13. model_analyzer/config/generate/coordinate.py +143 -0
  14. model_analyzer/config/generate/coordinate_data.py +86 -0
  15. model_analyzer/config/generate/generator_utils.py +116 -0
  16. model_analyzer/config/generate/manual_model_config_generator.py +187 -0
  17. model_analyzer/config/generate/model_config_generator_factory.py +92 -0
  18. model_analyzer/config/generate/model_profile_spec.py +74 -0
  19. model_analyzer/config/generate/model_run_config_generator.py +154 -0
  20. model_analyzer/config/generate/model_variant_name_manager.py +150 -0
  21. model_analyzer/config/generate/neighborhood.py +536 -0
  22. model_analyzer/config/generate/optuna_plus_concurrency_sweep_run_config_generator.py +141 -0
  23. model_analyzer/config/generate/optuna_run_config_generator.py +838 -0
  24. model_analyzer/config/generate/perf_analyzer_config_generator.py +312 -0
  25. model_analyzer/config/generate/quick_plus_concurrency_sweep_run_config_generator.py +130 -0
  26. model_analyzer/config/generate/quick_run_config_generator.py +753 -0
  27. model_analyzer/config/generate/run_config_generator_factory.py +329 -0
  28. model_analyzer/config/generate/search_config.py +112 -0
  29. model_analyzer/config/generate/search_dimension.py +73 -0
  30. model_analyzer/config/generate/search_dimensions.py +85 -0
  31. model_analyzer/config/generate/search_parameter.py +49 -0
  32. model_analyzer/config/generate/search_parameters.py +388 -0
  33. model_analyzer/config/input/__init__.py +15 -0
  34. model_analyzer/config/input/config_command.py +483 -0
  35. model_analyzer/config/input/config_command_profile.py +1747 -0
  36. model_analyzer/config/input/config_command_report.py +267 -0
  37. model_analyzer/config/input/config_defaults.py +236 -0
  38. model_analyzer/config/input/config_enum.py +83 -0
  39. model_analyzer/config/input/config_field.py +216 -0
  40. model_analyzer/config/input/config_list_generic.py +112 -0
  41. model_analyzer/config/input/config_list_numeric.py +151 -0
  42. model_analyzer/config/input/config_list_string.py +111 -0
  43. model_analyzer/config/input/config_none.py +71 -0
  44. model_analyzer/config/input/config_object.py +129 -0
  45. model_analyzer/config/input/config_primitive.py +81 -0
  46. model_analyzer/config/input/config_status.py +75 -0
  47. model_analyzer/config/input/config_sweep.py +83 -0
  48. model_analyzer/config/input/config_union.py +113 -0
  49. model_analyzer/config/input/config_utils.py +128 -0
  50. model_analyzer/config/input/config_value.py +243 -0
  51. model_analyzer/config/input/objects/__init__.py +15 -0
  52. model_analyzer/config/input/objects/config_model_profile_spec.py +325 -0
  53. model_analyzer/config/input/objects/config_model_report_spec.py +173 -0
  54. model_analyzer/config/input/objects/config_plot.py +198 -0
  55. model_analyzer/config/input/objects/config_protobuf_utils.py +101 -0
  56. model_analyzer/config/input/yaml_config_validator.py +82 -0
  57. model_analyzer/config/run/__init__.py +15 -0
  58. model_analyzer/config/run/model_run_config.py +313 -0
  59. model_analyzer/config/run/run_config.py +168 -0
  60. model_analyzer/constants.py +76 -0
  61. model_analyzer/device/__init__.py +15 -0
  62. model_analyzer/device/device.py +24 -0
  63. model_analyzer/device/gpu_device.py +87 -0
  64. model_analyzer/device/gpu_device_factory.py +248 -0
  65. model_analyzer/entrypoint.py +307 -0
  66. model_analyzer/log_formatter.py +65 -0
  67. model_analyzer/model_analyzer_exceptions.py +24 -0
  68. model_analyzer/model_manager.py +255 -0
  69. model_analyzer/monitor/__init__.py +15 -0
  70. model_analyzer/monitor/cpu_monitor.py +69 -0
  71. model_analyzer/monitor/dcgm/DcgmDiag.py +191 -0
  72. model_analyzer/monitor/dcgm/DcgmFieldGroup.py +83 -0
  73. model_analyzer/monitor/dcgm/DcgmGroup.py +815 -0
  74. model_analyzer/monitor/dcgm/DcgmHandle.py +141 -0
  75. model_analyzer/monitor/dcgm/DcgmJsonReader.py +69 -0
  76. model_analyzer/monitor/dcgm/DcgmReader.py +623 -0
  77. model_analyzer/monitor/dcgm/DcgmStatus.py +57 -0
  78. model_analyzer/monitor/dcgm/DcgmSystem.py +412 -0
  79. model_analyzer/monitor/dcgm/__init__.py +15 -0
  80. model_analyzer/monitor/dcgm/common/__init__.py +13 -0
  81. model_analyzer/monitor/dcgm/common/dcgm_client_cli_parser.py +194 -0
  82. model_analyzer/monitor/dcgm/common/dcgm_client_main.py +86 -0
  83. model_analyzer/monitor/dcgm/dcgm_agent.py +887 -0
  84. model_analyzer/monitor/dcgm/dcgm_collectd_plugin.py +369 -0
  85. model_analyzer/monitor/dcgm/dcgm_errors.py +395 -0
  86. model_analyzer/monitor/dcgm/dcgm_field_helpers.py +546 -0
  87. model_analyzer/monitor/dcgm/dcgm_fields.py +815 -0
  88. model_analyzer/monitor/dcgm/dcgm_fields_collectd.py +671 -0
  89. model_analyzer/monitor/dcgm/dcgm_fields_internal.py +29 -0
  90. model_analyzer/monitor/dcgm/dcgm_fluentd.py +45 -0
  91. model_analyzer/monitor/dcgm/dcgm_monitor.py +138 -0
  92. model_analyzer/monitor/dcgm/dcgm_prometheus.py +326 -0
  93. model_analyzer/monitor/dcgm/dcgm_structs.py +2357 -0
  94. model_analyzer/monitor/dcgm/dcgm_telegraf.py +65 -0
  95. model_analyzer/monitor/dcgm/dcgm_value.py +151 -0
  96. model_analyzer/monitor/dcgm/dcgmvalue.py +155 -0
  97. model_analyzer/monitor/dcgm/denylist_recommendations.py +573 -0
  98. model_analyzer/monitor/dcgm/pydcgm.py +47 -0
  99. model_analyzer/monitor/monitor.py +143 -0
  100. model_analyzer/monitor/remote_monitor.py +137 -0
  101. model_analyzer/output/__init__.py +15 -0
  102. model_analyzer/output/file_writer.py +63 -0
  103. model_analyzer/output/output_writer.py +42 -0
  104. model_analyzer/perf_analyzer/__init__.py +15 -0
  105. model_analyzer/perf_analyzer/genai_perf_config.py +206 -0
  106. model_analyzer/perf_analyzer/perf_analyzer.py +882 -0
  107. model_analyzer/perf_analyzer/perf_config.py +479 -0
  108. model_analyzer/plots/__init__.py +15 -0
  109. model_analyzer/plots/detailed_plot.py +266 -0
  110. model_analyzer/plots/plot_manager.py +224 -0
  111. model_analyzer/plots/simple_plot.py +213 -0
  112. model_analyzer/record/__init__.py +15 -0
  113. model_analyzer/record/gpu_record.py +68 -0
  114. model_analyzer/record/metrics_manager.py +887 -0
  115. model_analyzer/record/record.py +280 -0
  116. model_analyzer/record/record_aggregator.py +256 -0
  117. model_analyzer/record/types/__init__.py +15 -0
  118. model_analyzer/record/types/cpu_available_ram.py +93 -0
  119. model_analyzer/record/types/cpu_used_ram.py +93 -0
  120. model_analyzer/record/types/gpu_free_memory.py +96 -0
  121. model_analyzer/record/types/gpu_power_usage.py +107 -0
  122. model_analyzer/record/types/gpu_total_memory.py +96 -0
  123. model_analyzer/record/types/gpu_used_memory.py +96 -0
  124. model_analyzer/record/types/gpu_utilization.py +108 -0
  125. model_analyzer/record/types/inter_token_latency_avg.py +60 -0
  126. model_analyzer/record/types/inter_token_latency_base.py +74 -0
  127. model_analyzer/record/types/inter_token_latency_max.py +60 -0
  128. model_analyzer/record/types/inter_token_latency_min.py +60 -0
  129. model_analyzer/record/types/inter_token_latency_p25.py +60 -0
  130. model_analyzer/record/types/inter_token_latency_p50.py +60 -0
  131. model_analyzer/record/types/inter_token_latency_p75.py +60 -0
  132. model_analyzer/record/types/inter_token_latency_p90.py +60 -0
  133. model_analyzer/record/types/inter_token_latency_p95.py +60 -0
  134. model_analyzer/record/types/inter_token_latency_p99.py +60 -0
  135. model_analyzer/record/types/output_token_throughput.py +105 -0
  136. model_analyzer/record/types/perf_client_response_wait.py +97 -0
  137. model_analyzer/record/types/perf_client_send_recv.py +97 -0
  138. model_analyzer/record/types/perf_latency.py +111 -0
  139. model_analyzer/record/types/perf_latency_avg.py +60 -0
  140. model_analyzer/record/types/perf_latency_base.py +74 -0
  141. model_analyzer/record/types/perf_latency_p90.py +60 -0
  142. model_analyzer/record/types/perf_latency_p95.py +60 -0
  143. model_analyzer/record/types/perf_latency_p99.py +60 -0
  144. model_analyzer/record/types/perf_server_compute_infer.py +97 -0
  145. model_analyzer/record/types/perf_server_compute_input.py +97 -0
  146. model_analyzer/record/types/perf_server_compute_output.py +97 -0
  147. model_analyzer/record/types/perf_server_queue.py +97 -0
  148. model_analyzer/record/types/perf_throughput.py +105 -0
  149. model_analyzer/record/types/time_to_first_token_avg.py +60 -0
  150. model_analyzer/record/types/time_to_first_token_base.py +74 -0
  151. model_analyzer/record/types/time_to_first_token_max.py +60 -0
  152. model_analyzer/record/types/time_to_first_token_min.py +60 -0
  153. model_analyzer/record/types/time_to_first_token_p25.py +60 -0
  154. model_analyzer/record/types/time_to_first_token_p50.py +60 -0
  155. model_analyzer/record/types/time_to_first_token_p75.py +60 -0
  156. model_analyzer/record/types/time_to_first_token_p90.py +60 -0
  157. model_analyzer/record/types/time_to_first_token_p95.py +60 -0
  158. model_analyzer/record/types/time_to_first_token_p99.py +60 -0
  159. model_analyzer/reports/__init__.py +15 -0
  160. model_analyzer/reports/html_report.py +195 -0
  161. model_analyzer/reports/pdf_report.py +50 -0
  162. model_analyzer/reports/report.py +86 -0
  163. model_analyzer/reports/report_factory.py +62 -0
  164. model_analyzer/reports/report_manager.py +1376 -0
  165. model_analyzer/reports/report_utils.py +42 -0
  166. model_analyzer/result/__init__.py +15 -0
  167. model_analyzer/result/constraint_manager.py +150 -0
  168. model_analyzer/result/model_config_measurement.py +354 -0
  169. model_analyzer/result/model_constraints.py +105 -0
  170. model_analyzer/result/parameter_search.py +246 -0
  171. model_analyzer/result/result_manager.py +430 -0
  172. model_analyzer/result/result_statistics.py +159 -0
  173. model_analyzer/result/result_table.py +217 -0
  174. model_analyzer/result/result_table_manager.py +646 -0
  175. model_analyzer/result/result_utils.py +42 -0
  176. model_analyzer/result/results.py +277 -0
  177. model_analyzer/result/run_config_measurement.py +658 -0
  178. model_analyzer/result/run_config_result.py +210 -0
  179. model_analyzer/result/run_config_result_comparator.py +110 -0
  180. model_analyzer/result/sorted_results.py +151 -0
  181. model_analyzer/state/__init__.py +15 -0
  182. model_analyzer/state/analyzer_state.py +76 -0
  183. model_analyzer/state/analyzer_state_manager.py +215 -0
  184. model_analyzer/triton/__init__.py +15 -0
  185. model_analyzer/triton/client/__init__.py +15 -0
  186. model_analyzer/triton/client/client.py +234 -0
  187. model_analyzer/triton/client/client_factory.py +57 -0
  188. model_analyzer/triton/client/grpc_client.py +104 -0
  189. model_analyzer/triton/client/http_client.py +107 -0
  190. model_analyzer/triton/model/__init__.py +15 -0
  191. model_analyzer/triton/model/model_config.py +556 -0
  192. model_analyzer/triton/model/model_config_variant.py +29 -0
  193. model_analyzer/triton/server/__init__.py +15 -0
  194. model_analyzer/triton/server/server.py +76 -0
  195. model_analyzer/triton/server/server_config.py +269 -0
  196. model_analyzer/triton/server/server_docker.py +229 -0
  197. model_analyzer/triton/server/server_factory.py +306 -0
  198. model_analyzer/triton/server/server_local.py +158 -0
  199. triton_model_analyzer-1.48.0.dist-info/METADATA +52 -0
  200. triton_model_analyzer-1.48.0.dist-info/RECORD +204 -0
  201. triton_model_analyzer-1.48.0.dist-info/WHEEL +5 -0
  202. triton_model_analyzer-1.48.0.dist-info/entry_points.txt +2 -0
  203. triton_model_analyzer-1.48.0.dist-info/licenses/LICENSE +67 -0
  204. triton_model_analyzer-1.48.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,204 @@
1
+ model_analyzer/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
2
+ model_analyzer/analyzer.py,sha256=qh3g0EySfylYmFl5CTBEp1xxYyx8l4WtUYgdv0dvj30,17583
3
+ model_analyzer/constants.py,sha256=jBeMWTj84E2djnZbb4ab2-IJlWb2gXB4vILX4Uo6v5A,2067
4
+ model_analyzer/entrypoint.py,sha256=zK7R9LKgTsAT90kaD6_rrOEG1W8oNZ9jEIvc1QtI1Xw,9569
5
+ model_analyzer/log_formatter.py,sha256=qewSbdODks3iVDm1hkQt4AZwY-lcZVdzzn_NnA5JDng,1990
6
+ model_analyzer/model_analyzer_exceptions.py,sha256=2mRIaXC0oJGJqTzlo_2m9_xIh1LqfUGO2F81qahhVHo,787
7
+ model_analyzer/model_manager.py,sha256=-eLPk5NH5ZjCXo2L4MYAxk8w_XRANyH2sbGGwxbC0aw,10385
8
+ model_analyzer/cli/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
9
+ model_analyzer/cli/cli.py,sha256=1tBBfz8UJSBei4AHeGrVMctnJ1SfJq3AyJ8s-4u2FwI,6359
10
+ model_analyzer/config/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
11
+ model_analyzer/config/generate/__init__.py,sha256=4XgtPRt-6E1qrP6lxcqPIaEQb3V0yYu6EMtnVwAKdIY,647
12
+ model_analyzer/config/generate/automatic_model_config_generator.py,sha256=EhpeYZlkAoSiKq1_QunXUBzbB7jPXSU2kyi3UpnzuOs,5797
13
+ model_analyzer/config/generate/base_model_config_generator.py,sha256=sT8wghsLRgVT7-AWMTkrvdX-CeahFYdXzGEW0QgnQaI,12817
14
+ model_analyzer/config/generate/brute_plus_binary_parameter_search_run_config_generator.py,sha256=qFmo7O3XarsUqPvkjDxWJTGwm7BIZpACVmcG6bmKrUk,6285
15
+ model_analyzer/config/generate/brute_run_config_generator.py,sha256=bKYV3jFNpeE4cCIvBG8a3VYItjPzA0Lu_hyFukaQsUw,5484
16
+ model_analyzer/config/generate/concurrency_sweeper.py,sha256=_VRCRw6iNgF3fJBdP46mywsy9Jz0QTBNSXyIHM4X0gk,2907
17
+ model_analyzer/config/generate/config_generator_interface.py,sha256=4r2u5t7yrAqEeDTsfiPWEgqU0pesG3N5DChfweFPLm8,1681
18
+ model_analyzer/config/generate/coordinate.py,sha256=AJ85o99lqIjS5MMPY3XuMFNhG3xOSY8Cqqwpeam_H8I,4537
19
+ model_analyzer/config/generate/coordinate_data.py,sha256=deqoRIvO0aN5D5sNDZcjmT01bAlME2lhgoqi5xHDCEU,3129
20
+ model_analyzer/config/generate/generator_utils.py,sha256=5hj7qGzVs-oHk6UK_ggBzKJiTDVdX6MSLrXyEfU-kFE,4157
21
+ model_analyzer/config/generate/manual_model_config_generator.py,sha256=_Y78ORijg5E6c2a2zESwJzK55S8fbhoy2rqFTQq-seA,7088
22
+ model_analyzer/config/generate/model_config_generator_factory.py,sha256=5BjSJxRmrEVy3LyjIPnMT-QCz8GABa62oY1VvJfmhbE,3334
23
+ model_analyzer/config/generate/model_profile_spec.py,sha256=_OU1h_VTRbO7hdN7uKm_Emp-yZlpzRVk6_rQ5Kxx8Sc,2724
24
+ model_analyzer/config/generate/model_run_config_generator.py,sha256=Ip1djtZ3wlwG_Zs3YivIlJxmwS1TsNa_7aMCU9bCQP0,5484
25
+ model_analyzer/config/generate/model_variant_name_manager.py,sha256=qPAcvDQhkbArkW-A1A1mdRyqALUgfLlyV3dhNV6jKgs,5362
26
+ model_analyzer/config/generate/neighborhood.py,sha256=s9g9igetHvF6Xm9FhuzjbhPBVWO65SngABrX3RGOUBQ,19481
27
+ model_analyzer/config/generate/optuna_plus_concurrency_sweep_run_config_generator.py,sha256=iYCzT2gH-DH5mNbRMGM_UNyPNfRkObvjcrvy0TSKPD8,5861
28
+ model_analyzer/config/generate/optuna_run_config_generator.py,sha256=Z09p5tZP8wl0hp9NpHXpGovv1dZZkZzH11FnuXe8HhU,33099
29
+ model_analyzer/config/generate/perf_analyzer_config_generator.py,sha256=DVn5efgGWun8KwCnee1VdD9yCq0rtkB_8IvlkSaoqRk,11361
30
+ model_analyzer/config/generate/quick_plus_concurrency_sweep_run_config_generator.py,sha256=QOd2qfQYgXbLmqxYZVQKllEvhfsyfAKGks-J5z42FLU,5091
31
+ model_analyzer/config/generate/quick_run_config_generator.py,sha256=PEgmZuWL1R8VLgc15g0KJtsSrx-UIiTWy5XaIxxz-uw,28071
32
+ model_analyzer/config/generate/run_config_generator_factory.py,sha256=KPjZGz0R-upqf7pwrtWrVRroNC-aDPeGZd63XR92zDU,13008
33
+ model_analyzer/config/generate/search_config.py,sha256=mvQaoQ9wIeNEHWJtIwXh0JujPQZqXLLXmWpI7uBHDGA,3655
34
+ model_analyzer/config/generate/search_dimension.py,sha256=iUoh4IhhMy9zhMhaY-q9DoBEku4--4o4j8RYQfXUVVk,2375
35
+ model_analyzer/config/generate/search_dimensions.py,sha256=_hbpnb3gUYuCVh_LLP4FMjB1sV-IKrvekpEhi2lTCIs,2618
36
+ model_analyzer/config/generate/search_parameter.py,sha256=E-mM5bWKdPUXjT8DCmVLWuJWTs-jBC8U8ZBDmx8GGMs,1392
37
+ model_analyzer/config/generate/search_parameters.py,sha256=knTE9Vw7lS37SuGi1hZpVb01DFLubJpzAPJSbTHlQDA,14876
38
+ model_analyzer/config/input/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
39
+ model_analyzer/config/input/config_command.py,sha256=63Y6aJrGBA-tR5eljlZSNwgFbHc4hZYd8mEOpmdrJxc,18776
40
+ model_analyzer/config/input/config_command_profile.py,sha256=P5V0y_J3p6BCDCu_QBsl5AXaz_Y73y7CpiessWbuCy4,70509
41
+ model_analyzer/config/input/config_command_report.py,sha256=Igiid6XK5OB23jvXZKPI4Pg5ZsSDkXgHU-QAGOo6_-E,9535
42
+ model_analyzer/config/input/config_defaults.py,sha256=CnaT5JjCq0ne3977y5Yvcpi9fjsUdNXc45NbUU6DWe4,6684
43
+ model_analyzer/config/input/config_enum.py,sha256=lu9cUz_MY52EcLEXxcLYWqB5If6FhsM1K8w1srzhDt4,2386
44
+ model_analyzer/config/input/config_field.py,sha256=XlqlouNuPENEYCBLYtHxsfMACrFlcYZGkbh6yE1psNo,5156
45
+ model_analyzer/config/input/config_list_generic.py,sha256=-4vhDxIEMPOwYcUIkMIFzxJ61mOmX6GEgGCpTfbCFsc,3355
46
+ model_analyzer/config/input/config_list_numeric.py,sha256=d0bM3g1czsh-ziqgL4sH-osofgsWTGWLRSYWGQfxJaE,4968
47
+ model_analyzer/config/input/config_list_string.py,sha256=PTiHwdErXDC2ICfU1ru2A7d7SyPlYnkJr7c24k-zfAo,3575
48
+ model_analyzer/config/input/config_none.py,sha256=Sx8spaI12LQ8M2vpvPQLrN8UWXi77y5Z5ZCd9gJ-g4c,2120
49
+ model_analyzer/config/input/config_object.py,sha256=nP-hDFadzJKIYoTlNF-t0N93gLW2Kau2vYwmb9Vpqds,4206
50
+ model_analyzer/config/input/config_primitive.py,sha256=oC_sssWRqKnw5dyqGzjovIvkOofyZNjdeNW9PbxhKAI,2513
51
+ model_analyzer/config/input/config_status.py,sha256=NlFEiwG6EaftUbma503eKXX0TAV--qk7DHisOSqjb0Q,1883
52
+ model_analyzer/config/input/config_sweep.py,sha256=Nu5fFa8G9AkuHm_m_2P-otV_KzVqjtaatDca7TS4nDI,2929
53
+ model_analyzer/config/input/config_union.py,sha256=XwV0cW_VmfPIPPs_4EAHYG-eiYKD1gYcaB7TVFwstZA,3831
54
+ model_analyzer/config/input/config_utils.py,sha256=wpCL2M1Z1wdSxybRlivmsc5vSjHddKLU5pHTwuEYZsw,3388
55
+ model_analyzer/config/input/config_value.py,sha256=wq6jLs-chNaGGFyG8O0V8wAa2cDRwdvcn5TOZ84gK4Q,5998
56
+ model_analyzer/config/input/yaml_config_validator.py,sha256=zl_S-wR_INy6410E5S7H_K7JM4_Od9N8VEvgJ-iS7Mw,2909
57
+ model_analyzer/config/input/objects/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
58
+ model_analyzer/config/input/objects/config_model_profile_spec.py,sha256=V9MQVMNYWEUzE_83_AVaR916cwNOrTdw7QAU4TKGqyE,8662
59
+ model_analyzer/config/input/objects/config_model_report_spec.py,sha256=qr8SSi2OxcE_7fMcxsf4IClfEx-2sesVlvNRTA5ZYjw,4597
60
+ model_analyzer/config/input/objects/config_plot.py,sha256=nm5qJso7c2RiQvOx7kA0D2neDdCP2szusVamdqaWn00,4352
61
+ model_analyzer/config/input/objects/config_protobuf_utils.py,sha256=KM0feOGx09Qvv095eL81ygIp-Mba8oQdLMl_qF3Wgds,3041
62
+ model_analyzer/config/run/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
63
+ model_analyzer/config/run/model_run_config.py,sha256=-BddhpAEWvaXjWu8tEVQnby4TPbe4PZtlDZNrcWBpvI,10074
64
+ model_analyzer/config/run/run_config.py,sha256=6jcR60dWM9zDlWSQrEncXDMrL60BygRe9o_CkCdrW5g,5577
65
+ model_analyzer/device/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
66
+ model_analyzer/device/device.py,sha256=06lp0sgzfF7LY3dS5EhYPlWILrSb--t_3dpOlRyaKtQ,779
67
+ model_analyzer/device/gpu_device.py,sha256=gXpyNSKM21qDQXmyjEl_tLZ7Z2lySYCfrentBpZPiHk,2140
68
+ model_analyzer/device/gpu_device_factory.py,sha256=rdcI72-IUliIVyozt6HI79oUTVpOLa86lMZ_XyMZuw4,8215
69
+ model_analyzer/monitor/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
70
+ model_analyzer/monitor/cpu_monitor.py,sha256=pa5cejS7KmzVWkk8-rcj0d2FdQHHIl192-jLI1VNSmo,2208
71
+ model_analyzer/monitor/monitor.py,sha256=YZ2SjtcIO4XMMkJEqVvz5kumUEjY9WCwRJThn8I5Dog,3791
72
+ model_analyzer/monitor/remote_monitor.py,sha256=idw1bgaAaR0n_emSrVvJPrVkKtQFTIMWjPYc1iic9D0,5261
73
+ model_analyzer/monitor/dcgm/DcgmDiag.py,sha256=Zw9tYkNXF50TN8NLZEdh1NaogMpXoIfETElPGi8jmsM,7598
74
+ model_analyzer/monitor/dcgm/DcgmFieldGroup.py,sha256=2jzx4pGNKsSmcE2LTNBsaYgKxdcrYWzwoUXyPuUB_04,3610
75
+ model_analyzer/monitor/dcgm/DcgmGroup.py,sha256=pAb6d_Teqz62diyAeH13IIRbf_e4n6bTj_uP-no-iSw,31203
76
+ model_analyzer/monitor/dcgm/DcgmHandle.py,sha256=5r6kfVwMPV07FpeiUKZ4DwMz-1WlbWe7n0VE5vRB-ag,5324
77
+ model_analyzer/monitor/dcgm/DcgmJsonReader.py,sha256=PO7aeyaPdOMuINxbf5aTQah1ic7HBpmaUZIv8snX54E,2766
78
+ model_analyzer/monitor/dcgm/DcgmReader.py,sha256=fDu_HGFyWCsp5s-peAuvgbp3lVOj2PoI5PMj-Ubz_OI,25748
79
+ model_analyzer/monitor/dcgm/DcgmStatus.py,sha256=_4WVFdncB-CDHkwm1hIrraMuyrOKcY6W5PL7oMEFuRI,1833
80
+ model_analyzer/monitor/dcgm/DcgmSystem.py,sha256=W8BNYc1D89jxFUeVZNONVEHHds2M2NpA3X6esAyKui8,13837
81
+ model_analyzer/monitor/dcgm/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
82
+ model_analyzer/monitor/dcgm/dcgm_agent.py,sha256=oTyWN8jVlNvN3U72oxEG1VtLWds2fJlXD0OOc7ly8ow,28151
83
+ model_analyzer/monitor/dcgm/dcgm_collectd_plugin.py,sha256=Hziys41dWtsoLAWEAIwJXAjtpa_ov7aPO7I97y9SNWY,14688
84
+ model_analyzer/monitor/dcgm/dcgm_errors.py,sha256=UgdkJ-XsV1q6pg8gMqbw206MYG6OK5057wv-HmXAHzY,26541
85
+ model_analyzer/monitor/dcgm/dcgm_field_helpers.py,sha256=Q0kq8FnOhc0GBotSBN6O9AX589njmrxkwBrOjObWba4,21569
86
+ model_analyzer/monitor/dcgm/dcgm_fields.py,sha256=9Ib3i9YpCnRyWf3R98QMIRS6UnL2BVGJuXKrTttA3gU,35359
87
+ model_analyzer/monitor/dcgm/dcgm_fields_collectd.py,sha256=iXzwDWBpsTdz0r4hqhVo9ORmjS95t1MdJbV6pf5fCUs,31834
88
+ model_analyzer/monitor/dcgm/dcgm_fields_internal.py,sha256=AGG6sfWbwZ2lCLzpYMJ2M1WuFhGS3B-hJ9Ac-ODSn70,1207
89
+ model_analyzer/monitor/dcgm/dcgm_fluentd.py,sha256=0xdm7-4FQ24XMzCZAPP762iCVMWw7K0toTfDZE77nXk,1830
90
+ model_analyzer/monitor/dcgm/dcgm_monitor.py,sha256=vz2v9L9Aooe455lvZYyaNUPKgipF2LihXEw9DDhTDjg,5011
91
+ model_analyzer/monitor/dcgm/dcgm_prometheus.py,sha256=hKO6apnpckOTYp8Ic4xg84oP4T-_pRTI_RYx1ErSSfg,11544
92
+ model_analyzer/monitor/dcgm/dcgm_structs.py,sha256=x0lp0wlTdFKJNWK7xhoI38aiw4j-GgQUKL3m3sr9kkM,76874
93
+ model_analyzer/monitor/dcgm/dcgm_telegraf.py,sha256=84inNxw51QflPE1GHcdeLhuPoUGH-k1IxUA9ZqvEvfk,2306
94
+ model_analyzer/monitor/dcgm/dcgm_value.py,sha256=woFH4ITs5SDRHXW8NMuAZ4eIqztS_NbdbzFUB0e-tDU,4351
95
+ model_analyzer/monitor/dcgm/dcgmvalue.py,sha256=z4VJRQgEKLnhyuVomuKqCCD2fXyMn_MZM7aHP30CnfM,5038
96
+ model_analyzer/monitor/dcgm/denylist_recommendations.py,sha256=1AH9VIofJOkuP9HdhvTHYW-aVnej1yqwESJim-a6cSE,19774
97
+ model_analyzer/monitor/dcgm/pydcgm.py,sha256=3vjaf89DfGiYjZdIjCLhmQyYHfeH_98xhZkXAmDdDl0,1759
98
+ model_analyzer/monitor/dcgm/common/__init__.py,sha256=bnmnxk5arzrIqbs-3gAVbkxfQvTPxhhgJwfJ1uJ4bh0,622
99
+ model_analyzer/monitor/dcgm/common/dcgm_client_cli_parser.py,sha256=WC99NWifjVeTVwFBTABKbK7Elp_45h9tVdrByzGedTk,6434
100
+ model_analyzer/monitor/dcgm/common/dcgm_client_main.py,sha256=40dr4yurbZp3SPYe9oChI0fiw6fT_om08SRlbPcmRY0,3138
101
+ model_analyzer/output/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
102
+ model_analyzer/output/file_writer.py,sha256=NbAbjLFBcHZMYOJF-3Af9dqGVjS8WRGsQDidsblyzKk,1847
103
+ model_analyzer/output/output_writer.py,sha256=JZ-e0uzrpNybKaAup0hLmvIuGn9v1Z5OsB8yMHX074A,1200
104
+ model_analyzer/perf_analyzer/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
105
+ model_analyzer/perf_analyzer/genai_perf_config.py,sha256=9g4081ttiAqV1H3vft3Brqx3nArslyAFspJODboj72g,5673
106
+ model_analyzer/perf_analyzer/perf_analyzer.py,sha256=b9DZH6tyDP4yH2c2aHckKsWjoZG_07NBf-EuQigwqPU,31530
107
+ model_analyzer/perf_analyzer/perf_config.py,sha256=jAtf10JIQCEwzeOzoQy6o66uIabP0ikmfEQKyy0XfrQ,14504
108
+ model_analyzer/plots/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
109
+ model_analyzer/plots/detailed_plot.py,sha256=wEBl4mrE9k-JNKheY78b8pnziRoXiXd7xvDLivGPJsE,8567
110
+ model_analyzer/plots/plot_manager.py,sha256=CFDUSF8Xm-1Uesg8dQSC5z8JSXa40mKtDNN2kVKP0ek,8962
111
+ model_analyzer/plots/simple_plot.py,sha256=udtWBXy_Y2UPWFEP4xhb-FWfjCjB4OWJwWN5lyJALhc,7163
112
+ model_analyzer/record/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
113
+ model_analyzer/record/gpu_record.py,sha256=7X9g6Y1efqiA9a9i80iIxLLWnk6121pYtk36WD8d62c,1872
114
+ model_analyzer/record/metrics_manager.py,sha256=yy_rfXEM2xNsOlMTd_wy__aPQovZE23o4Oc4GsPleBs,32437
115
+ model_analyzer/record/record.py,sha256=asjFF8E3t6abXYd9RZCOG-w1AVVZRb5u9PHgxvMqgGA,7284
116
+ model_analyzer/record/record_aggregator.py,sha256=YFA1Av6m3oB_0kTGgvtUZEt4TZz8vL85uqnDCVRdvJI,8051
117
+ model_analyzer/record/types/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
118
+ model_analyzer/record/types/cpu_available_ram.py,sha256=DHhg_pePj8A0gSCPLIAHJnxZpdwoaWcaRMiBHyC5nTU,2431
119
+ model_analyzer/record/types/cpu_used_ram.py,sha256=h26jXoyGBHEeiE2Mvmwo6hpVaGBBYvZNQ8Fo0EMIBL4,2412
120
+ model_analyzer/record/types/gpu_free_memory.py,sha256=aIttS0ZgBIlBB_u_OU4ZeaNZNnv0jyI-TV0mfVYJTQQ,2626
121
+ model_analyzer/record/types/gpu_power_usage.py,sha256=eIlggXrIJ3E9qveprOiVNrMsITom4WiWKsLaDJMD8Lg,2903
122
+ model_analyzer/record/types/gpu_total_memory.py,sha256=zIou4DWtx0XJ1isBYZQDGjaYkl0bgZKGFlZxxgRw-I0,2631
123
+ model_analyzer/record/types/gpu_used_memory.py,sha256=MH8MfPbXJFXGVNdeQDg5QMDvmdq0BOmKjydMauLIdnU,2622
124
+ model_analyzer/record/types/gpu_utilization.py,sha256=h9wqr1NtBDpYzHKTmZyXUhRriEz1_DAJRfYITmSQdsE,2880
125
+ model_analyzer/record/types/inter_token_latency_avg.py,sha256=i7jqWwdBcRyMblzdv-s8d1ET2-BdQq39WPt5WFaO7nE,1744
126
+ model_analyzer/record/types/inter_token_latency_base.py,sha256=fUf-0aT_TbbIH7iKbQDEu2sAser6G24--MAn8Vac4bA,2062
127
+ model_analyzer/record/types/inter_token_latency_max.py,sha256=NKnLWm08zYBw999VvjqYri2jWGZTvPT3b7c4n82hCGg,1744
128
+ model_analyzer/record/types/inter_token_latency_min.py,sha256=5E0_CpGmqmjnegP7UGoScP6cGWVluqRI4n9o2u3LtA8,1744
129
+ model_analyzer/record/types/inter_token_latency_p25.py,sha256=LCIWUoh5Jae01kNYqfht5qopH4Z1O8vhZuZ5zQJf45Q,1744
130
+ model_analyzer/record/types/inter_token_latency_p50.py,sha256=4bdHwN0PYA5SPRCs4zJuHGqI2HUNdScYdJMWCrHaNQo,1744
131
+ model_analyzer/record/types/inter_token_latency_p75.py,sha256=XHLWm0ylKm9lVyAp9UwpLD1-Csvt7SqyFns6at6CCw4,1744
132
+ model_analyzer/record/types/inter_token_latency_p90.py,sha256=yH5VljNqQspcKGoGBooozrwgjmPtZlwQVtJgqH0gHKk,1744
133
+ model_analyzer/record/types/inter_token_latency_p95.py,sha256=NujnbP_dxMBkDXAcnya1kNfEtVXNjh1NQ_KIo8nNQ2w,1744
134
+ model_analyzer/record/types/inter_token_latency_p99.py,sha256=IcY3ZJWM0xlv5BNFwszbGINAMqadsr8jbMuRlNX8S7o,1744
135
+ model_analyzer/record/types/output_token_throughput.py,sha256=OLH_SHKUxfsRVuX5rf0Xx4GecOgfTB3uz77rQdi4IjY,2673
136
+ model_analyzer/record/types/perf_client_response_wait.py,sha256=h2qd8Q_QUbAPUwSmVI_n32rYuKg_81U0rhgGMCFpnLo,2607
137
+ model_analyzer/record/types/perf_client_send_recv.py,sha256=2T1kvXHvLTOP9T6U-n3XUbMTywejBFc6TsJLHQaJcJA,2585
138
+ model_analyzer/record/types/perf_latency.py,sha256=BPxl9ISL2xS8-l7bf0f5JKlJ9aleD00ADdDXy_3UrdM,3075
139
+ model_analyzer/record/types/perf_latency_avg.py,sha256=WNk5U3KwcIPj0QqGlO6Kjauh_KB54ZYUGfT8LuyatSc,1693
140
+ model_analyzer/record/types/perf_latency_base.py,sha256=q38jzx80kJlPnhyvPxufdKKz3Q2KGwu0TYN2sann39o,2053
141
+ model_analyzer/record/types/perf_latency_p90.py,sha256=PQVHw0soU1lgvMBEw2pB4omcBLdGOa7FjN25PXp4caU,1693
142
+ model_analyzer/record/types/perf_latency_p95.py,sha256=FxYL5nUxtAUCogR2wB5SmYLzRjCF8BEJ3CcVk-WVUr8,1693
143
+ model_analyzer/record/types/perf_latency_p99.py,sha256=HRM45hizbfW2CMTojJO4BwCfiIh20zgrJsH_JnkMryM,1693
144
+ model_analyzer/record/types/perf_server_compute_infer.py,sha256=SU0lBme0UgRmoX5Fw6Vw6AAJGlVxH8WlIqcpfImqKWI,2619
145
+ model_analyzer/record/types/perf_server_compute_input.py,sha256=zziigMtbfD7q9eLKhBXBj6nnp_P2Hgcz0qUPEmE9IeE,2619
146
+ model_analyzer/record/types/perf_server_compute_output.py,sha256=YAnkQNH-okLZM9e4Wx4ng_Qp5AQp3lWnqTT2xKP_Ou8,2625
147
+ model_analyzer/record/types/perf_server_queue.py,sha256=5vNvmmLy7Rxcl706fSyED9ra82GVEpaYUXIi10kv9_s,2574
148
+ model_analyzer/record/types/perf_throughput.py,sha256=XF8fqOy2fPXktf_bxQ4kwxJi59jX8YAJg4dsXjaFSOM,2637
149
+ model_analyzer/record/types/time_to_first_token_avg.py,sha256=mt5XfESroIcvBnV6jl_jS2LXpXPB0uV_-CJUcQe2qGE,1741
150
+ model_analyzer/record/types/time_to_first_token_base.py,sha256=UdwMjkKnpezglH-aWRh3vu_ttILlHiVrX6EWMTwAHQ0,2072
151
+ model_analyzer/record/types/time_to_first_token_max.py,sha256=0vui-BSseBxJjDF1F5HhtT25b4HEsYtxt71mI18U9a4,1741
152
+ model_analyzer/record/types/time_to_first_token_min.py,sha256=mwmE9xWAgWU9mYtdDv4OobZPk9EAbGVOmM1yAvS_axM,1741
153
+ model_analyzer/record/types/time_to_first_token_p25.py,sha256=-FbUoR_xPz-tbpamTQ-0YPcFMA6vip0AvDTc5quepUk,1741
154
+ model_analyzer/record/types/time_to_first_token_p50.py,sha256=3-olDxd9ibGnZcSEbKvUWWdN3hyqUJghl3a19YpCxjI,1741
155
+ model_analyzer/record/types/time_to_first_token_p75.py,sha256=sLol9yFFh99EmLoBZr5JE8-zBvIuzz705IvhgPQuWZU,1741
156
+ model_analyzer/record/types/time_to_first_token_p90.py,sha256=gpciLi4tKsp2kl07534Lq7FdiRXj6E9Eah8OuA_AMDg,1741
157
+ model_analyzer/record/types/time_to_first_token_p95.py,sha256=OdOa-8hqg6ZZAFDZOVUUI8PHdJKKK5fa09rtRpnn_io,1741
158
+ model_analyzer/record/types/time_to_first_token_p99.py,sha256=PkaOS7m9_k5a9On4SMPi7RpkK2HdXRhBlnRv-RLK2Ug,1741
159
+ model_analyzer/reports/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
160
+ model_analyzer/reports/html_report.py,sha256=KmiUKoL0qe2fQjjbqUr0XboQm_cW6KBhT8AXzg9PoUc,5450
161
+ model_analyzer/reports/pdf_report.py,sha256=ctb_02_BmgLCjPJKyKQ_NHvb4080E5wc606jEp9i1ys,1340
162
+ model_analyzer/reports/report.py,sha256=fSQHpo9f5g_rBv_Cix6D3F1fxKw9m36jaKcN0Fj0PuQ,2101
163
+ model_analyzer/reports/report_factory.py,sha256=3EctbtgHa3QKPSA7nTIX50E30GtlEv2DCaV3eC_ZzIc,2052
164
+ model_analyzer/reports/report_manager.py,sha256=4qXlbQ7gbzZE-UkoqJd_X0SsK3lkHJfi7f_w6-efh7k,51863
165
+ model_analyzer/reports/report_utils.py,sha256=zS5Juk-azotcR03Uz6mHhXNcSyQIuFESPoXNtzCZHtc,1441
166
+ model_analyzer/result/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
167
+ model_analyzer/result/constraint_manager.py,sha256=nfHsBbX-66QN19uMH8ZBn68_mAaL0M30HMIG9N8KcBg,5005
168
+ model_analyzer/result/model_config_measurement.py,sha256=qwsPF-ea17Gl5EyFu9OWNWJrvl5hWzeqAkQo5bPgwfE,10657
169
+ model_analyzer/result/model_constraints.py,sha256=HXtbGK8mswXpCwWwrAantXb4sxhGo1bCWurwf9vW9KA,2687
170
+ model_analyzer/result/parameter_search.py,sha256=vvlt8A-vTU7FOTsJwCv8P6-4QmxNgnIwC-o1ts72LTo,9069
171
+ model_analyzer/result/result_manager.py,sha256=e_PWQV_33IM4SiLI7BGcmVtEMAe6IE_dZWbaf-DkXBo,15477
172
+ model_analyzer/result/result_statistics.py,sha256=wvqs64W8rZftN59rcQiH7Bmd0dfSAD7a9BGK_K1LYTI,4343
173
+ model_analyzer/result/result_table.py,sha256=NYwiPtkD_uSBn61omvkMvuLi-FBdMq0wHDlgcz9Gk7w,5843
174
+ model_analyzer/result/result_table_manager.py,sha256=UKAMSbS8o3CtM_4uSNaDNWxX6ZlGRqohgVcrZeihtgY,23643
175
+ model_analyzer/result/result_utils.py,sha256=EJXMo7csgqwonROb8_-hFeysnu-JDfj2Gf8naWHsw2s,1379
176
+ model_analyzer/result/results.py,sha256=YZlz5oJPPYNM4Nub4r_UNKMphKDT44_30iVjp5S4lds,8675
177
+ model_analyzer/result/run_config_measurement.py,sha256=E1pN6ozY2EMjLbycF2crpUDlJew3b3j2uDgHOJvnC40,21047
178
+ model_analyzer/result/run_config_result.py,sha256=cs2fE-ISeInBErfJYG_L_3BuJjXNPDzIASYmwgU1JYE,6422
179
+ model_analyzer/result/run_config_result_comparator.py,sha256=xLRYEdF2TLRSbCl0Qj3OTfNiYa5RPtOkv_BtQibfwfc,3759
180
+ model_analyzer/result/sorted_results.py,sha256=ScWaT44X4-kplFv4lo9AClXEpA22DtwA6t8GPS2BTiw,4694
181
+ model_analyzer/state/__init__.py,sha256=1vqDBvdG5Wrb-tDrHGyS9LC_cQst-QqLt5wOa3TD9rI,647
182
+ model_analyzer/state/analyzer_state.py,sha256=s1GdPRHbhVR7l81_n7DfWEcHSJUouiscTXZwuHcmP3A,2417
183
+ model_analyzer/state/analyzer_state_manager.py,sha256=rLlFHOAs2e7R9PcZJYt0QADmYKJ2fQx-2JCpRIN0t_U,6633
184
+ model_analyzer/triton/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
185
+ model_analyzer/triton/client/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
186
+ model_analyzer/triton/client/client.py,sha256=FdgF7q7yXh6gMrZbtOPeKGhEGxOz5pJdQqy6i06cVwQ,7084
187
+ model_analyzer/triton/client/client_factory.py,sha256=hdLemDzS6gtsBhIDVnoZW-SO8uQrDOa4lLZpJS1-2Z4,1726
188
+ model_analyzer/triton/client/grpc_client.py,sha256=ysL29oaWLt0JAOiY_CR3Q3WRQdqFFpRg2GqrPuU9ja4,3701
189
+ model_analyzer/triton/client/http_client.py,sha256=OaHioW5IFNmArU2adPRTQMVN0c1hvrSI_88t-cM9ZP0,3798
190
+ model_analyzer/triton/model/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
191
+ model_analyzer/triton/model/model_config.py,sha256=5WMDQabNYttgOYrc82G7pK4Plk7XBhjCFIVOLjN2pUk,17792
192
+ model_analyzer/triton/model/model_config_variant.py,sha256=AXvqr9knOxoIqCt-RVFi8xVkWiSXOgFKIVNQNXNurZw,961
193
+ model_analyzer/triton/server/__init__.py,sha256=oA0IPbS32uHtDFDRhaVyzOCU717OJAgXZkq9db1uGaA,647
194
+ model_analyzer/triton/server/server.py,sha256=tv5mQTusEnEe4qXTQ3gd_rRo_0-i48aDKrGJOi_Sv7A,1885
195
+ model_analyzer/triton/server/server_config.py,sha256=3pNQAnUmSXVAO7pKLNWak7AFGm1BSkwz5FfFreIp0LE,7635
196
+ model_analyzer/triton/server/server_docker.py,sha256=38e_tMniv2PBiEIh2KMxgqsMZlttL0yCrpD0lKd0r5g,8248
197
+ model_analyzer/triton/server/server_factory.py,sha256=WMZfXFQfO9aeFxCWewQhRk9ygMcne0ershGZ75XQ5IE,11152
198
+ model_analyzer/triton/server/server_local.py,sha256=i5t5MaDwfvWqBA3zG15GPkGiUm6I4Bb4i0d-wBP0WNs,5406
199
+ triton_model_analyzer-1.48.0.dist-info/licenses/LICENSE,sha256=vs3gOjyLmy49WMe2XKf_2eGOmBYjlsw3QFKYPB-qpHw,9144
200
+ triton_model_analyzer-1.48.0.dist-info/METADATA,sha256=EndFgBdQhc5lMdwR8MGlxmOV8R8tehbxFX6MONLSXbM,2512
201
+ triton_model_analyzer-1.48.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
202
+ triton_model_analyzer-1.48.0.dist-info/entry_points.txt,sha256=k6Q0D76sL3qUNxe80hUThftycJAT7Sj5dBk8IjHXJoI,66
203
+ triton_model_analyzer-1.48.0.dist-info/top_level.txt,sha256=mTebknhUDSE7cCVyUtpzNVQ-tEUi8zZKFvp15xpIP2c,15
204
+ triton_model_analyzer-1.48.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ model-analyzer = model_analyzer.entrypoint:main
@@ -0,0 +1,67 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License.
30
+
31
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License.
34
+
35
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
36
+
37
+ 4. Redistribution.
38
+
39
+ You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
40
+
41
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
42
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
43
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
44
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
45
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
46
+
47
+ 5. Submission of Contributions.
48
+
49
+ Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
50
+
51
+ 6. Trademarks.
52
+
53
+ This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
54
+
55
+ 7. Disclaimer of Warranty.
56
+
57
+ Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
58
+
59
+ 8. Limitation of Liability.
60
+
61
+ In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
62
+
63
+ 9. Accepting Warranty or Additional Liability.
64
+
65
+ While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
66
+
67
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1 @@
1
+ model_analyzer