Skip to content

Commit 6748ce9

Browse files
committed
Añadida anotación @parallel, cambiada librería math_lib.cl a fc_math.cl y añadida librería fc_image.cl
1 parent 0c040d7 commit 6748ce9

File tree

175 files changed

+5899
-196
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+5899
-196
lines changed

.idea/.gitignore

Whitespace-only changes.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

100755100644
File mode changed.

gen/.gitignore

100755100644
File mode changed.

gen/generate.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,11 @@ if word_in_list "$ACTION" all java math; then
8585
fi
8686

8787
if word_in_list "$ACTION" all opencl math; then
88-
python "$FILL" "$OCL_TEMPLATES/math_lib.mako" "$OCL_DIR/math_lib.cl"
88+
python "$FILL" "$OCL_TEMPLATES/fc_math.mako" "$OCL_DIR/fc_math.cl"
89+
fi
90+
91+
if word_in_list "$ACTION" all opencl image; then
92+
python "$FILL" "$OCL_TEMPLATES/fc_image.mako" "$OCL_DIR/fc_image.cl"
8993
fi
9094

9195
for cls in Byte Double Float Int Long Short; do

gen/template/include/array.mako

100755100644
File mode changed.

gen/template/include/vector.mako

100755100644
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ FANCIER_API void fcVector_releaseJNI(JNIEnv* env);
9393

9494
% for type in types:
9595
% for vlen in vlens:
96-
FANCIER_API fc${type|c}${vlen}* fc${type|c}${vlen}_getJava(JNIEnv* env, jobject obj);
9796
FANCIER_API jobject fc${type|c}${vlen}_wrap(JNIEnv* env, fc${type|c}${vlen} vec);
9897
FANCIER_API fc${type|c}${vlen} fc${type|c}${vlen}_unwrap(JNIEnv* env, jobject vec, fcError* err);
9998

gen/template/include/vector_array.mako

100755100644
File mode changed.

0 commit comments

Comments
 (0)