-
Notifications
You must be signed in to change notification settings - Fork 674
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements NDScope to automatically close NDArray in the scope (#2321)
* Implements NDScope based on JavaCPP PointerScope Co-authored-by: enpasos <[email protected]> Co-authored-by: Frank Liu <[email protected]>
- Loading branch information
1 parent
acfc0a6
commit b533011
Showing
5 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance | ||
* with the License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES | ||
* OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
package ai.djl.ndarray; | ||
|
||
import java.util.ArrayDeque; | ||
import java.util.Deque; | ||
import java.util.IdentityHashMap; | ||
|
||
/** | ||
* A class that tracks {@link NDResource} objects created in the try-with-resource block and close | ||
* them automatically when out of the block scope. | ||
* | ||
* <p>This class has been derived from {@code org.bytedeco.javacpp.PointerScope} by Samuel Audet | ||
*/ | ||
public class NDScope implements AutoCloseable { | ||
|
||
private static final ThreadLocal<Deque<NDScope>> SCOPE_STACK = | ||
ThreadLocal.withInitial(ArrayDeque::new); | ||
|
||
private IdentityHashMap<NDArray, NDArray> resources; | ||
|
||
/** Constructs a new {@code NDScope} instance. */ | ||
public NDScope() { | ||
resources = new IdentityHashMap<>(); | ||
SCOPE_STACK.get().addLast(this); | ||
} | ||
|
||
/** | ||
* Registers {@link NDArray} object to this scope. | ||
* | ||
* @param array the {@link NDArray} object | ||
*/ | ||
public static void register(NDArray array) { | ||
Deque<NDScope> queue = SCOPE_STACK.get(); | ||
if (queue.isEmpty()) { | ||
return; | ||
} | ||
queue.getLast().resources.put(array, array); | ||
} | ||
|
||
/** | ||
* Unregisters {@link NDArray} object from this scope. | ||
* | ||
* @param array the {@link NDArray} object | ||
*/ | ||
public static void unregister(NDArray array) { | ||
Deque<NDScope> queue = SCOPE_STACK.get(); | ||
if (queue.isEmpty()) { | ||
return; | ||
} | ||
queue.getLast().resources.remove(array); | ||
} | ||
|
||
/** {@inheritDoc} */ | ||
@Override | ||
public void close() { | ||
for (NDArray array : resources.keySet()) { | ||
array.close(); | ||
} | ||
SCOPE_STACK.get().remove(this); | ||
} | ||
|
||
/** | ||
* A method that does nothing. | ||
* | ||
* <p>You may use it if you do not have a better way to suppress the warning of a created but | ||
* not explicitly used scope. | ||
*/ | ||
public void suppressNotUsedWarning() { | ||
// do nothing | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance | ||
* with the License. A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0/ | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES | ||
* OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
package ai.djl.ndarray; | ||
|
||
import org.testng.Assert; | ||
import org.testng.annotations.Test; | ||
|
||
public class NDScopeTest { | ||
|
||
@Test | ||
@SuppressWarnings("try") | ||
public void testNDScope() { | ||
NDArray detached; | ||
NDArray inside; | ||
NDArray uninvolved; | ||
try (NDManager manager = NDManager.newBaseManager()) { | ||
try (NDScope scope = new NDScope()) { | ||
scope.suppressNotUsedWarning(); | ||
try (NDScope ignore = new NDScope()) { | ||
uninvolved = manager.create(new int[] {1}); | ||
uninvolved.close(); | ||
inside = manager.create(new int[] {1}); | ||
// not tracked by any NDScope, but still managed by NDManager | ||
NDScope.unregister(inside); | ||
} | ||
|
||
detached = manager.create(new int[] {1}); | ||
detached.detach(); // detached from NDManager | ||
NDScope.unregister(detached); // and unregistered from NDScope | ||
} | ||
|
||
Assert.assertFalse(inside.isReleased()); | ||
} | ||
Assert.assertTrue(inside.isReleased()); | ||
Assert.assertFalse(detached.isReleased()); | ||
detached.close(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters