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

org.nd4j.linalg.cache.BasicConstantHandler Maven / Gradle / Ivy

package org.nd4j.linalg.cache;

import org.nd4j.linalg.api.buffer.DataBuffer;

/**
 * Basic No-Op abstraction for ConstantHandler
 *
 * @author [email protected]
 */
public abstract class BasicConstantHandler implements ConstantHandler {
    @Override
    public long moveToConstantSpace(DataBuffer dataBuffer) {
        // no-op
        return 0L;
    }

    @Override
    public DataBuffer relocateConstantSpace(DataBuffer dataBuffer) {
        return dataBuffer;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy