├── .ci ├── README.md ├── install-project.sh ├── install-triton.sh ├── run-tests.sh └── setup.sh ├── .github ├── PAGES_SETUP.md ├── scripts │ └── check_new_commits.sh └── workflows │ ├── deploy-pages-standalone.yml │ ├── deploy-pages.yml │ ├── nightly-pypi.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── __init__.py ├── pyproject.toml ├── run.py ├── tests ├── README.md ├── __init__.py ├── example_output │ ├── logs │ │ └── dedicated_log_triton_trace_findhao_.ndjson │ ├── parsed_output │ │ ├── dedicated_log_triton_trace_findhao__mapped.ndjson.gz │ │ ├── f0_fc0_a0_cai-.ndjson.gz │ │ └── log_file_list.json │ └── parsed_output_complex │ │ ├── dedicated_log_triton_trace_findhao__mapped.ndjson.gz │ │ └── log_file_list.json ├── test_add.py └── test_tritonparse.py ├── tritonparse ├── __init__.py ├── __main__.py ├── cli.py ├── common.py ├── context_manager.py ├── event_diff.py ├── extract_source_mappings.py ├── info │ ├── __init__.py │ ├── cli.py │ ├── kernel_query.py │ └── parse_helper.py ├── ir_analysis.py ├── ir_parser.py ├── mapper.py ├── reproducer │ ├── __init__.py │ ├── ast_analyzer.py │ ├── cli.py │ ├── consolidated_result.py │ ├── function_extractor.py │ ├── import_info.py │ ├── import_parser.py │ ├── import_resolver.py │ ├── ingestion │ │ └── ndjson.py │ ├── multi_file_analyzer.py │ ├── orchestrator.py │ ├── placeholder_replacer.py │ ├── templates │ │ ├── __init__.py │ │ ├── example.py │ │ ├── loader.py │ │ ├── tritonbench.py │ │ └── utils.py │ ├── tests │ │ ├── __init__.py │ │ ├── artifacts │ │ │ ├── __init__.py │ │ │ ├── triton_fused_kernel.py │ │ │ ├── triton_preprocess.py │ │ │ └── triton_utils.py │ │ ├── test_import_parser.py │ │ ├── test_import_resolver.py │ │ └── test_multi_file_analyzer.py │ ├── types.py │ └── utils.py ├── shared_vars.py ├── source_type.py ├── sourcemap_utils.py ├── structured_logging.py ├── tools │ ├── __init__.py │ ├── decompress_bin_ndjson.py │ ├── disasm.py │ ├── extract_irs.py │ ├── format_fix.py │ ├── load_tensor.py │ ├── prettify_ndjson.py │ └── readme.md ├── tp_logger.py ├── trace_processor.py └── utils.py └── website ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public ├── dedicated_log_triton_trace_findhao__mapped.ndjson.gz ├── f0_fc0_a0_cai-.ndjson ├── favicon.ico └── logo.svg ├── scripts ├── inline-html.js └── update_deps.sh ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── ArgumentViewer.tsx │ ├── Callstack.tsx │ ├── CodeComparisonView.tsx │ ├── CodeViewer.css │ ├── CodeViewer.tsx │ ├── CompilationInfo.tsx │ ├── CopyCodeButton.tsx │ ├── DataSourceSelector.tsx │ ├── DiffComparisonView.tsx │ ├── DiffViewer.tsx │ ├── ExternalLink.tsx │ ├── SingleCodeViewer.tsx │ ├── StackDiffViewer.tsx │ ├── ToggleSwitch.tsx │ ├── TritonIRs.tsx │ └── WelcomeScreen.tsx ├── context │ └── FileDiffSession.tsx ├── index.css ├── main.tsx ├── pages │ ├── CodeView.tsx │ ├── FileDiffView.tsx │ ├── IRAnalysis.tsx │ └── KernelOverview.tsx ├── utils │ ├── dataLoader.ts │ ├── fbDetection.ts │ ├── safeImport.ts │ └── tensor.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.ci/README.md -------------------------------------------------------------------------------- /.ci/install-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.ci/install-project.sh -------------------------------------------------------------------------------- /.ci/install-triton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.ci/install-triton.sh -------------------------------------------------------------------------------- /.ci/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.ci/run-tests.sh -------------------------------------------------------------------------------- /.ci/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.ci/setup.sh -------------------------------------------------------------------------------- /.github/PAGES_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/PAGES_SETUP.md -------------------------------------------------------------------------------- /.github/scripts/check_new_commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/scripts/check_new_commits.sh -------------------------------------------------------------------------------- /.github/workflows/deploy-pages-standalone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/workflows/deploy-pages-standalone.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/workflows/nightly-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/run.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_output/logs/dedicated_log_triton_trace_findhao_.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/logs/dedicated_log_triton_trace_findhao_.ndjson -------------------------------------------------------------------------------- /tests/example_output/parsed_output/dedicated_log_triton_trace_findhao__mapped.ndjson.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/parsed_output/dedicated_log_triton_trace_findhao__mapped.ndjson.gz -------------------------------------------------------------------------------- /tests/example_output/parsed_output/f0_fc0_a0_cai-.ndjson.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/parsed_output/f0_fc0_a0_cai-.ndjson.gz -------------------------------------------------------------------------------- /tests/example_output/parsed_output/log_file_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/parsed_output/log_file_list.json -------------------------------------------------------------------------------- /tests/example_output/parsed_output_complex/dedicated_log_triton_trace_findhao__mapped.ndjson.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/parsed_output_complex/dedicated_log_triton_trace_findhao__mapped.ndjson.gz -------------------------------------------------------------------------------- /tests/example_output/parsed_output_complex/log_file_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/example_output/parsed_output_complex/log_file_list.json -------------------------------------------------------------------------------- /tests/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/test_add.py -------------------------------------------------------------------------------- /tests/test_tritonparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tests/test_tritonparse.py -------------------------------------------------------------------------------- /tritonparse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tritonparse/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/__main__.py -------------------------------------------------------------------------------- /tritonparse/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/cli.py -------------------------------------------------------------------------------- /tritonparse/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/common.py -------------------------------------------------------------------------------- /tritonparse/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/context_manager.py -------------------------------------------------------------------------------- /tritonparse/event_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/event_diff.py -------------------------------------------------------------------------------- /tritonparse/extract_source_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/extract_source_mappings.py -------------------------------------------------------------------------------- /tritonparse/info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/info/__init__.py -------------------------------------------------------------------------------- /tritonparse/info/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/info/cli.py -------------------------------------------------------------------------------- /tritonparse/info/kernel_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/info/kernel_query.py -------------------------------------------------------------------------------- /tritonparse/info/parse_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/info/parse_helper.py -------------------------------------------------------------------------------- /tritonparse/ir_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/ir_analysis.py -------------------------------------------------------------------------------- /tritonparse/ir_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/ir_parser.py -------------------------------------------------------------------------------- /tritonparse/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/mapper.py -------------------------------------------------------------------------------- /tritonparse/reproducer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tritonparse/reproducer/ast_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/ast_analyzer.py -------------------------------------------------------------------------------- /tritonparse/reproducer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/cli.py -------------------------------------------------------------------------------- /tritonparse/reproducer/consolidated_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/consolidated_result.py -------------------------------------------------------------------------------- /tritonparse/reproducer/function_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/function_extractor.py -------------------------------------------------------------------------------- /tritonparse/reproducer/import_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/import_info.py -------------------------------------------------------------------------------- /tritonparse/reproducer/import_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/import_parser.py -------------------------------------------------------------------------------- /tritonparse/reproducer/import_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/import_resolver.py -------------------------------------------------------------------------------- /tritonparse/reproducer/ingestion/ndjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/ingestion/ndjson.py -------------------------------------------------------------------------------- /tritonparse/reproducer/multi_file_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/multi_file_analyzer.py -------------------------------------------------------------------------------- /tritonparse/reproducer/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/orchestrator.py -------------------------------------------------------------------------------- /tritonparse/reproducer/placeholder_replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/placeholder_replacer.py -------------------------------------------------------------------------------- /tritonparse/reproducer/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tritonparse/reproducer/templates/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/templates/example.py -------------------------------------------------------------------------------- /tritonparse/reproducer/templates/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/templates/loader.py -------------------------------------------------------------------------------- /tritonparse/reproducer/templates/tritonbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/templates/tritonbench.py -------------------------------------------------------------------------------- /tritonparse/reproducer/templates/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/templates/utils.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/artifacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/artifacts/__init__.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/artifacts/triton_fused_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/artifacts/triton_fused_kernel.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/artifacts/triton_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/artifacts/triton_preprocess.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/artifacts/triton_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/artifacts/triton_utils.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/test_import_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/test_import_parser.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/test_import_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/test_import_resolver.py -------------------------------------------------------------------------------- /tritonparse/reproducer/tests/test_multi_file_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/tests/test_multi_file_analyzer.py -------------------------------------------------------------------------------- /tritonparse/reproducer/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/types.py -------------------------------------------------------------------------------- /tritonparse/reproducer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/reproducer/utils.py -------------------------------------------------------------------------------- /tritonparse/shared_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/shared_vars.py -------------------------------------------------------------------------------- /tritonparse/source_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/source_type.py -------------------------------------------------------------------------------- /tritonparse/sourcemap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/sourcemap_utils.py -------------------------------------------------------------------------------- /tritonparse/structured_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/structured_logging.py -------------------------------------------------------------------------------- /tritonparse/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tritonparse/tools/decompress_bin_ndjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/decompress_bin_ndjson.py -------------------------------------------------------------------------------- /tritonparse/tools/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/disasm.py -------------------------------------------------------------------------------- /tritonparse/tools/extract_irs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/extract_irs.py -------------------------------------------------------------------------------- /tritonparse/tools/format_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/format_fix.py -------------------------------------------------------------------------------- /tritonparse/tools/load_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/load_tensor.py -------------------------------------------------------------------------------- /tritonparse/tools/prettify_ndjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/prettify_ndjson.py -------------------------------------------------------------------------------- /tritonparse/tools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tools/readme.md -------------------------------------------------------------------------------- /tritonparse/tp_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/tp_logger.py -------------------------------------------------------------------------------- /tritonparse/trace_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/trace_processor.py -------------------------------------------------------------------------------- /tritonparse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/tritonparse/utils.py -------------------------------------------------------------------------------- /website/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/eslint.config.js -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/index.html -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/package.json -------------------------------------------------------------------------------- /website/public/dedicated_log_triton_trace_findhao__mapped.ndjson.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/public/dedicated_log_triton_trace_findhao__mapped.ndjson.gz -------------------------------------------------------------------------------- /website/public/f0_fc0_a0_cai-.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/public/f0_fc0_a0_cai-.ndjson -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/public/logo.svg -------------------------------------------------------------------------------- /website/scripts/inline-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/scripts/inline-html.js -------------------------------------------------------------------------------- /website/scripts/update_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/scripts/update_deps.sh -------------------------------------------------------------------------------- /website/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/App.css -------------------------------------------------------------------------------- /website/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/App.tsx -------------------------------------------------------------------------------- /website/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/assets/react.svg -------------------------------------------------------------------------------- /website/src/components/ArgumentViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/ArgumentViewer.tsx -------------------------------------------------------------------------------- /website/src/components/Callstack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/Callstack.tsx -------------------------------------------------------------------------------- /website/src/components/CodeComparisonView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/CodeComparisonView.tsx -------------------------------------------------------------------------------- /website/src/components/CodeViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/CodeViewer.css -------------------------------------------------------------------------------- /website/src/components/CodeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/CodeViewer.tsx -------------------------------------------------------------------------------- /website/src/components/CompilationInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/CompilationInfo.tsx -------------------------------------------------------------------------------- /website/src/components/CopyCodeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/CopyCodeButton.tsx -------------------------------------------------------------------------------- /website/src/components/DataSourceSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/DataSourceSelector.tsx -------------------------------------------------------------------------------- /website/src/components/DiffComparisonView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/DiffComparisonView.tsx -------------------------------------------------------------------------------- /website/src/components/DiffViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/DiffViewer.tsx -------------------------------------------------------------------------------- /website/src/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/ExternalLink.tsx -------------------------------------------------------------------------------- /website/src/components/SingleCodeViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/SingleCodeViewer.tsx -------------------------------------------------------------------------------- /website/src/components/StackDiffViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/StackDiffViewer.tsx -------------------------------------------------------------------------------- /website/src/components/ToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/ToggleSwitch.tsx -------------------------------------------------------------------------------- /website/src/components/TritonIRs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/TritonIRs.tsx -------------------------------------------------------------------------------- /website/src/components/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/components/WelcomeScreen.tsx -------------------------------------------------------------------------------- /website/src/context/FileDiffSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/context/FileDiffSession.tsx -------------------------------------------------------------------------------- /website/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/index.css -------------------------------------------------------------------------------- /website/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/main.tsx -------------------------------------------------------------------------------- /website/src/pages/CodeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/pages/CodeView.tsx -------------------------------------------------------------------------------- /website/src/pages/FileDiffView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/pages/FileDiffView.tsx -------------------------------------------------------------------------------- /website/src/pages/IRAnalysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/pages/IRAnalysis.tsx -------------------------------------------------------------------------------- /website/src/pages/KernelOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/pages/KernelOverview.tsx -------------------------------------------------------------------------------- /website/src/utils/dataLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/utils/dataLoader.ts -------------------------------------------------------------------------------- /website/src/utils/fbDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/utils/fbDetection.ts -------------------------------------------------------------------------------- /website/src/utils/safeImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/utils/safeImport.ts -------------------------------------------------------------------------------- /website/src/utils/tensor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/utils/tensor.ts -------------------------------------------------------------------------------- /website/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/src/vite-env.d.ts -------------------------------------------------------------------------------- /website/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/tsconfig.app.json -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/tsconfig.node.json -------------------------------------------------------------------------------- /website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meta-pytorch/tritonparse/HEAD/website/vite.config.ts --------------------------------------------------------------------------------