You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for a new wp.static(expr) function that allows arbitrary Python expressions to be evaluated at the time of
function/kernel definition (docs).
Support for stream priorities to hint to the device that it should process pending work
in high-priority streams over pending work in low-priority streams when possible
(docs).
Add documentation for dynamic code generation (docs).
Changed
wp.sim.Model.edge_indices now includes boundary edges.
Unexposed wp.rand*(), wp.sample*(), and wp.poisson() from the Python scope.
Skip unused functions in module code generation, improving performance.
Avoid reloading modules if their content does not change, improving performance.
wp.Mesh.points is now a property instead of a raw data member, its reference can be changed after the mesh is initialized.
Improve error message when invalid objects are referenced in a Warp kernel.
if/else/elif statements with constant conditions are resolved at compile time with no branches being inserted in the generated code.
Include all non-hidden builtins in the stub file.
Improve accuracy of symmetric eigenvalues routine in warp.fem.
Fixed
Fix for wp.func erroring out when defining a Tuple as a return type hint (GH-302).
Fix array in-place op (+=, -=) adjoints to compute gradients correctly in the backwards pass
Fix vector, matrix in-place assignment adjoints to compute gradients correctly in the backwards pass, e.g.: v[1] = x
Fix a bug in which Python docstrings would be created as local function variables in generated code.
Fix a bug with autograd array access validation in functions from different modules.
Fix a rare crash during error reporting on some systems due to glibc mismatches.
Handle --num_tiles 1 in example_render_opengl.py (GH-306).
Fix the computation of body contact forces in FeatherstoneIntegrator when bodies and particles collide.
Fix bug in FeatherstoneIntegrator where eval_rigid_jacobian could give incorrect results or reach an infinite
loop when the body and joint indices were not in the same order. Added Model.joint_ancestor to fix the indexing
from a joint to its parent joint in the articulation.
Fix wrong vertex index passed to add_edges() called from ModelBuilder.add_cloth_mesh() (GH-319).
Add a workaround for uninitialized memory read warning in the compute-sanitizer initcheck tool when using wp.Mesh.
Fix name clashes when Warp functions and structs are returned from Python functions multiple times.
Fix name clashes between Warp functions and structs defined in different modules.
Fix code generation errors when overloading generic kernels defined in a Python function.
Fix issues with unrelated functions being treated as overloads (e.g., closures).
Fix handling of stream argument in array.__dlpack__().
Fix a bug related to reloading CPU modules.
Fix a crash when kernel functions are not found in CPU modules.
Fix conditions not being evaluated as expected in while statements.
Fix printing Boolean and 8-bit integer values.
Fix array interface type strings used for Boolean and 8-bit integer values.
Fix initialization error when setting struct members.
Fix Warp not being initialized upon entering a wp.Tape context.
Use kDLBool instead of kDLUInt for DLPack interop of Booleans.