public enum CudaJitInputType extends java.lang.Enum<CudaJitInputType>
CudaJitInputType
identifies the type of input being provided to
CudaLinker#add(...)
.Enum Constant and Description |
---|
CUBIN
Compiled device-class-specific device code.
|
FATBINARY
Bundle of multiple cubins and/or PTX of some device code.
|
LIBRARY
Archive of host objects with embedded device code.
|
OBJECT
Host object with embedded device code.
|
PTX
PTX source code.
|
Modifier and Type | Method and Description |
---|---|
static CudaJitInputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CudaJitInputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CudaJitInputType CUBIN
Applicable options: none
public static final CudaJitInputType FATBINARY
Applicable options: PTX compiler options, CudaJitOption.FALLBACK_STRATEGY
public static final CudaJitInputType LIBRARY
Applicable options: PTX compiler options, CudaJitOption.FALLBACK_STRATEGY
public static final CudaJitInputType OBJECT
Applicable options: PTX compiler options, CudaJitOption.FALLBACK_STRATEGY
public static final CudaJitInputType PTX
Applicable options: PTX compiler options
public static CudaJitInputType[] values()
for (CudaJitInputType c : CudaJitInputType.values()) System.out.println(c);
public static CudaJitInputType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullEclipse OpenJ9 website.
To raise a bug report or suggest an improvement create an Eclipse OpenJ9 issue.
Copyright © 2013, 2025 IBM Corp. and others.