Skip to content

Commit

Permalink
Updated ILGPU version to the latest master branch. (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rs-mt authored Feb 4, 2021
1 parent fc6f820 commit b39e265
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ILGPU
Submodule ILGPU updated 154 files
5 changes: 2 additions & 3 deletions Src/ILGPU.Algorithms/RadixSortExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,11 @@ public BufferedRadixSort<T> CreateRadixSort<T, TRadixSortOperation>()

#region IDisposable

/// <summary cref="DisposeBase.Dispose(bool)"/>
protected override void Dispose(bool disposing)
/// <inheritdoc cref="AcceleratorObject.DisposeAcceleratorObject(bool)"/>
protected override void DisposeAcceleratorObject(bool disposing)
{
if (disposing)
bufferCache.Dispose();
base.Dispose(disposing);
}

#endregion
Expand Down
5 changes: 2 additions & 3 deletions Src/ILGPU.Algorithms/ScanExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,11 @@ public BufferedScan<T> CreateExclusiveScan<T, TScanOperation>()

#region IDisposable

/// <summary cref="DisposeBase.Dispose(bool)"/>
protected override void Dispose(bool disposing)
/// <inheritdoc cref="AcceleratorObject.DisposeAcceleratorObject(bool)"/>
protected override void DisposeAcceleratorObject(bool disposing)
{
if (disposing)
bufferCache.Dispose();
base.Dispose(disposing);
}

#endregion
Expand Down

0 comments on commit b39e265

Please sign in to comment.