We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The compiler still does not translate to C those user-library types created inside the body of operations. An example of code is the following:
Array<Float32> arrayRetMap = array.par().map(Float32.class, new Map<Float32, Int32>() { @Override public Float32 function(Int32 element) { Float32 ret = new Float32(); ret.value = element.value * 1.5f + valor; return ret; } });
This code will be translated to the following C user function:
static float map1(int element) { Float32 ret = new Float32(); ret.value = element * 1.5f + valor; return ret; }
But should be translated to:
static float map1(int element) { float ret; ret = element * 1.5f + valor; return ret; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The compiler still does not translate to C those user-library types created inside the body of operations. An example of code is the following:
This code will be translated to the following C user function:
But should be translated to:
The text was updated successfully, but these errors were encountered: