File tree Expand file tree Collapse file tree 8 files changed +19
-7
lines changed
Expand file tree Collapse file tree 8 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 88 ([ GH-1071 ] ( https://github.com/NVIDIA/warp/issues/1071 ) ).
99- Fix ` module="unique" ` kernels to properly reuse existing module objects when defined multiple times,
1010 avoiding unnecessary module creation overhead ([ GH-995 ] ( https://github.com/NVIDIA/warp/issues/995 ) ).
11+ - Fix for loops containing ` wp.static() ` expressions that use the loop variable.
12+ These loops are now always unrolled regardless of ` max_unroll ` settings to
13+ ensure loop variables are available as compile-time constants within static
14+ expressions ([ GH-560 ] ( https://github.com/NVIDIA/warp/pull/560 ) ).
1115- Add validation in ` wp.compile_aot_module() ` to detect generic kernels without overloads and generic kernels with
1216 multiple overloads when ` strip_hash=True ` ([ GH-919 ] ( https://github.com/NVIDIA/warp/issues/919 ) ).
1317- Fix compilation error in ` wp.tile_load_indexed() ` when indices tile has been reshaped or transformed
Original file line number Diff line number Diff line change 1- 1.10.1rc1
1+ 1.10.1
Original file line number Diff line number Diff line change 11[package ]
22# Semantic Versioning is used: https://semver.org/
3- version = " 1.10.1-rc.1 "
3+ version = " 1.10.1"
44authors = [" NVIDIA" ]
55title = " Warp Core"
66description =" The core Warp Python module"
Original file line number Diff line number Diff line change 11# CHANGELOG
22
3- ## [ 1.10.1-rc.1 ] - 2025-12-01
3+ ## [ 1.10.1] - 2025-12-01
44
55### Fixed
66
77- Fix type inference errors when passing reference arguments (such as array elements) to built-in functions
88 ([ GH-1071 ] ( https://github.com/NVIDIA/warp/issues/1071 ) ).
99- Fix ` module="unique" ` kernels to properly reuse existing module objects when defined multiple times,
1010 avoiding unnecessary module creation overhead ([ GH-995 ] ( https://github.com/NVIDIA/warp/issues/995 ) ).
11+ - Fix for loops containing ` wp.static() ` expressions that use the loop variable.
12+ These loops are now always unrolled regardless of ` max_unroll ` settings to
13+ ensure loop variables are available as compile-time constants within static
14+ expressions ([ GH-560 ] ( https://github.com/NVIDIA/warp/pull/560 ) ).
1115- Add validation in ` wp.compile_aot_module() ` to detect generic kernels without overloads and generic kernels with
1216 multiple overloads when ` strip_hash=True ` ([ GH-919 ] ( https://github.com/NVIDIA/warp/issues/919 ) ).
1317- Fix compilation error in ` wp.tile_load_indexed() ` when indices tile has been reshaped or transformed
Original file line number Diff line number Diff line change 11[package ]
22# Semantic Versioning is used: https://semver.org/
3- version = " 1.10.1-rc.1 "
3+ version = " 1.10.1"
44authors = [" NVIDIA" ]
55title = " Warp"
66description =" Warp OmniGraph Nodes and Sample Scenes"
Original file line number Diff line number Diff line change 11# CHANGELOG
22
3- ## [ 1.10.1-rc.1 ] - 2025-12-01
3+ ## [ 1.10.1] - 2025-12-01
44
55### Fixed
66
77- Fix type inference errors when passing reference arguments (such as array elements) to built-in functions
88 ([ GH-1071 ] ( https://github.com/NVIDIA/warp/issues/1071 ) ).
99- Fix ` module="unique" ` kernels to properly reuse existing module objects when defined multiple times,
1010 avoiding unnecessary module creation overhead ([ GH-995 ] ( https://github.com/NVIDIA/warp/issues/995 ) ).
11+ - Fix for loops containing ` wp.static() ` expressions that use the loop variable.
12+ These loops are now always unrolled regardless of ` max_unroll ` settings to
13+ ensure loop variables are available as compile-time constants within static
14+ expressions ([ GH-560 ] ( https://github.com/NVIDIA/warp/pull/560 ) ).
1115- Add validation in ` wp.compile_aot_module() ` to detect generic kernels without overloads and generic kernels with
1216 multiple overloads when ` strip_hash=True ` ([ GH-919 ] ( https://github.com/NVIDIA/warp/issues/919 ) ).
1317- Fix compilation error in ` wp.tile_load_indexed() ` when indices tile has been reshaped or transformed
Original file line number Diff line number Diff line change 1515
1616from typing import Optional
1717
18- version : str = "1.10.1rc1 "
18+ version : str = "1.10.1 "
1919"""Warp version string"""
2020
2121verify_fp : bool = False
Original file line number Diff line number Diff line change 1818#ifndef WP_VERSION_H
1919#define WP_VERSION_H
2020
21- #define WP_VERSION_STRING "1.10.1rc1 "
21+ #define WP_VERSION_STRING "1.10.1 "
2222
2323#endif // WP_VERSION_H
You can’t perform that action at this time.
0 commit comments