├── .clang-format ├── .clangd ├── .codespellignore ├── .git-blame-ignore-revs ├── .github ├── .dockerignore ├── Dockerfile.base ├── Dockerfile.ci ├── Dockerfile.ird ├── Dockerfile.ird.slim ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── pull_request_template.md ├── scripts │ ├── build-docker-images.sh │ ├── get-docker-tag.sh │ ├── install-exalens.sh │ ├── install-smi.sh │ ├── install-tests-dependencies.sh │ ├── list-pending-prs.js │ ├── reviewers.txt │ ├── sort-issues.js │ └── versions.sh └── workflows │ ├── build-images.yml │ ├── check-stale.yml │ ├── community-issue-tagging.yml │ ├── manual-tt-metal-integration.yml │ ├── mirror-fork-branches.yml │ ├── nightly-perf-tests.yml │ ├── nightly.yml │ ├── on-pr.yml │ ├── pre-commit.yml │ ├── run-metal-tests-on-label.yml │ ├── run-perf-tests.yml │ ├── setup-and-test.yml │ ├── sort-issues.yml │ ├── trigger-tt-metal-bump.yml │ ├── trigger-tt-metal-post-commit.yml │ └── tt-metal-integration-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE_understanding.txt ├── README.md ├── docs ├── common │ └── _static │ │ └── tt_llk_refresh_llk_logo.png └── llk │ ├── l1 │ ├── images │ │ ├── LLK-L1-Tensix-1-25_official.png │ │ └── LLK-L1-Tensix-3-25_official.png │ └── intro.md │ ├── l2 │ ├── images │ │ ├── fpu_cell.png │ │ ├── input_tensor_example.png │ │ ├── row_major_order.png │ │ ├── tensix_core.png │ │ ├── tensix_core_data_flow.png │ │ ├── tensix_engine.png │ │ ├── tile_order_example.png │ │ └── unpack_top_level.png │ └── top_level_overview.md │ └── l3 │ └── programming_model.md ├── infra └── validate_copyright.py ├── package.json ├── pyproject.toml ├── setup_clangd.sh ├── tests ├── .gitignore ├── Makefile ├── README.md ├── firmware │ └── riscv │ │ └── common │ │ └── risc_attribs.h ├── helpers │ ├── include │ │ ├── boot.h │ │ ├── ckernel_helper.h │ │ ├── data_format_inference.h │ │ ├── dev_mem_map.h │ │ ├── llk_sfpu_types.h │ │ ├── operand.h │ │ ├── params.h │ │ ├── perf.h │ │ ├── profiler.h │ │ └── sfpu_operations.h │ ├── ld │ │ ├── brisc.ld │ │ ├── math.ld │ │ ├── memory.blackhole.ld │ │ ├── memory.quasar.ld │ │ ├── memory.wormhole.ld │ │ ├── pack.ld │ │ ├── sections.ld │ │ └── unpack.ld │ ├── src │ │ ├── brisc.cpp │ │ └── trisc.cpp │ └── tmu-crt0.S ├── hw_specific │ └── quasar │ │ └── inc │ │ ├── cfg_defines.h │ │ ├── t6_debug_map.h │ │ ├── t6_mop_config_map.h │ │ ├── tensix.h │ │ ├── tensix_types.h │ │ └── tt_t6_trisc_map.h ├── python_tests │ ├── Makefile │ ├── ai_gen │ │ ├── eltwise_binary_sfpu_pack_untilize.py │ │ ├── eltwise_binary_sfpu_unary.py │ │ ├── reduce_sfpu_unary.py │ │ └── unpack_tilize_sfpu_pack.py │ ├── conftest.py │ ├── helpers │ │ ├── __init__.py │ │ ├── chip_architecture.py │ │ ├── constraints.py │ │ ├── data_format_inference.py │ │ ├── device.py │ │ ├── format_config.py │ │ ├── golden_generators.py │ │ ├── hardware_controller.py │ │ ├── llk_params.py │ │ ├── matmul_sweep.py │ │ ├── pack.py │ │ ├── param_config.py │ │ ├── perf.py │ │ ├── profiler.py │ │ ├── stimuli_generator.py │ │ ├── target_config.py │ │ ├── test_config.py │ │ ├── tilize_untilize.py │ │ ├── unpack.py │ │ └── utils.py │ ├── perf_eltwise_binary_fpu.py │ ├── perf_fast_tilize.py │ ├── perf_math_transpose.py │ ├── perf_matmul.py │ ├── perf_pack_untilize.py │ ├── perf_reduce.py │ ├── perf_sfpu_reduce_sdpa.py │ ├── perf_unpack_a_bcast_eltwise.py │ ├── perf_unpack_tilize.py │ ├── perf_unpack_transpose.py │ ├── perf_unpack_untilize.py │ ├── pyproject.toml │ ├── pytest.ini │ ├── quasar │ │ ├── test_eltwise_binary_quasar.py │ │ ├── test_eltwise_unary_datacopy_quasar.py │ │ ├── test_matmul_quasar.py │ │ ├── test_pack_quasar.py │ │ ├── test_reduce_quasar.py │ │ └── test_unpack_unary_operand_quasar.py │ ├── test_boot_modes.py │ ├── test_eltwise_unary_datacopy.py │ ├── test_eltwise_unary_sfpu.py │ ├── test_fast_tilize.py │ ├── test_math_matmul.py │ ├── test_matmul.py │ ├── test_matmul_and_unary_sfpu.py │ ├── test_matmul_pack_untilize.py │ ├── test_matmul_unpack_tilize.py │ ├── test_multiple_tiles_eltwise.py │ ├── test_pack_untilize.py │ ├── test_parametrize.py │ ├── test_profiler_overhead.py │ ├── test_profiler_primitives.py │ ├── test_reduce.py │ ├── test_risc_compute.py │ ├── test_sfpu_binary.py │ ├── test_sfpu_reduce.py │ ├── test_sfpu_reduce_sdpa.py │ ├── test_tilize_calculate_untilize_L1.py │ ├── test_transpose_dest.py │ ├── test_ttnn_where.py │ ├── test_unpack_A.py │ ├── test_unpack_a_bcast_eltwise.py │ ├── test_unpack_matmul.py │ ├── test_unpack_tilize.py │ ├── test_unpack_tilize_sweep.py │ └── test_unpack_untilize.py ├── requirements.txt ├── setup_external_testing_env.sh ├── setup_testing_env.sh ├── sfpi-info.sh ├── sfpi-version └── sources │ ├── ai_gen │ ├── eltwise_binary_sfpu_pack_untilize.cpp │ ├── eltwise_binary_sfpu_unary.cpp │ ├── reduce_sfpu_unary.cpp │ └── unpack_tilize_sfpu_pack.cpp │ ├── eltwise_binary_fpu_perf.cpp │ ├── eltwise_unary_datacopy_test.cpp │ ├── eltwise_unary_sfpu_test.cpp │ ├── fast_tilize_test.cpp │ ├── math_matmul_test.cpp │ ├── math_transpose_perf.cpp │ ├── matmul_and_unary_sfpu_test.cpp │ ├── matmul_pack_untilize_test.cpp │ ├── matmul_perf.cpp │ ├── matmul_test.cpp │ ├── matmul_unpack_tilize_test.cpp │ ├── multiple_tiles_eltwise_test.cpp │ ├── pack_untilize_perf.cpp │ ├── pack_untilize_test.cpp │ ├── profiler_overhead_test.cpp │ ├── profiler_primitives_test.cpp │ ├── quasar │ ├── eltwise_binary_test.cpp │ ├── eltwise_unary_datacopy_quasar_test.cpp │ ├── matmul_quasar_test.cpp │ ├── pack_quasar_test.cpp │ ├── reduce_quasar_test.cpp │ └── unpack_unary_operand_quasar_test.cpp │ ├── reduce_perf.cpp │ ├── reduce_test.cpp │ ├── risc_compute_test.cpp │ ├── sfpu_binary_test.cpp │ ├── sfpu_reduce_sdpa_perf.cpp │ ├── sfpu_reduce_sdpa_test.cpp │ ├── sfpu_reduce_test.cpp │ ├── tilize_calculate_untilize_L1.cpp │ ├── transpose_dest_test.cpp │ ├── ttnn_where_test.cpp │ ├── unpack_A_test.cpp │ ├── unpack_a_bcast_eltwise_perf.cpp │ ├── unpack_a_bcast_eltwise_test.cpp │ ├── unpack_matmul_test.cpp │ ├── unpack_tilize_perf.cpp │ ├── unpack_tilize_sweep_test.cpp │ ├── unpack_tilize_test.cpp │ ├── unpack_transpose_perf.cpp │ ├── unpack_untilize_perf.cpp │ └── unpack_untilize_test.cpp ├── tt_llk_blackhole ├── common │ └── inc │ │ ├── ckernel.h │ │ ├── ckernel_addrmod.h │ │ ├── ckernel_debug.h │ │ ├── ckernel_defs.h │ │ ├── ckernel_globals.h │ │ ├── ckernel_gpr_map.h │ │ ├── ckernel_include.h │ │ ├── ckernel_instr_params.h │ │ ├── ckernel_ops.h │ │ ├── ckernel_sfpi.h │ │ ├── ckernel_sfpu.h │ │ ├── ckernel_structs.h │ │ ├── ckernel_template.h │ │ ├── ckernel_xmov.h │ │ ├── cmath_common.h │ │ ├── cpack_common.h │ │ ├── cunpack_common.h │ │ └── sfpu │ │ ├── ckernel_sfpu_abs.h │ │ ├── ckernel_sfpu_activations.h │ │ ├── ckernel_sfpu_add_int.h │ │ ├── ckernel_sfpu_add_top_row.h │ │ ├── ckernel_sfpu_binary.h │ │ ├── ckernel_sfpu_binary_bitwise.h │ │ ├── ckernel_sfpu_cast_fp32_to_fp16a.h │ │ ├── ckernel_sfpu_cdf.h │ │ ├── ckernel_sfpu_clamp.h │ │ ├── ckernel_sfpu_comp.h │ │ ├── ckernel_sfpu_converter.h │ │ ├── ckernel_sfpu_cumsum.h │ │ ├── ckernel_sfpu_dropout.h │ │ ├── ckernel_sfpu_elu.h │ │ ├── ckernel_sfpu_ema.h │ │ ├── ckernel_sfpu_exp.h │ │ ├── ckernel_sfpu_exp2.h │ │ ├── ckernel_sfpu_fill.h │ │ ├── ckernel_sfpu_gelu.h │ │ ├── ckernel_sfpu_hardtanh.h │ │ ├── ckernel_sfpu_is_fp16_zero.h │ │ ├── ckernel_sfpu_isinf_isnan.h │ │ ├── ckernel_sfpu_load_config.h │ │ ├── ckernel_sfpu_log.h │ │ ├── ckernel_sfpu_max.h │ │ ├── ckernel_sfpu_max_int32.h │ │ ├── ckernel_sfpu_max_pool_indices.h │ │ ├── ckernel_sfpu_mul_int.h │ │ ├── ckernel_sfpu_negative.h │ │ ├── ckernel_sfpu_polyval.h │ │ ├── ckernel_sfpu_quant.h │ │ ├── ckernel_sfpu_recip.h │ │ ├── ckernel_sfpu_reduce.h │ │ ├── ckernel_sfpu_relu.h │ │ ├── ckernel_sfpu_reshuffle_rows.h │ │ ├── ckernel_sfpu_rounding_ops.h │ │ ├── ckernel_sfpu_rsqrt.h │ │ ├── ckernel_sfpu_rsqrt_compat.h │ │ ├── ckernel_sfpu_shift.h │ │ ├── ckernel_sfpu_sigmoid.h │ │ ├── ckernel_sfpu_sign.h │ │ ├── ckernel_sfpu_silu.h │ │ ├── ckernel_sfpu_sqrt.h │ │ ├── ckernel_sfpu_square.h │ │ ├── ckernel_sfpu_sub_int.h │ │ ├── ckernel_sfpu_tanh.h │ │ ├── ckernel_sfpu_tanh_derivative.h │ │ ├── ckernel_sfpu_threshold.h │ │ ├── ckernel_sfpu_topk.h │ │ ├── ckernel_sfpu_trigonometry.h │ │ ├── ckernel_sfpu_typecast.h │ │ ├── ckernel_sfpu_welfords.h │ │ └── ckernel_sfpu_where.h ├── instructions │ └── assembly.yaml └── llk_lib │ ├── llk_assert.h │ ├── llk_defs.h │ ├── llk_math_common.h │ ├── llk_math_eltwise_binary.h │ ├── llk_math_eltwise_binary_sfpu.h │ ├── llk_math_eltwise_binary_sfpu_params.h │ ├── llk_math_eltwise_ternary_sfpu.h │ ├── llk_math_eltwise_ternary_sfpu_params.h │ ├── llk_math_eltwise_unary_datacopy.h │ ├── llk_math_eltwise_unary_sfpi.h │ ├── llk_math_eltwise_unary_sfpu.h │ ├── llk_math_eltwise_unary_sfpu_params.h │ ├── llk_math_matmul.h │ ├── llk_math_reduce.h │ ├── llk_math_reduce_custom.h │ ├── llk_math_transpose_dest.h │ ├── llk_math_welfords_sfpu.h │ ├── llk_math_welfords_sfpu_params.h │ ├── llk_pack.h │ ├── llk_pack_common.h │ ├── llk_pack_untilize.h │ ├── llk_unpack_A.h │ ├── llk_unpack_AB.h │ ├── llk_unpack_AB_matmul.h │ ├── llk_unpack_AB_reduce_custom.h │ ├── llk_unpack_common.h │ ├── llk_unpack_reduce.h │ ├── llk_unpack_tilize.h │ └── llk_unpack_untilize.h ├── tt_llk_quasar ├── common │ └── inc │ │ ├── circular_buffer.h │ │ ├── ckernel.h │ │ ├── ckernel_addrmod.h │ │ ├── ckernel_defs.h │ │ ├── ckernel_dest.h │ │ ├── ckernel_gpr_map.h │ │ ├── ckernel_include.h │ │ ├── ckernel_instr_params.h │ │ ├── ckernel_ops.h │ │ ├── ckernel_pcbuf.h │ │ ├── ckernel_proj_params.h │ │ ├── ckernel_risc_atomics.h │ │ ├── ckernel_riscv_debug.h │ │ ├── ckernel_sfpu.h │ │ ├── ckernel_template.h │ │ ├── ckernel_trisc_common.h │ │ ├── ckernel_vector.h │ │ ├── cmath_common.h │ │ ├── cpack_common.h │ │ ├── cunpack_common.h │ │ └── sfpu │ │ ├── ckernel_sfpu_add.h │ │ ├── ckernel_sfpu_exp.h │ │ ├── ckernel_sfpu_lrelu.h │ │ ├── ckernel_sfpu_recip.h │ │ ├── ckernel_sfpu_relu.h │ │ ├── ckernel_sfpu_sqrt.h │ │ ├── ckernel_sfpu_tanh.h │ │ ├── ckernel_sfpu_typecast_fp16b_uint16.h │ │ └── ckernel_sfpu_typecast_int32_fp32.h ├── instructions │ └── assembly.yaml └── llk_lib │ ├── llk_defs.h │ ├── llk_io_pack.h │ ├── llk_io_unpack.h │ ├── llk_math_common.h │ ├── llk_math_eltwise_binary.h │ ├── llk_math_eltwise_binary_broadcast.h │ ├── llk_math_eltwise_unary_datacopy.h │ ├── llk_math_eltwise_unary_sfpu_common.h │ ├── llk_math_matmul.h │ ├── llk_math_reduce.h │ ├── llk_pack.h │ ├── llk_pack_common.h │ ├── llk_pack_matmul.h │ ├── llk_pack_untilize.h │ ├── llk_srcs_tdma.h │ ├── llk_unpack_binary_broadcast_operands.h │ ├── llk_unpack_binary_operands.h │ ├── llk_unpack_common.h │ ├── llk_unpack_matmul.h │ ├── llk_unpack_reduce.h │ ├── llk_unpack_tilize.h │ └── llk_unpack_unary_operand.h └── tt_llk_wormhole_b0 ├── common └── inc │ ├── ckernel.h │ ├── ckernel_addrmod.h │ ├── ckernel_debug.h │ ├── ckernel_defs.h │ ├── ckernel_globals.h │ ├── ckernel_gpr_map.h │ ├── ckernel_include.h │ ├── ckernel_instr_params.h │ ├── ckernel_ops.h │ ├── ckernel_sfpi.h │ ├── ckernel_sfpu.h │ ├── ckernel_structs.h │ ├── ckernel_template.h │ ├── ckernel_xmov.h │ ├── cmath_common.h │ ├── cpack_common.h │ ├── cunpack_common.h │ └── sfpu │ ├── ckernel_sfpu_abs.h │ ├── ckernel_sfpu_activations.h │ ├── ckernel_sfpu_add_int.h │ ├── ckernel_sfpu_add_top_row.h │ ├── ckernel_sfpu_binary.h │ ├── ckernel_sfpu_binary_bitwise.h │ ├── ckernel_sfpu_cast_fp32_to_fp16a.h │ ├── ckernel_sfpu_cdf.h │ ├── ckernel_sfpu_clamp.h │ ├── ckernel_sfpu_comp.h │ ├── ckernel_sfpu_converter.h │ ├── ckernel_sfpu_cumsum.h │ ├── ckernel_sfpu_dropout.h │ ├── ckernel_sfpu_elu.h │ ├── ckernel_sfpu_ema.h │ ├── ckernel_sfpu_exp.h │ ├── ckernel_sfpu_exp2.h │ ├── ckernel_sfpu_fill.h │ ├── ckernel_sfpu_gelu.h │ ├── ckernel_sfpu_hardtanh.h │ ├── ckernel_sfpu_is_fp16_zero.h │ ├── ckernel_sfpu_isinf_isnan.h │ ├── ckernel_sfpu_load_config.h │ ├── ckernel_sfpu_log.h │ ├── ckernel_sfpu_max.h │ ├── ckernel_sfpu_max_int32.h │ ├── ckernel_sfpu_max_pool_indices.h │ ├── ckernel_sfpu_mul_int.h │ ├── ckernel_sfpu_negative.h │ ├── ckernel_sfpu_polyval.h │ ├── ckernel_sfpu_quant.h │ ├── ckernel_sfpu_recip.h │ ├── ckernel_sfpu_reduce.h │ ├── ckernel_sfpu_relu.h │ ├── ckernel_sfpu_reshuffle_rows.h │ ├── ckernel_sfpu_rounding_ops.h │ ├── ckernel_sfpu_rsqrt.h │ ├── ckernel_sfpu_rsqrt_compat.h │ ├── ckernel_sfpu_shift.h │ ├── ckernel_sfpu_sigmoid.h │ ├── ckernel_sfpu_sign.h │ ├── ckernel_sfpu_silu.h │ ├── ckernel_sfpu_sqrt.h │ ├── ckernel_sfpu_square.h │ ├── ckernel_sfpu_sub_int.h │ ├── ckernel_sfpu_tanh.h │ ├── ckernel_sfpu_tanh_derivative.h │ ├── ckernel_sfpu_threshold.h │ ├── ckernel_sfpu_topk.h │ ├── ckernel_sfpu_trigonometry.h │ ├── ckernel_sfpu_typecast.h │ ├── ckernel_sfpu_welfords.h │ └── ckernel_sfpu_where.h ├── instructions └── assembly.yaml └── llk_lib ├── llk_assert.h ├── llk_defs.h ├── llk_math_common.h ├── llk_math_eltwise_binary.h ├── llk_math_eltwise_binary_sfpu.h ├── llk_math_eltwise_binary_sfpu_params.h ├── llk_math_eltwise_ternary_sfpu.h ├── llk_math_eltwise_ternary_sfpu_params.h ├── llk_math_eltwise_unary_datacopy.h ├── llk_math_eltwise_unary_sfpi.h ├── llk_math_eltwise_unary_sfpu.h ├── llk_math_eltwise_unary_sfpu_params.h ├── llk_math_matmul.h ├── llk_math_reduce.h ├── llk_math_reduce_custom.h ├── llk_math_transpose_dest.h ├── llk_math_welfords_sfpu.h ├── llk_math_welfords_sfpu_params.h ├── llk_pack.h ├── llk_pack_common.h ├── llk_pack_untilize.h ├── llk_unpack_A.h ├── llk_unpack_AB.h ├── llk_unpack_AB_matmul.h ├── llk_unpack_AB_reduce_custom.h ├── llk_unpack_common.h ├── llk_unpack_reduce.h ├── llk_unpack_tilize.h └── llk_unpack_untilize.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.clang-format -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.clangd -------------------------------------------------------------------------------- /.codespellignore: -------------------------------------------------------------------------------- 1 | ba 2 | fo 3 | ro 4 | and 5 | ue 6 | re 7 | shft 8 | dateA 9 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/.dockerignore -------------------------------------------------------------------------------- /.github/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/Dockerfile.base -------------------------------------------------------------------------------- /.github/Dockerfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/Dockerfile.ci -------------------------------------------------------------------------------- /.github/Dockerfile.ird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/Dockerfile.ird -------------------------------------------------------------------------------- /.github/Dockerfile.ird.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/Dockerfile.ird.slim -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/build-docker-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/build-docker-images.sh -------------------------------------------------------------------------------- /.github/scripts/get-docker-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/get-docker-tag.sh -------------------------------------------------------------------------------- /.github/scripts/install-exalens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/install-exalens.sh -------------------------------------------------------------------------------- /.github/scripts/install-smi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/install-smi.sh -------------------------------------------------------------------------------- /.github/scripts/install-tests-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/install-tests-dependencies.sh -------------------------------------------------------------------------------- /.github/scripts/list-pending-prs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/list-pending-prs.js -------------------------------------------------------------------------------- /.github/scripts/reviewers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/reviewers.txt -------------------------------------------------------------------------------- /.github/scripts/sort-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/sort-issues.js -------------------------------------------------------------------------------- /.github/scripts/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/scripts/versions.sh -------------------------------------------------------------------------------- /.github/workflows/build-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/build-images.yml -------------------------------------------------------------------------------- /.github/workflows/check-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/check-stale.yml -------------------------------------------------------------------------------- /.github/workflows/community-issue-tagging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/community-issue-tagging.yml -------------------------------------------------------------------------------- /.github/workflows/manual-tt-metal-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/manual-tt-metal-integration.yml -------------------------------------------------------------------------------- /.github/workflows/mirror-fork-branches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/mirror-fork-branches.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/nightly-perf-tests.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/on-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/on-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/run-metal-tests-on-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/run-metal-tests-on-label.yml -------------------------------------------------------------------------------- /.github/workflows/run-perf-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/run-perf-tests.yml -------------------------------------------------------------------------------- /.github/workflows/setup-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/setup-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/sort-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/sort-issues.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-tt-metal-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/trigger-tt-metal-bump.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-tt-metal-post-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/trigger-tt-metal-post-commit.yml -------------------------------------------------------------------------------- /.github/workflows/tt-metal-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.github/workflows/tt-metal-integration-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/.yamllint -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_understanding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/LICENSE_understanding.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/README.md -------------------------------------------------------------------------------- /docs/common/_static/tt_llk_refresh_llk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/common/_static/tt_llk_refresh_llk_logo.png -------------------------------------------------------------------------------- /docs/llk/l1/images/LLK-L1-Tensix-1-25_official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l1/images/LLK-L1-Tensix-1-25_official.png -------------------------------------------------------------------------------- /docs/llk/l1/images/LLK-L1-Tensix-3-25_official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l1/images/LLK-L1-Tensix-3-25_official.png -------------------------------------------------------------------------------- /docs/llk/l1/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l1/intro.md -------------------------------------------------------------------------------- /docs/llk/l2/images/fpu_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/fpu_cell.png -------------------------------------------------------------------------------- /docs/llk/l2/images/input_tensor_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/input_tensor_example.png -------------------------------------------------------------------------------- /docs/llk/l2/images/row_major_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/row_major_order.png -------------------------------------------------------------------------------- /docs/llk/l2/images/tensix_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/tensix_core.png -------------------------------------------------------------------------------- /docs/llk/l2/images/tensix_core_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/tensix_core_data_flow.png -------------------------------------------------------------------------------- /docs/llk/l2/images/tensix_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/tensix_engine.png -------------------------------------------------------------------------------- /docs/llk/l2/images/tile_order_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/tile_order_example.png -------------------------------------------------------------------------------- /docs/llk/l2/images/unpack_top_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/images/unpack_top_level.png -------------------------------------------------------------------------------- /docs/llk/l2/top_level_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l2/top_level_overview.md -------------------------------------------------------------------------------- /docs/llk/l3/programming_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/docs/llk/l3/programming_model.md -------------------------------------------------------------------------------- /infra/validate_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/infra/validate_copyright.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup_clangd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/setup_clangd.sh -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/firmware/riscv/common/risc_attribs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/firmware/riscv/common/risc_attribs.h -------------------------------------------------------------------------------- /tests/helpers/include/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/boot.h -------------------------------------------------------------------------------- /tests/helpers/include/ckernel_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/ckernel_helper.h -------------------------------------------------------------------------------- /tests/helpers/include/data_format_inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/data_format_inference.h -------------------------------------------------------------------------------- /tests/helpers/include/dev_mem_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/dev_mem_map.h -------------------------------------------------------------------------------- /tests/helpers/include/llk_sfpu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/llk_sfpu_types.h -------------------------------------------------------------------------------- /tests/helpers/include/operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/operand.h -------------------------------------------------------------------------------- /tests/helpers/include/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/params.h -------------------------------------------------------------------------------- /tests/helpers/include/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/perf.h -------------------------------------------------------------------------------- /tests/helpers/include/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/profiler.h -------------------------------------------------------------------------------- /tests/helpers/include/sfpu_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/include/sfpu_operations.h -------------------------------------------------------------------------------- /tests/helpers/ld/brisc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/brisc.ld -------------------------------------------------------------------------------- /tests/helpers/ld/math.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/math.ld -------------------------------------------------------------------------------- /tests/helpers/ld/memory.blackhole.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/memory.blackhole.ld -------------------------------------------------------------------------------- /tests/helpers/ld/memory.quasar.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/memory.quasar.ld -------------------------------------------------------------------------------- /tests/helpers/ld/memory.wormhole.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/memory.wormhole.ld -------------------------------------------------------------------------------- /tests/helpers/ld/pack.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/pack.ld -------------------------------------------------------------------------------- /tests/helpers/ld/sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/sections.ld -------------------------------------------------------------------------------- /tests/helpers/ld/unpack.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/ld/unpack.ld -------------------------------------------------------------------------------- /tests/helpers/src/brisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/src/brisc.cpp -------------------------------------------------------------------------------- /tests/helpers/src/trisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/src/trisc.cpp -------------------------------------------------------------------------------- /tests/helpers/tmu-crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/helpers/tmu-crt0.S -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/cfg_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/cfg_defines.h -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/t6_debug_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/t6_debug_map.h -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/t6_mop_config_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/t6_mop_config_map.h -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/tensix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/tensix.h -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/tensix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/tensix_types.h -------------------------------------------------------------------------------- /tests/hw_specific/quasar/inc/tt_t6_trisc_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/hw_specific/quasar/inc/tt_t6_trisc_map.h -------------------------------------------------------------------------------- /tests/python_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/Makefile -------------------------------------------------------------------------------- /tests/python_tests/ai_gen/eltwise_binary_sfpu_pack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/ai_gen/eltwise_binary_sfpu_pack_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/ai_gen/eltwise_binary_sfpu_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/ai_gen/eltwise_binary_sfpu_unary.py -------------------------------------------------------------------------------- /tests/python_tests/ai_gen/reduce_sfpu_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/ai_gen/reduce_sfpu_unary.py -------------------------------------------------------------------------------- /tests/python_tests/ai_gen/unpack_tilize_sfpu_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/ai_gen/unpack_tilize_sfpu_pack.py -------------------------------------------------------------------------------- /tests/python_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/conftest.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/__init__.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/chip_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/chip_architecture.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/constraints.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/data_format_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/data_format_inference.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/device.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/format_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/format_config.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/golden_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/golden_generators.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/hardware_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/hardware_controller.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/llk_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/llk_params.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/matmul_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/matmul_sweep.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/pack.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/param_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/param_config.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/perf.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/profiler.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/stimuli_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/stimuli_generator.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/target_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/target_config.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/test_config.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/tilize_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/tilize_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/unpack.py -------------------------------------------------------------------------------- /tests/python_tests/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/helpers/utils.py -------------------------------------------------------------------------------- /tests/python_tests/perf_eltwise_binary_fpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_eltwise_binary_fpu.py -------------------------------------------------------------------------------- /tests/python_tests/perf_fast_tilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_fast_tilize.py -------------------------------------------------------------------------------- /tests/python_tests/perf_math_transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_math_transpose.py -------------------------------------------------------------------------------- /tests/python_tests/perf_matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_matmul.py -------------------------------------------------------------------------------- /tests/python_tests/perf_pack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_pack_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/perf_reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_reduce.py -------------------------------------------------------------------------------- /tests/python_tests/perf_sfpu_reduce_sdpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_sfpu_reduce_sdpa.py -------------------------------------------------------------------------------- /tests/python_tests/perf_unpack_a_bcast_eltwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_unpack_a_bcast_eltwise.py -------------------------------------------------------------------------------- /tests/python_tests/perf_unpack_tilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_unpack_tilize.py -------------------------------------------------------------------------------- /tests/python_tests/perf_unpack_transpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_unpack_transpose.py -------------------------------------------------------------------------------- /tests/python_tests/perf_unpack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/perf_unpack_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/pyproject.toml -------------------------------------------------------------------------------- /tests/python_tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/pytest.ini -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_eltwise_binary_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_eltwise_binary_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_eltwise_unary_datacopy_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_eltwise_unary_datacopy_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_matmul_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_matmul_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_pack_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_pack_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_reduce_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_reduce_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/quasar/test_unpack_unary_operand_quasar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/quasar/test_unpack_unary_operand_quasar.py -------------------------------------------------------------------------------- /tests/python_tests/test_boot_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_boot_modes.py -------------------------------------------------------------------------------- /tests/python_tests/test_eltwise_unary_datacopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_eltwise_unary_datacopy.py -------------------------------------------------------------------------------- /tests/python_tests/test_eltwise_unary_sfpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_eltwise_unary_sfpu.py -------------------------------------------------------------------------------- /tests/python_tests/test_fast_tilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_fast_tilize.py -------------------------------------------------------------------------------- /tests/python_tests/test_math_matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_math_matmul.py -------------------------------------------------------------------------------- /tests/python_tests/test_matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_matmul.py -------------------------------------------------------------------------------- /tests/python_tests/test_matmul_and_unary_sfpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_matmul_and_unary_sfpu.py -------------------------------------------------------------------------------- /tests/python_tests/test_matmul_pack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_matmul_pack_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/test_matmul_unpack_tilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_matmul_unpack_tilize.py -------------------------------------------------------------------------------- /tests/python_tests/test_multiple_tiles_eltwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_multiple_tiles_eltwise.py -------------------------------------------------------------------------------- /tests/python_tests/test_pack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_pack_untilize.py -------------------------------------------------------------------------------- /tests/python_tests/test_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_parametrize.py -------------------------------------------------------------------------------- /tests/python_tests/test_profiler_overhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_profiler_overhead.py -------------------------------------------------------------------------------- /tests/python_tests/test_profiler_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_profiler_primitives.py -------------------------------------------------------------------------------- /tests/python_tests/test_reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_reduce.py -------------------------------------------------------------------------------- /tests/python_tests/test_risc_compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_risc_compute.py -------------------------------------------------------------------------------- /tests/python_tests/test_sfpu_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_sfpu_binary.py -------------------------------------------------------------------------------- /tests/python_tests/test_sfpu_reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_sfpu_reduce.py -------------------------------------------------------------------------------- /tests/python_tests/test_sfpu_reduce_sdpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_sfpu_reduce_sdpa.py -------------------------------------------------------------------------------- /tests/python_tests/test_tilize_calculate_untilize_L1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_tilize_calculate_untilize_L1.py -------------------------------------------------------------------------------- /tests/python_tests/test_transpose_dest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_transpose_dest.py -------------------------------------------------------------------------------- /tests/python_tests/test_ttnn_where.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_ttnn_where.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_A.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_a_bcast_eltwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_a_bcast_eltwise.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_matmul.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_tilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_tilize.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_tilize_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_tilize_sweep.py -------------------------------------------------------------------------------- /tests/python_tests/test_unpack_untilize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/python_tests/test_unpack_untilize.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/setup_external_testing_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/setup_external_testing_env.sh -------------------------------------------------------------------------------- /tests/setup_testing_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/setup_testing_env.sh -------------------------------------------------------------------------------- /tests/sfpi-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sfpi-info.sh -------------------------------------------------------------------------------- /tests/sfpi-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sfpi-version -------------------------------------------------------------------------------- /tests/sources/ai_gen/eltwise_binary_sfpu_pack_untilize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/ai_gen/eltwise_binary_sfpu_pack_untilize.cpp -------------------------------------------------------------------------------- /tests/sources/ai_gen/eltwise_binary_sfpu_unary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/ai_gen/eltwise_binary_sfpu_unary.cpp -------------------------------------------------------------------------------- /tests/sources/ai_gen/reduce_sfpu_unary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/ai_gen/reduce_sfpu_unary.cpp -------------------------------------------------------------------------------- /tests/sources/ai_gen/unpack_tilize_sfpu_pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/ai_gen/unpack_tilize_sfpu_pack.cpp -------------------------------------------------------------------------------- /tests/sources/eltwise_binary_fpu_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/eltwise_binary_fpu_perf.cpp -------------------------------------------------------------------------------- /tests/sources/eltwise_unary_datacopy_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/eltwise_unary_datacopy_test.cpp -------------------------------------------------------------------------------- /tests/sources/eltwise_unary_sfpu_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/eltwise_unary_sfpu_test.cpp -------------------------------------------------------------------------------- /tests/sources/fast_tilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/fast_tilize_test.cpp -------------------------------------------------------------------------------- /tests/sources/math_matmul_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/math_matmul_test.cpp -------------------------------------------------------------------------------- /tests/sources/math_transpose_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/math_transpose_perf.cpp -------------------------------------------------------------------------------- /tests/sources/matmul_and_unary_sfpu_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/matmul_and_unary_sfpu_test.cpp -------------------------------------------------------------------------------- /tests/sources/matmul_pack_untilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/matmul_pack_untilize_test.cpp -------------------------------------------------------------------------------- /tests/sources/matmul_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/matmul_perf.cpp -------------------------------------------------------------------------------- /tests/sources/matmul_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/matmul_test.cpp -------------------------------------------------------------------------------- /tests/sources/matmul_unpack_tilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/matmul_unpack_tilize_test.cpp -------------------------------------------------------------------------------- /tests/sources/multiple_tiles_eltwise_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/multiple_tiles_eltwise_test.cpp -------------------------------------------------------------------------------- /tests/sources/pack_untilize_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/pack_untilize_perf.cpp -------------------------------------------------------------------------------- /tests/sources/pack_untilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/pack_untilize_test.cpp -------------------------------------------------------------------------------- /tests/sources/profiler_overhead_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/profiler_overhead_test.cpp -------------------------------------------------------------------------------- /tests/sources/profiler_primitives_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/profiler_primitives_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/eltwise_binary_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/eltwise_binary_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/eltwise_unary_datacopy_quasar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/eltwise_unary_datacopy_quasar_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/matmul_quasar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/matmul_quasar_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/pack_quasar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/pack_quasar_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/reduce_quasar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/reduce_quasar_test.cpp -------------------------------------------------------------------------------- /tests/sources/quasar/unpack_unary_operand_quasar_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/quasar/unpack_unary_operand_quasar_test.cpp -------------------------------------------------------------------------------- /tests/sources/reduce_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/reduce_perf.cpp -------------------------------------------------------------------------------- /tests/sources/reduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/reduce_test.cpp -------------------------------------------------------------------------------- /tests/sources/risc_compute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/risc_compute_test.cpp -------------------------------------------------------------------------------- /tests/sources/sfpu_binary_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/sfpu_binary_test.cpp -------------------------------------------------------------------------------- /tests/sources/sfpu_reduce_sdpa_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/sfpu_reduce_sdpa_perf.cpp -------------------------------------------------------------------------------- /tests/sources/sfpu_reduce_sdpa_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/sfpu_reduce_sdpa_test.cpp -------------------------------------------------------------------------------- /tests/sources/sfpu_reduce_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/sfpu_reduce_test.cpp -------------------------------------------------------------------------------- /tests/sources/tilize_calculate_untilize_L1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/tilize_calculate_untilize_L1.cpp -------------------------------------------------------------------------------- /tests/sources/transpose_dest_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/transpose_dest_test.cpp -------------------------------------------------------------------------------- /tests/sources/ttnn_where_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/ttnn_where_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_A_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_A_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_a_bcast_eltwise_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_a_bcast_eltwise_perf.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_a_bcast_eltwise_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_a_bcast_eltwise_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_matmul_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_matmul_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_tilize_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_tilize_perf.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_tilize_sweep_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_tilize_sweep_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_tilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_tilize_test.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_transpose_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_transpose_perf.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_untilize_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_untilize_perf.cpp -------------------------------------------------------------------------------- /tests/sources/unpack_untilize_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tests/sources/unpack_untilize_test.cpp -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_addrmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_addrmod.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_debug.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_defs.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_globals.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_gpr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_gpr_map.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_include.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_instr_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_instr_params.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_ops.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_sfpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_sfpi.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_sfpu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_structs.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_template.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/ckernel_xmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/ckernel_xmov.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/cmath_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/cmath_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/cpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/cpack_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/cunpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/cunpack_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_abs.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_activations.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_add_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_add_int.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_add_top_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_add_top_row.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_binary.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_binary_bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_binary_bitwise.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cast_fp32_to_fp16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cast_fp32_to_fp16a.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cdf.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_clamp.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_comp.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_converter.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_cumsum.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_dropout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_dropout.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_elu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_ema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_ema.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_exp.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_exp2.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_fill.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_gelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_gelu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_hardtanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_hardtanh.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_is_fp16_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_is_fp16_zero.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_isinf_isnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_isinf_isnan.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_load_config.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_log.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max_int32.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max_pool_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_max_pool_indices.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_mul_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_mul_int.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_negative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_negative.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_polyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_polyval.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_quant.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_recip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_recip.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_reduce.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_relu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_reshuffle_rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_reshuffle_rows.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rounding_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rounding_ops.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rsqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rsqrt.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rsqrt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_rsqrt_compat.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_shift.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sigmoid.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sign.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_silu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_silu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sqrt.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_square.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sub_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_sub_int.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_tanh.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_tanh_derivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_tanh_derivative.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_threshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_threshold.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_topk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_topk.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_trigonometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_trigonometry.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_typecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_typecast.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_welfords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_welfords.h -------------------------------------------------------------------------------- /tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/common/inc/sfpu/ckernel_sfpu_where.h -------------------------------------------------------------------------------- /tt_llk_blackhole/instructions/assembly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/instructions/assembly.yaml -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_assert.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_defs.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_binary.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_binary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_binary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_binary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_binary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_ternary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_ternary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_ternary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_ternary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_datacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_datacopy.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpi.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_eltwise_unary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_matmul.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_reduce.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_reduce_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_reduce_custom.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_transpose_dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_transpose_dest.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_welfords_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_welfords_sfpu.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_math_welfords_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_math_welfords_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_pack.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_pack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_pack_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_pack_untilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_pack_untilize.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_A.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_AB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_AB.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_AB_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_AB_matmul.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_AB_reduce_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_AB_reduce_custom.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_common.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_reduce.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_tilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_tilize.h -------------------------------------------------------------------------------- /tt_llk_blackhole/llk_lib/llk_unpack_untilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_blackhole/llk_lib/llk_unpack_untilize.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/circular_buffer.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_addrmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_addrmod.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_defs.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_dest.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_gpr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_gpr_map.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_include.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_instr_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_instr_params.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_ops.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_pcbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_pcbuf.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_proj_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_proj_params.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_risc_atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_risc_atomics.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_riscv_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_riscv_debug.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_sfpu.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_template.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_trisc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_trisc_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/ckernel_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/ckernel_vector.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/cmath_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/cmath_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/cpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/cpack_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/cunpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/cunpack_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_add.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_exp.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_lrelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_lrelu.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_recip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_recip.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_relu.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_sqrt.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_tanh.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_typecast_fp16b_uint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_typecast_fp16b_uint16.h -------------------------------------------------------------------------------- /tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_typecast_int32_fp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/common/inc/sfpu/ckernel_sfpu_typecast_int32_fp32.h -------------------------------------------------------------------------------- /tt_llk_quasar/instructions/assembly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/instructions/assembly.yaml -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_defs.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_io_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_io_pack.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_io_unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_io_unpack.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_eltwise_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_eltwise_binary.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_eltwise_binary_broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_eltwise_binary_broadcast.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_eltwise_unary_datacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_eltwise_unary_datacopy.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_eltwise_unary_sfpu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_eltwise_unary_sfpu_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_matmul.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_math_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_math_reduce.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_pack.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_pack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_pack_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_pack_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_pack_matmul.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_pack_untilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_pack_untilize.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_srcs_tdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_srcs_tdma.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_binary_broadcast_operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_binary_broadcast_operands.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_binary_operands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_binary_operands.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_common.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_matmul.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_reduce.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_tilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_tilize.h -------------------------------------------------------------------------------- /tt_llk_quasar/llk_lib/llk_unpack_unary_operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_quasar/llk_lib/llk_unpack_unary_operand.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_addrmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_addrmod.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_debug.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_defs.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_globals.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_gpr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_gpr_map.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_include.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_instr_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_instr_params.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_ops.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_sfpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_sfpi.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_sfpu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_structs.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_template.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/ckernel_xmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/ckernel_xmov.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/cmath_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/cmath_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/cpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/cpack_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/cunpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/cunpack_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_abs.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_activations.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_add_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_add_int.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_add_top_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_add_top_row.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_binary.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_binary_bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_binary_bitwise.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cast_fp32_to_fp16a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cast_fp32_to_fp16a.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cdf.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_clamp.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_comp.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_converter.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_cumsum.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_dropout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_dropout.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_elu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_ema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_ema.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_exp.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_exp2.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_fill.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_gelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_gelu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_hardtanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_hardtanh.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_is_fp16_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_is_fp16_zero.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_isinf_isnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_isinf_isnan.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_load_config.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_log.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max_int32.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max_pool_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_max_pool_indices.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_mul_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_mul_int.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_negative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_negative.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_polyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_polyval.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_quant.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_recip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_recip.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_reduce.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_relu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_reshuffle_rows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_reshuffle_rows.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rounding_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rounding_ops.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rsqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rsqrt.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rsqrt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_rsqrt_compat.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_shift.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sigmoid.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sign.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_silu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_silu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sqrt.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_square.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sub_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_sub_int.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_tanh.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_tanh_derivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_tanh_derivative.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_threshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_threshold.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_topk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_topk.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_trigonometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_trigonometry.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_typecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_typecast.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_welfords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_welfords.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/common/inc/sfpu/ckernel_sfpu_where.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/instructions/assembly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/instructions/assembly.yaml -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_assert.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_defs.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_binary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_ternary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_ternary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_ternary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_ternary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_datacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_datacopy.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpi.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_eltwise_unary_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_matmul.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_reduce.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_reduce_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_reduce_custom.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_transpose_dest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_transpose_dest.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_welfords_sfpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_welfords_sfpu.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_math_welfords_sfpu_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_math_welfords_sfpu_params.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_pack.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_pack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_pack_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_pack_untilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_pack_untilize.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_A.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_AB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_AB.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_AB_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_AB_matmul.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_AB_reduce_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_AB_reduce_custom.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_common.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_reduce.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_tilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_tilize.h -------------------------------------------------------------------------------- /tt_llk_wormhole_b0/llk_lib/llk_unpack_untilize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tenstorrent/tt-llk/HEAD/tt_llk_wormhole_b0/llk_lib/llk_unpack_untilize.h --------------------------------------------------------------------------------