Skip to content

Commit 7e719ed

Browse files
committed
Merge branch 'ershi/final-v1.10.1' into 'release-1.10'
Final changes for the v1.10.1 release See merge request omniverse/warp!1809
2 parents 33b632f + ab5d517 commit 7e719ed

File tree

8 files changed

+19
-7
lines changed

8 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
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

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.1rc1
1+
1.10.1

exts/omni.warp.core/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
# Semantic Versioning is used: https://semver.org/
3-
version = "1.10.1-rc.1"
3+
version = "1.10.1"
44
authors = ["NVIDIA"]
55
title = "Warp Core"
66
description="The core Warp Python module"

exts/omni.warp.core/docs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
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

exts/omni.warp/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
# Semantic Versioning is used: https://semver.org/
3-
version = "1.10.1-rc.1"
3+
version = "1.10.1"
44
authors = ["NVIDIA"]
55
title = "Warp"
66
description="Warp OmniGraph Nodes and Sample Scenes"

exts/omni.warp/docs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
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

warp/_src/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from typing import Optional
1717

18-
version: str = "1.10.1rc1"
18+
version: str = "1.10.1"
1919
"""Warp version string"""
2020

2121
verify_fp: bool = False

warp/native/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
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

0 commit comments

Comments
 (0)