Ich erhalte diesen Fehler, wenn ich mein Java -Programm kompiliere: < /p>
error: Class names, 'EnumDevices', are only accepted if annotation
processing is explicitly requested
1 error
< /code>
Hier ist der Java -Code (ich leite diesen auf Ubuntu aus). < /p>
import jcuda.CUDA;
import jcuda.driver.CUdevprop;
import jcuda.driver.types.CUdevice;
public class EnumDevices {
public static void main(String args[]) {
CUDA cuda = new CUDA(true);
int count = cuda.getDeviceCount();
System.out.println("Total number of devices: " + count);
for (int i = 0; i < count; i++) {
CUdevice dev = cuda.getDevice(i);
String name = cuda.getDeviceName(dev);
System.out.println("Name: " + name);
int version[] = cuda.getDeviceComputeCapability(dev);
System.out.println("Version: " +
String.format("%d.%d", version[0], version[1]));
CUdevprop prop = cuda.getDeviceProperties(dev);
System.out.println("Clock rate: " + prop.clockRate + " MHz");
System.out.println("Threads per block: " + prop.maxThreadsPerBlock);
}
}
}
< /code>
Hier ist der Javac -Befehl: < /p>
javac -cp /home/manish.yadav/Desktop/JCuda-All-0.3.2-bin-linux-x86_64 EnumDevices
< /code>
Wie kompile ich dieses Programm? < /p>
Javac -Fehler: Klassennamen werden nur akzeptiert, wenn die Annotationsverarbeitung explizit angefordert wird ⇐ Java
-
- Similar Topics
- Replies
- Views
- Last post