Skip to content
Snippets Groups Projects
Commit 6b160894 authored by Mohamed Ibrahim's avatar Mohamed Ibrahim
Browse files

Update JavaKernelGuidelines.md

parent e02ccc3a
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,6 @@ Some restrictions/guidelines may be removed or augmented in a future Aparapi rel ...@@ -46,7 +46,6 @@ Some restrictions/guidelines may be removed or augmented in a future Aparapi rel
int foo(int a) { int foo(int a) {
// . . . // . . .
} }
public void run() { public void run() {
int z; int z;
foo(z = 3); foo(z = 3);
...@@ -69,4 +68,4 @@ The C99/OpenCL standard does not define this and so the result would be undefine ...@@ -69,4 +68,4 @@ The C99/OpenCL standard does not define this and so the result would be undefine
##Runtime Exceptions ##Runtime Exceptions
* When run on the GPU, array accesses will not generate an ArrayIndexOutOfBoundsException. Instead the behavior will be unspecified. * When run on the GPU, array accesses will not generate an ArrayIndexOutOfBoundsException. Instead the behavior will be unspecified.
* When run on the GPU, ArithmeticExceptions will not be generated, for example with integer division by zero. Instead the behavior will be unspecified. * When run on the GPU, ArithmeticExceptions will not be generated, for example with integer division by zero. Instead the behavior will be unspecified.
Attribution Attribution
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment