All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nd4j.linalg.memory.stash.StashManager Maven / Gradle / Ivy

package org.nd4j.linalg.memory.stash;

/**
 * This interface describes factory/holder for manipulating Stash objects
 *
 * @author [email protected]
 */
public interface StashManager {

     boolean checkIfStashExists(T stashId);

     Stash getStash(T stashId);

     Stash createStashIfNotExists(T stashId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy