├── .flake8 ├── .github └── workflows │ ├── build_and_upload_wheels.yaml │ ├── test-for-pandas-3.yml │ └── unit-tests.yaml ├── .gitignore ├── .gitlab-ci.yml ├── .readthedocs.yml ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── codecov.yml ├── docs ├── Makefile ├── _pygments │ └── style.py ├── _static │ ├── 2024_08_08_Thicket_Tutorial.pdf │ ├── 2025_07_20_Thicket_HPDC25_Tutorial.pdf │ ├── 2025_08_26_Thicket_HPCIC25_Tutorial.pdf │ └── custom.css ├── composing_parallel_sorting_data.ipynb ├── conf.py ├── developer_guide.rst ├── environment.yml ├── extrap-with-metadata-aggregated.ipynb ├── generating_data.rst ├── getting_started.rst ├── groupby_aggregate.ipynb ├── images │ ├── Table-Tree-Revised-gradien.png │ ├── appended_statsdf.png │ ├── empty_statsdf.png │ ├── ensembleframe.png │ ├── metadataframe.png │ ├── ql-original.png │ ├── thicket-hpcic25-tutorial-slide-preview.jpg │ ├── thicket-hpdc25-tutorial-slide-preview.jpg │ ├── thicket-tutorial-slide-preview.png │ ├── thicket_gifs_and_source_vids │ │ ├── metadata_changing_axis.gif │ │ ├── metadata_color_encoding_and_subselecting.gif │ │ ├── metadata_selecting_data.gif │ │ ├── metadata_vis_load.gif │ │ └── topdown_analysis.gif │ ├── thicket_tutorial_34_1.png │ ├── thicket_tutorial_36_1.png │ └── thicket_tutorial_37_1.png ├── index.rst ├── modeling_parallel_sorting_data.ipynb ├── nsight_compute.ipynb ├── publications.rst ├── query_language.ipynb ├── requirements.txt ├── source │ ├── modules.rst │ ├── thicket.external.rst │ ├── thicket.rst │ ├── thicket.stats.rst │ └── thicket.vis.rst ├── stats-functions.ipynb ├── thicket_rajaperf_clustering.ipynb ├── thicket_tutorial.ipynb ├── tma_speedup_clustering.ipynb ├── tutorial_materials.rst ├── user_guide.rst └── vis_docs.rst ├── install.sh ├── license.py ├── logo-notext.png ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── setup.py └── thicket ├── __init__.py ├── ensemble.py ├── external ├── __init__.py └── console.py ├── groupby.py ├── helpers.py ├── model_extrap.py ├── ncu.py ├── query.py ├── stats ├── __init__.py ├── calc_boxplot_statistics.py ├── calc_temporal_pattern.py ├── check_normality.py ├── confidence_interval.py ├── correlation_nodewise.py ├── display_boxplot.py ├── display_heatmap.py ├── display_histogram.py ├── display_violinplot.py ├── distance.py ├── maximum.py ├── mean.py ├── median.py ├── minimum.py ├── percentiles.py ├── preference.py ├── scoring.py ├── stats_utils.py ├── std.py ├── sum.py ├── ttest.py └── variance.py ├── tests ├── conftest.py ├── data │ ├── caliper-ordered │ │ ├── 230525-151052_1930517_eWbGeyrlBOPT.cali │ │ └── 230525-151052_1930517_eWbGeyrlBOPT_copy.cali │ ├── example-json │ │ └── user_ensemble.json │ ├── example-timeseries │ │ ├── cxx.cali │ │ ├── mem_power_timeseries.cali │ │ ├── memory_timeseries.cali │ │ └── timeseries.cali │ ├── mpi_scaling_cali │ │ ├── 125_cores.cali │ │ ├── 216_cores.cali │ │ ├── 27_cores.cali │ │ ├── 343_cores.cali │ │ └── 64_cores.cali │ └── rajaperf │ │ ├── lassen │ │ ├── clang10.0.1_nvcc10.2.89_1048576 │ │ │ ├── 1 │ │ │ │ ├── Base_CUDA-block_128.cali │ │ │ │ └── Base_CUDA-block_256.cali │ │ │ ├── 2 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 3 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 4 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 5 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 6 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 7 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 8 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ ├── 9 │ │ │ │ └── Base_CUDA-block_128.cali │ │ │ └── 10 │ │ │ │ └── Base_CUDA-block_128.cali │ │ └── clang10.0.1_nvcc10.2.89_2097152 │ │ │ └── 1 │ │ │ ├── Base_CUDA-block_128.cali │ │ │ └── Base_CUDA-block_256.cali │ │ └── quartz │ │ ├── gcc10.3.1_1048576 │ │ └── O3 │ │ │ ├── 1 │ │ │ └── Base_Seq-default.cali │ │ │ ├── 2 │ │ │ └── Base_Seq-default.cali │ │ │ ├── 3 │ │ │ └── Base_Seq-default.cali │ │ │ └── 4 │ │ │ └── Base_Seq-default.cali │ │ └── gcc10.3.1_2097152 │ │ └── O3 │ │ └── 1 │ │ └── Base_Seq-default.cali ├── test_add_root_node.py ├── test_caliperreader.py ├── test_concat_thickets.py ├── test_copy.py ├── test_display.py ├── test_ensemble.py ├── test_filter_metadata.py ├── test_filter_profile.py ├── test_filter_stats.py ├── test_from_statsframes.py ├── test_get_node.py ├── test_groupby.py ├── test_intersection.py ├── test_json_interface.py ├── test_model_extrap.py ├── test_ncu.py ├── test_pickle.py ├── test_query.py ├── test_query_stats.py ├── test_reader_dispatch.py ├── test_stats.py ├── test_thicket.py ├── test_timeseries.py ├── test_tree.py └── utils.py ├── thicket.py ├── utils.py ├── version.py └── vis ├── __init__.py ├── package.json ├── scripts ├── globals.js ├── pcp │ ├── datautil.js │ ├── globals.js │ ├── pcp.js │ ├── scatter.js │ ├── stackedarea.js │ └── store.js ├── topdown │ ├── stackedbars.js │ └── topdown.js └── treetable.js ├── static ├── pcp_bundle.html ├── pcp_bundle.js ├── topdown_bundle.html ├── topdown_bundle.js ├── treetable_bundle.html └── treetable_bundle.js ├── static_fixer.py ├── templates ├── pcp.html ├── topdown.html └── treetable.html ├── visualizations.py └── webpack.config.js /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/build_and_upload_wheels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.github/workflows/build_and_upload_wheels.yaml -------------------------------------------------------------------------------- /.github/workflows/test-for-pandas-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.github/workflows/test-for-pandas-3.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.github/workflows/unit-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/_pygments/style.py -------------------------------------------------------------------------------- /docs/_static/2024_08_08_Thicket_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/_static/2024_08_08_Thicket_Tutorial.pdf -------------------------------------------------------------------------------- /docs/_static/2025_07_20_Thicket_HPDC25_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/_static/2025_07_20_Thicket_HPDC25_Tutorial.pdf -------------------------------------------------------------------------------- /docs/_static/2025_08_26_Thicket_HPCIC25_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/_static/2025_08_26_Thicket_HPCIC25_Tutorial.pdf -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/composing_parallel_sorting_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/composing_parallel_sorting_data.ipynb -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developer_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/developer_guide.rst -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/extrap-with-metadata-aggregated.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/extrap-with-metadata-aggregated.ipynb -------------------------------------------------------------------------------- /docs/generating_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/generating_data.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/groupby_aggregate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/groupby_aggregate.ipynb -------------------------------------------------------------------------------- /docs/images/Table-Tree-Revised-gradien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/Table-Tree-Revised-gradien.png -------------------------------------------------------------------------------- /docs/images/appended_statsdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/appended_statsdf.png -------------------------------------------------------------------------------- /docs/images/empty_statsdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/empty_statsdf.png -------------------------------------------------------------------------------- /docs/images/ensembleframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/ensembleframe.png -------------------------------------------------------------------------------- /docs/images/metadataframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/metadataframe.png -------------------------------------------------------------------------------- /docs/images/ql-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/ql-original.png -------------------------------------------------------------------------------- /docs/images/thicket-hpcic25-tutorial-slide-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket-hpcic25-tutorial-slide-preview.jpg -------------------------------------------------------------------------------- /docs/images/thicket-hpdc25-tutorial-slide-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket-hpdc25-tutorial-slide-preview.jpg -------------------------------------------------------------------------------- /docs/images/thicket-tutorial-slide-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket-tutorial-slide-preview.png -------------------------------------------------------------------------------- /docs/images/thicket_gifs_and_source_vids/metadata_changing_axis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_gifs_and_source_vids/metadata_changing_axis.gif -------------------------------------------------------------------------------- /docs/images/thicket_gifs_and_source_vids/metadata_color_encoding_and_subselecting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_gifs_and_source_vids/metadata_color_encoding_and_subselecting.gif -------------------------------------------------------------------------------- /docs/images/thicket_gifs_and_source_vids/metadata_selecting_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_gifs_and_source_vids/metadata_selecting_data.gif -------------------------------------------------------------------------------- /docs/images/thicket_gifs_and_source_vids/metadata_vis_load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_gifs_and_source_vids/metadata_vis_load.gif -------------------------------------------------------------------------------- /docs/images/thicket_gifs_and_source_vids/topdown_analysis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_gifs_and_source_vids/topdown_analysis.gif -------------------------------------------------------------------------------- /docs/images/thicket_tutorial_34_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_tutorial_34_1.png -------------------------------------------------------------------------------- /docs/images/thicket_tutorial_36_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_tutorial_36_1.png -------------------------------------------------------------------------------- /docs/images/thicket_tutorial_37_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/images/thicket_tutorial_37_1.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modeling_parallel_sorting_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/modeling_parallel_sorting_data.ipynb -------------------------------------------------------------------------------- /docs/nsight_compute.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/nsight_compute.ipynb -------------------------------------------------------------------------------- /docs/publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/publications.rst -------------------------------------------------------------------------------- /docs/query_language.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/query_language.ipynb -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/thicket.external.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/source/thicket.external.rst -------------------------------------------------------------------------------- /docs/source/thicket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/source/thicket.rst -------------------------------------------------------------------------------- /docs/source/thicket.stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/source/thicket.stats.rst -------------------------------------------------------------------------------- /docs/source/thicket.vis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/source/thicket.vis.rst -------------------------------------------------------------------------------- /docs/stats-functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/stats-functions.ipynb -------------------------------------------------------------------------------- /docs/thicket_rajaperf_clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/thicket_rajaperf_clustering.ipynb -------------------------------------------------------------------------------- /docs/thicket_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/thicket_tutorial.ipynb -------------------------------------------------------------------------------- /docs/tma_speedup_clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/tma_speedup_clustering.ipynb -------------------------------------------------------------------------------- /docs/tutorial_materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/tutorial_materials.rst -------------------------------------------------------------------------------- /docs/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/user_guide.rst -------------------------------------------------------------------------------- /docs/vis_docs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/docs/vis_docs.rst -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/install.sh -------------------------------------------------------------------------------- /license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/license.py -------------------------------------------------------------------------------- /logo-notext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/logo-notext.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/setup.py -------------------------------------------------------------------------------- /thicket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/__init__.py -------------------------------------------------------------------------------- /thicket/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/ensemble.py -------------------------------------------------------------------------------- /thicket/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thicket/external/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/external/console.py -------------------------------------------------------------------------------- /thicket/groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/groupby.py -------------------------------------------------------------------------------- /thicket/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/helpers.py -------------------------------------------------------------------------------- /thicket/model_extrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/model_extrap.py -------------------------------------------------------------------------------- /thicket/ncu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/ncu.py -------------------------------------------------------------------------------- /thicket/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/query.py -------------------------------------------------------------------------------- /thicket/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/__init__.py -------------------------------------------------------------------------------- /thicket/stats/calc_boxplot_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/calc_boxplot_statistics.py -------------------------------------------------------------------------------- /thicket/stats/calc_temporal_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/calc_temporal_pattern.py -------------------------------------------------------------------------------- /thicket/stats/check_normality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/check_normality.py -------------------------------------------------------------------------------- /thicket/stats/confidence_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/confidence_interval.py -------------------------------------------------------------------------------- /thicket/stats/correlation_nodewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/correlation_nodewise.py -------------------------------------------------------------------------------- /thicket/stats/display_boxplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/display_boxplot.py -------------------------------------------------------------------------------- /thicket/stats/display_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/display_heatmap.py -------------------------------------------------------------------------------- /thicket/stats/display_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/display_histogram.py -------------------------------------------------------------------------------- /thicket/stats/display_violinplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/display_violinplot.py -------------------------------------------------------------------------------- /thicket/stats/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/distance.py -------------------------------------------------------------------------------- /thicket/stats/maximum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/maximum.py -------------------------------------------------------------------------------- /thicket/stats/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/mean.py -------------------------------------------------------------------------------- /thicket/stats/median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/median.py -------------------------------------------------------------------------------- /thicket/stats/minimum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/minimum.py -------------------------------------------------------------------------------- /thicket/stats/percentiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/percentiles.py -------------------------------------------------------------------------------- /thicket/stats/preference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/preference.py -------------------------------------------------------------------------------- /thicket/stats/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/scoring.py -------------------------------------------------------------------------------- /thicket/stats/stats_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/stats_utils.py -------------------------------------------------------------------------------- /thicket/stats/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/std.py -------------------------------------------------------------------------------- /thicket/stats/sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/sum.py -------------------------------------------------------------------------------- /thicket/stats/ttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/ttest.py -------------------------------------------------------------------------------- /thicket/stats/variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/stats/variance.py -------------------------------------------------------------------------------- /thicket/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/conftest.py -------------------------------------------------------------------------------- /thicket/tests/data/caliper-ordered/230525-151052_1930517_eWbGeyrlBOPT.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/caliper-ordered/230525-151052_1930517_eWbGeyrlBOPT.cali -------------------------------------------------------------------------------- /thicket/tests/data/caliper-ordered/230525-151052_1930517_eWbGeyrlBOPT_copy.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/caliper-ordered/230525-151052_1930517_eWbGeyrlBOPT_copy.cali -------------------------------------------------------------------------------- /thicket/tests/data/example-json/user_ensemble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/example-json/user_ensemble.json -------------------------------------------------------------------------------- /thicket/tests/data/example-timeseries/cxx.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/example-timeseries/cxx.cali -------------------------------------------------------------------------------- /thicket/tests/data/example-timeseries/mem_power_timeseries.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/example-timeseries/mem_power_timeseries.cali -------------------------------------------------------------------------------- /thicket/tests/data/example-timeseries/memory_timeseries.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/example-timeseries/memory_timeseries.cali -------------------------------------------------------------------------------- /thicket/tests/data/example-timeseries/timeseries.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/example-timeseries/timeseries.cali -------------------------------------------------------------------------------- /thicket/tests/data/mpi_scaling_cali/125_cores.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/mpi_scaling_cali/125_cores.cali -------------------------------------------------------------------------------- /thicket/tests/data/mpi_scaling_cali/216_cores.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/mpi_scaling_cali/216_cores.cali -------------------------------------------------------------------------------- /thicket/tests/data/mpi_scaling_cali/27_cores.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/mpi_scaling_cali/27_cores.cali -------------------------------------------------------------------------------- /thicket/tests/data/mpi_scaling_cali/343_cores.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/mpi_scaling_cali/343_cores.cali -------------------------------------------------------------------------------- /thicket/tests/data/mpi_scaling_cali/64_cores.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/mpi_scaling_cali/64_cores.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/1/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/1/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/1/Base_CUDA-block_256.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/1/Base_CUDA-block_256.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/10/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/10/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/2/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/2/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/3/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/3/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/4/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/4/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/5/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/5/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/6/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/6/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/7/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/7/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/8/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/8/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/9/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_1048576/9/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_2097152/1/Base_CUDA-block_128.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_2097152/1/Base_CUDA-block_128.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_2097152/1/Base_CUDA-block_256.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/lassen/clang10.0.1_nvcc10.2.89_2097152/1/Base_CUDA-block_256.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/1/Base_Seq-default.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/1/Base_Seq-default.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/2/Base_Seq-default.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/2/Base_Seq-default.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/3/Base_Seq-default.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/3/Base_Seq-default.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/4/Base_Seq-default.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/quartz/gcc10.3.1_1048576/O3/4/Base_Seq-default.cali -------------------------------------------------------------------------------- /thicket/tests/data/rajaperf/quartz/gcc10.3.1_2097152/O3/1/Base_Seq-default.cali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/data/rajaperf/quartz/gcc10.3.1_2097152/O3/1/Base_Seq-default.cali -------------------------------------------------------------------------------- /thicket/tests/test_add_root_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_add_root_node.py -------------------------------------------------------------------------------- /thicket/tests/test_caliperreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_caliperreader.py -------------------------------------------------------------------------------- /thicket/tests/test_concat_thickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_concat_thickets.py -------------------------------------------------------------------------------- /thicket/tests/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_copy.py -------------------------------------------------------------------------------- /thicket/tests/test_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_display.py -------------------------------------------------------------------------------- /thicket/tests/test_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_ensemble.py -------------------------------------------------------------------------------- /thicket/tests/test_filter_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_filter_metadata.py -------------------------------------------------------------------------------- /thicket/tests/test_filter_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_filter_profile.py -------------------------------------------------------------------------------- /thicket/tests/test_filter_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_filter_stats.py -------------------------------------------------------------------------------- /thicket/tests/test_from_statsframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_from_statsframes.py -------------------------------------------------------------------------------- /thicket/tests/test_get_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_get_node.py -------------------------------------------------------------------------------- /thicket/tests/test_groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_groupby.py -------------------------------------------------------------------------------- /thicket/tests/test_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_intersection.py -------------------------------------------------------------------------------- /thicket/tests/test_json_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_json_interface.py -------------------------------------------------------------------------------- /thicket/tests/test_model_extrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_model_extrap.py -------------------------------------------------------------------------------- /thicket/tests/test_ncu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_ncu.py -------------------------------------------------------------------------------- /thicket/tests/test_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_pickle.py -------------------------------------------------------------------------------- /thicket/tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_query.py -------------------------------------------------------------------------------- /thicket/tests/test_query_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_query_stats.py -------------------------------------------------------------------------------- /thicket/tests/test_reader_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_reader_dispatch.py -------------------------------------------------------------------------------- /thicket/tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_stats.py -------------------------------------------------------------------------------- /thicket/tests/test_thicket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_thicket.py -------------------------------------------------------------------------------- /thicket/tests/test_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_timeseries.py -------------------------------------------------------------------------------- /thicket/tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/test_tree.py -------------------------------------------------------------------------------- /thicket/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/tests/utils.py -------------------------------------------------------------------------------- /thicket/thicket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/thicket.py -------------------------------------------------------------------------------- /thicket/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/utils.py -------------------------------------------------------------------------------- /thicket/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/version.py -------------------------------------------------------------------------------- /thicket/vis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/__init__.py -------------------------------------------------------------------------------- /thicket/vis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/package.json -------------------------------------------------------------------------------- /thicket/vis/scripts/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/globals.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/datautil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/datautil.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/globals.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/pcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/pcp.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/scatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/scatter.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/stackedarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/stackedarea.js -------------------------------------------------------------------------------- /thicket/vis/scripts/pcp/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/pcp/store.js -------------------------------------------------------------------------------- /thicket/vis/scripts/topdown/stackedbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/topdown/stackedbars.js -------------------------------------------------------------------------------- /thicket/vis/scripts/topdown/topdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/topdown/topdown.js -------------------------------------------------------------------------------- /thicket/vis/scripts/treetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/scripts/treetable.js -------------------------------------------------------------------------------- /thicket/vis/static/pcp_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/pcp_bundle.html -------------------------------------------------------------------------------- /thicket/vis/static/pcp_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/pcp_bundle.js -------------------------------------------------------------------------------- /thicket/vis/static/topdown_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/topdown_bundle.html -------------------------------------------------------------------------------- /thicket/vis/static/topdown_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/topdown_bundle.js -------------------------------------------------------------------------------- /thicket/vis/static/treetable_bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/treetable_bundle.html -------------------------------------------------------------------------------- /thicket/vis/static/treetable_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static/treetable_bundle.js -------------------------------------------------------------------------------- /thicket/vis/static_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/static_fixer.py -------------------------------------------------------------------------------- /thicket/vis/templates/pcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/templates/pcp.html -------------------------------------------------------------------------------- /thicket/vis/templates/topdown.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /thicket/vis/templates/treetable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/templates/treetable.html -------------------------------------------------------------------------------- /thicket/vis/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/visualizations.py -------------------------------------------------------------------------------- /thicket/vis/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/thicket/HEAD/thicket/vis/webpack.config.js --------------------------------------------------------------------------------