public static enum CudaJitOptions.CacheMode extends java.lang.Enum<CudaJitOptions.CacheMode>
CacheMode
identifies the cache management choices.Enum Constant and Description |
---|
DEFAULT
Compile with no -dlcm flag specified.
|
L1_DISABLED
Compile with L1 cache disabled.
|
L1_ENABLED
Compile with L1 cache enabled.
|
Modifier and Type | Method and Description |
---|---|
static CudaJitOptions.CacheMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CudaJitOptions.CacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CudaJitOptions.CacheMode DEFAULT
public static final CudaJitOptions.CacheMode L1_DISABLED
public static final CudaJitOptions.CacheMode L1_ENABLED
public static CudaJitOptions.CacheMode[] values()
for (CudaJitOptions.CacheMode c : CudaJitOptions.CacheMode.values()) System.out.println(c);
public static CudaJitOptions.CacheMode 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.