This document is relevant for: Inf1, Inf2, Trn1, Trn2, Trn3
Release Notes for Neuron Component: Neuron Kernel Interface (NKI)#
The release notes for the Neuron Kernel Interface (NKI) component. Read them for the details about the changes, improvements, and bug fixes for all release versions of the AWS Neuron SDK.
Neuron Kernel Interface (NKI) (Beta 2 - 0.2.0) [2.28] (Neuron 2.28.0 Release)#
Date of Release: 02/26/2026
New Features#
LNC (Large Neuron Core) multi-core support:
Shared buffers and canonical outputs: The compiler now tracks shared_hbm tensors declared in kernels and canonicalizes LNC kernel outputs into a consistent form. This is foundational infrastructure for multi-core kernel compilation. See LNC Overview.
Private HBM tensors: Users can declare tensors private to a single NeuronCore using the private_hbm memory type, distinct from regular and shared HBM.
Intra-LNC collectives: New ISA instruction types for multi-core collective operations such as cross-core reductions and broadcasts. See full API listing under nki.collectives below.
New
nki.isaAPIs:nki.isa.nonzero_with_count — returns nonzero element indices and their count, useful for sparse computation and dynamic masking
nki.isa.exponential— computes element-wise exponential on tensors. See nki.isa.activation.
New nki.collectives module, enabling collective communication across multiple NeuronCores directly from NKI kernels:
New
dtypes:nki.language.float8_e4m3fn — for FP8 inference and training workloads
New NKI language features:
no_reorderblocks — usewith no_reorder(): ...to prevent the compiler from reordering instructions within a block, for kernels where instruction ordering affects correctness__call__special method support — callable objects (classes with__call__) can now be used as functions within NKI kernelstensor.viewmethod — tensors now support.view()for reshapingShared constants can now be passed to kernels as string arguments, not just tensor objects
Improvements#
Updated
nki.isaAPIs:nki.isa.dma_transpose now supports indirect addressing
nki.isa.dma_copy now supports
unique_indicesparameternki.isa.register_alloc now accepts an optional tensor argument to pre-fill the allocated register with initial values
Compiler output improvements:
The compiler no longer truncates diagnostic output; users now receive the full set of warnings and errors
Breaking Changes#
nki.isa.nc_matmul parameter
psumAccumulateFlaghas been removed. This parameter had no effect on compilation or execution. Simply remove it from your kernel code.nki.isa.nc_matmul parameter
is_moving_zerohas been renamed tois_moving_onezeroto match hardware semantics, consistent with the companionis_stationary_onezeroparameter. Kernels that passedis_moving_zeroby name should update tois_moving_onezero.nki.tensorhas moved tonki.meta.tensor. Users should update their imports accordingly.
Note
The previously announced removal of the neuronxcc.nki.* namespace has
been postponed from Neuron 2.28 to Neuron 2.29. Both the neuronxcc.nki.*
and nki.* namespaces continue to be supported in this release. We
encourage customers to migrate to the nki.* namespace using the
NKI Migration Guide.
Bug Fixes#
Fixed incorrect default value for
on_false_valueinnki.isa.range_select. The default was0.0instead of negative infinity (-inf). This causedrange_selectto write zeros for out-of-range elements instead of the expected negative-infinity sentinel, which could produce incorrect results in downstream reductions (e.g., max-pooling or top-k). See nki.isa.range_select.Fixed default value parsing for keyword-only arguments in NKI kernels. When a Python function used keyword-only arguments with default values (arguments after
*in the signature), the NKI compiler did not associate the defaults with their corresponding parameter names. This caused keyword-only arguments to appear as required even when they had defaults, leading to “missing argument” errors during kernel compilation.Fixed wrong default for
reduce_cmdin nki.isa.activation. The default was incorrectly set toZeroAccumulateinstead ofIdle, causing the accumulator to be zeroed before every activation call even when no reduction was requested.Fixed missing ALU operators (
rsqrt,abs,power) in nki.isa.tensor_scalar and nki.isa.tensor_tensor. Passing these operators previously raised an “unsupported operator” error. See NKI Language Guide.Fixed
float8_e4m3fntofloat8_e4m3conversion for kernel inputs and outputs. When a tensor with dtypefloat8_e4m3fnwas passed to the compiler, the automatic conversion tofloat8_e4m3could fail with a size-check error. The conversion now validates sizes correctly before casting. See nki.language.float8_e4m3.Fixed dynamic for loop incorrectly incrementing the loop induction variable. In loops with a runtime-determined trip count (
sequential_rangewith non-constant bounds), the compiler generated incorrect increment code, causing the loop counter to never advance and the loop to run indefinitely or produce incorrect iteration values. See nki.language.sequential_range.Fixed reshape of
shared_hbmandprivate_hbmtensors failing partition size check. Reshape only recognized plainhbmmemory as exempt from partition-dimension size validation. Tensors allocated inshared_hbmorprivate_hbm(used for cross-kernel and kernel-private storage) incorrectly triggered a “partition size mismatch” error when reshaped. See nki.language.shared_hbm and nki.language.private_hbm.Fixed bias shape checking in nki.isa.activation. The
biasparameter was not validated for shape correctness. A bias tensor with a free dimension other than 1 (e.g., shape(128, 64)instead of(128, 1)) was accepted without validation, which could produce incorrect results. The compiler now raises an error if the bias free dimension is not 1.Fixed incorrect line numbers in stack traces and error reporting. An off-by-one error in the line offset calculation caused all reported line numbers to be shifted by one. Additionally, error location was sometimes lost when errors propagated across file boundaries.
Fixed invalid keyword arguments being silently ignored instead of raising an error. When calling an NKI API with a misspelled or unsupported keyword argument, the argument was ignored without warning. The compiler now validates all keyword argument names against the function signature and raises an
unexpected keyword argumenterror for unrecognized names.Fixed
nki.jitin auto-detection mode returning an uncalled kernel object instead of executing the kernel. Whennki.jitwas used without specifying a framework mode (e.g.,@nki.jitwith nomodeargument), the auto-detection path constructed the appropriate framework-specific kernel object but returned it without calling it. The user received a kernel object instead of the computed result, requiring an extra manual invocation. See nki.jit.Fixed stale kernel object state between trace invocations. When tracing the same kernel multiple times (e.g., with different input shapes), compiler state was not fully reset between invocations, causing name collisions and incorrect results. The trace state is now fully reset before each invocation.
Improved ‘removed during code migration’ error messages with clear descriptions of unimplemented features. APIs not available in this release (
nki.baremetal,nki.benchmark,nki.profile,nki.simulate_kernel) previously raised a genericNotImplementedError("removed during code migration")message. Each now raises a specific message naming the unsupported API. Additionally, calling annki.jitkernel with no arguments now raises a clear error instead. See NKI Migration Guide.Fixed nested
nki_jitdecorators not being allowed. The NKI compiler only recognized@nki.jit-decorated functions when they were plain function objects. Nested decorators (e.g.,@my_wrapper @nki.jit) wrapped the function in a non-function object, causing the compiler to skip it. The compiler now correctly unwraps decorator chains to find the underlying kernel function. See nki.jit.
Known Issues#
nki.isa.range_select: Theon_false_valueandreduce_cmdparameters are incorrectly
ignored by the NKI compiler. The on_false_value is always set to (-3.4028235e+38)
and reduce_cmd is always set to reduce_cmd.reset_reduce, regardless of the values passed in.
Neuron Kernel Interface (NKI) (Beta 2 - 0.1.0) [2.27] (Neuron 2.27.0 Release)#
Date: 12/25/2025
Improvements#
new
nki.languageAPIs:nki.language.device_print
new
nki.isaAPIs:nki.isa.dma_computenki.isa.nki.isa.quantize_mxnki.isa.nki.isa.nc_matmulnki.isa.nki.isa.nc_n_gather[used to benl.gather_flattenedwith free partition limited to 512]nki.isa.rand2nki.isa.rand_set_statenki.isa.rand_get_statenki.isa.set_rng_seednki.isa.rng
new
dtypes:nki.language.float8_e5m2_x4nki.language.float4_e2m1fn_x4nki.language.float8_e4m3fn_x4
changes to existing APIs:
several
nki.languageAPIs have been removed in NKI Beta 2all nki.isa APIs have
dstas an input paramall nki.isa APIs removed
dtypeandmasksupportnki.isa.memset— removedshapepositional arg , since we havedstnki.isa.affine_select— instead ofpred, we now takepatternandcmp_opparamsnki.isa.iota—exprreplaced withpatternandoffsetnki.isa.nc_stream_shuffle-srcanddstorder changed
docs improvements:
restructured NKI Documentation to align with workflows
added Get Started with NKI
added NKI Language Guide
added About the NKI Compiler
added About NKI Beta Versions
updated Matrix Multiplication Tutorial
updated Profile a NKI Kernel
updated NKI APIs
updated NKI Library docs
removed NKI Error Guide
Known Issues#
nki.isa.nki.isa.nc_matmul-is_moving_onezerowas incorrectly namedis_moving_zeroin this releaseNKI ISA semantic checks are not available with Beta 2, workaround is to reference the API docs
NKI Collectives are not available with Beta 2
nki.benchmarkandnki.profileare not available with Beta 2
Neuron Kernel Interface (NKI) (Beta) [2.26] (Neuron 2.26.0 Release)#
Date: 09/18/2025
Improvements#
new
nki.languageAPIs:nki.language.gelu_apprx_sigmoid- Gaussian Error Linear Unit activation function with sigmoid approximation.nki.language.tile_size.total_available_sbuf_sizeto get total available SBUF size
new
nki.isaAPIs:nki.isa.select_reduce- selectively copy elements with max reductionnki.isa.sequence_bounds- compute sequence bounds of segment IDsnki.isa.dma_transposeaxesparam to define 4D transpose for some supported casesdge_modeto specify Descriptor Generation Engine (DGE).
nl.gelu_apprx_sigmoidop support onnki.isa.activation
fixes / improvements:
nki.language.storesupports PSUM buffer with extra additional copy inserted.
docs/tutorial improvements:
nki.isa.dma_transposeAPI doc and examplenki.simulate_kernelexample improvementuse
nl.fp32.minin tutorial code instead of a magic number
better error reporting:
indirect indexing on transpose
mask expressions
Neuron Kernel Interface (NKI) (Beta) [2.24] (Neuron 2.24.0 Release)#
Date: 06/24/2025
Improvements#
sqrtvalid data range extended for accuracy improvement with wider numerical values support.nki.language.gather_flattenednew APInki.isa.nc_match_replace8additional paramdst_idximproved docs/examples on
nki.isa.nc_match_replace8,nki.isa.nc_stream_shuffleimproved error messages
Neuron Kernel Interface (NKI) (Beta) [2.23] (Neuron 2.23.0 Release)#
Date: 05/20/2025
Improvements#
nki.isa.range_select(for trn2) new instructionabs,powerops supported on to nki.isa tensor instructionabsop supported onnki.isa.activationinstructionGpSIMD engine support added to
add,multiplyin 32bit integer to nki.isa tensor operationsnki.isa.tensor_copy_predicatedsupport for reversing predicate.nki.isa.tensor_copy_dynamic_src,tensor_copy_dynamic_dstengine selection.nki.isa.dma_copyadditional support withdge_mode,oob_mode, and in-place addrmw_op.+=, -=, /=, *=operators now work consistently across loop types, PSUM, and SBUF,fixed simulation for instructions:
nki.language.rand,random_seed,nki.isa.dropoutfixed simulation masking behavior
Added warning when the block dimension is used for SBUF and PSUM tensors, see: NKI Block Dimension Migration Guide
Neuron Kernel Interface (NKI) (Beta) [2.22] (Neuron 2.22.0 Release)#
Date: 04/03/2025
Improvements#
New modules and APIs:
nki.profilenki.isanew APIs:tensor_copy_dynamic_dsttensor_copy_predicatedmax8,nc_find_index8,nc_match_replace8nc_stream_shuffle
nki.languagenew APIs:mod,fmod,reciprocal,broadcast_to,empty_like
Improvements:
nki.isa.nc_matmulnow supports PE tiling featurenki.isa.activationupdated to support reduce operation andreducecommandsnki.isa.engineenumengineparameter added to morenki.isaAPIs that support engine selection (ie,tensor_scalar,tensor_tensor,memset)Documentation for
nki.kernelshave been moved to the GitHub: https://aws-neuron.github.io/nki-samples. The source code can be viewed at aws-neuron/nki-samples.These kernels are still shipped as part of Neuron package in
neuronxcc.nki.kernelsmodule
Documentation updates:
Kernels public repository https://aws-neuron.github.io/nki-samples
Updated profiling guide to use
nki.profileinstead ofnki.benchmarkNKI ISA Activation functions table now have valid input data ranges listed
NKI ISA Supported Math operators now have supported engine listed
Clarify
+=syntax support/limitation
Neuron Kernel Interface (NKI) (Beta) [2.21] (Neuron 2.21.0 Release)#
Date: 12/16/2024
Improvements#
New modules and APIs:
nki.compilermodule with Allocation Control and Kernel decorators, see guide for more info.nki.isa: new APIs (activation_reduce,tensor_partition_reduce,scalar_tensor_tensor,tensor_scalar_reduce,tensor_copy,tensor_copy_dynamic_src,dma_copy), new activation functions(identity,silu,silu_dx), and target query APIs (nc_version,get_nc_version).nki.language: new APIs (shared_identity_matrix,tan,silu,silu_dx,left_shift,right_shift,ds,spmd_dim,nc).New
datatype <nl_datatypes>:float8_e5m2New
kernels(allocated_fused_self_attn_for_SD_small_head_size,allocated_fused_rms_norm_qkv) added, kernels moved to public repository.
Improvements:
Semantic analysis checks for nki.isa APIs to validate supported ops, dtypes, and tile shapes.
Standardized naming conventions with keyword arguments for common optional parameters.
Transition from function calls to kernel decorators (
jit,benchmark,baremetal,simulate_kernel).
Documentation updates:
Tutorial for SPMD usage with multiple Neuron Cores on Trn2
Neuron Kernel Interface (NKI) (Beta) (Neuron 2.20.1 Release)#
Date: 12/03/2024
Improvements#
NKI support for Trainium2, including full integration with Neuron Compiler. Users can directly shard NKI kernels across multiple Neuron Cores from an SPMD launch grid. See tutorial for more info. See Trainium2 Architecture Guide for an initial version of the architecture specification (more details to come in future releases).
New calling convention in NKI kernels, where kernel output tensors are explicitly returned from the kernel instead of pass-by-reference. See any NKI tutorial for code examples.
Neuron Kernel Interface (NKI) (Beta) [2.20] (Neuron 2.20.0 Release)#
Date: 09/16/2024
Improvements#
This release includes the beta launch of the Neuron Kernel Interface (NKI) (Beta). NKI is a programming interface enabling developers to build optimized compute kernels on top of Trainium and Inferentia. NKI empowers developers to enhance deep learning models with new capabilities, performance optimizations, and scientific innovation. It natively integrates with PyTorch and JAX, providing a Python-based programming environment with Triton-like syntax and tile-level semantics offering a familiar programming experience for developers. Additionally, to enable bare-metal access precisely programming the instructions used by the chip, this release includes a set of NKI APIs (
nki.isa) that directly emit Neuron Instruction Set Architecture (ISA) instructions in NKI kernels.
This document is relevant for: Inf1, Inf2, Trn1, Trn2, Trn3