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

org.nd4j.jita.allocator.enums.CudaConstants Maven / Gradle / Ivy

The newest version!
package org.nd4j.jita.allocator.enums;

/**
 * @author [email protected]
 */
public class CudaConstants {
    public static int cudaMemcpyHostToHost = 0;
    /**< Host   -> Host */
    public static int cudaMemcpyHostToDevice = 1;
    /**< Host   -> Device */
    public static int cudaMemcpyDeviceToHost = 2;
    /**< Device -> Host */
    public static int cudaMemcpyDeviceToDevice = 3;
    /**< Device -> Device */
    public static int cudaMemcpyDefault = 4;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy