Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 22 mm #6157

Merged
merged 46 commits into from
Oct 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
241b919
adding wrench
AlexRibard Aug 28, 2024
c4668ac
correct build path
AlexRibard Aug 28, 2024
205396d
release branch and 6.0 target
AlexRibard Aug 28, 2024
fc6ca44
XmlDoc update
AlexRibard Sep 2, 2024
66d1508
adressing xml docs
AlexRibard Sep 2, 2024
d8e30fa
more docs
AlexRibard Sep 3, 2024
3ce9849
updating the release
AlexRibard Sep 4, 2024
eb3b742
test xmldoc fixes
Sep 10, 2024
f82f8cd
more xml doc fixes
Sep 10, 2024
d67dc94
Uncompress the 3DBall sample
Sep 10, 2024
d93a5fc
Fix API documentation
Sep 10, 2024
3008e79
more xml doc fixes
Sep 11, 2024
2ee26c1
Revert "Uncompress the 3DBall sample"
Sep 11, 2024
401418f
reformat MaxStep xml
Sep 11, 2024
a1e3bc9
more xml doc fixes
Sep 11, 2024
5a7535e
fix more xml doc issues
Sep 11, 2024
430a1b2
fix summary tag
Sep 11, 2024
8fd8460
Updated changelog for missing PRs.
miguelalonsojr Sep 12, 2024
799f8f0
Removed tabs from .tests.json.
miguelalonsojr Sep 12, 2024
47da469
Updated changelog.
miguelalonsojr Sep 12, 2024
b658a48
Removed tabs from CHANGELOG.
miguelalonsojr Sep 12, 2024
038e99b
Fix failing ci post upgrade (#6141) (#6145)
miguelalonsojr Sep 12, 2024
f74208d
Removing standalone tests dep from wrench packaging.
miguelalonsojr Sep 12, 2024
2fa290c
Fixed package works issues. Updated com.unity.ml-agents.md.
miguelalonsojr Sep 12, 2024
2ab6c24
Updated com.unity.ml-agents.md.
miguelalonsojr Sep 12, 2024
1612e55
Updated package version in Academy.cs
miguelalonsojr Sep 12, 2024
0d3c10d
Adding back in package pack deps.
miguelalonsojr Sep 12, 2024
d374fa1
Updated package pack testing deps..
miguelalonsojr Sep 14, 2024
1a0e031
Regenerated wrench ymls.
miguelalonsojr Sep 14, 2024
9ecb3bd
License update.
miguelalonsojr Sep 24, 2024
67c7a27
Extensions License update.
miguelalonsojr Sep 24, 2024
900555d
Another license tweak.
miguelalonsojr Sep 24, 2024
d9ea8f2
Another license tweak.
miguelalonsojr Sep 25, 2024
0874236
Upgraded to sentis 2.1.0.
miguelalonsojr Sep 27, 2024
54db12e
Merge branch 'develop' into release/3.0.0
miguelalonsojr Sep 30, 2024
86814f4
Updated standalone yamato build test to using new ml-agents ubuntu ci…
miguelalonsojr Oct 3, 2024
9ac55b2
Merge branch 'release/3.0.0' of github.com:Unity-Technologies/ml-agen…
miguelalonsojr Oct 3, 2024
e9e3601
Bumped python and extensions package versions.
miguelalonsojr Oct 4, 2024
c683e77
Changed ci image for pytest gpu yamato test.
miguelalonsojr Oct 4, 2024
54664fc
Changed default cuda dtype to torch.float32.
miguelalonsojr Oct 4, 2024
e70d023
Updated version validation and extensions version.
miguelalonsojr Oct 4, 2024
9d34978
Fixed failing GPU test.
miguelalonsojr Oct 4, 2024
24485ed
Fixed failing GPU test.
miguelalonsojr Oct 4, 2024
501ba88
Updated readme table and make_readme_table.py
miguelalonsojr Oct 5, 2024
200fe54
Updated publish to pypi gha.
miguelalonsojr Oct 5, 2024
b992273
Merged in develop.
miguelalonsojr Oct 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
more docs
  • Loading branch information
AlexRibard committed Sep 3, 2024
commit d8e30fa0baf284e7a8430ee30e51990725736325
2 changes: 1 addition & 1 deletion com.unity.ml-agents/Runtime/InplaceArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public InplaceArray(T elem0, T elem1, T elem2, T elem3)
/// Construct an InplaceArray from an IList (e.g. Array or List).
/// The source must be non-empty and have at most 4 elements.
/// </summary>
/// <param name="elems"></param>
/// <param name="elems">The `IList` to construct the array from.</param>
/// <returns>Corresponding `InplaceArray` from the input IList.</returns>
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static InplaceArray<T> FromList(IList<T> elems)
Expand Down