TT-System-Firmware APIs 19.8.99
Tenstorrent Firmware
Loading...
Searching...
No Matches
tensix.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Tenstorrent AI ULC
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef TENSIX_H
8#define TENSIX_H
9
10#include <stdbool.h>
11#include <stdint.h>
12
13#define TENSIX_INSTRUCTION_UNPACR 0x42800091u
14
27void tensix_inject_instruction(uint32_t instruction, uint8_t thread, bool broadcast, uint8_t noc_x,
28 uint8_t noc_y);
29
30#endif /* TENSIX_H */
__UINT32_TYPE__ uint32_t
__UINT8_TYPE__ uint8_t
void tensix_inject_instruction(uint32_t instruction, uint8_t thread, bool broadcast, uint8_t noc_x, uint8_t noc_y)
Inject one instruction into a Tensix tile via the RISC debug instruction buffer.
Definition tensix.c:13