-
Notifications
You must be signed in to change notification settings - Fork 1
Tracker: Additional C functions and macros to implement
OODLER edited this page Feb 16, 2025
·
9 revisions
Complete | Macro Name | Description |
---|---|---|
IN TEST | PerlOMP_1D_Array_NUM_ELEMENTS |
Returns the number of elements in a 1D Perl array. |
IN TEST | PerlOMP_2D_AoA_NUM_ROWS |
Returns the number of rows in a 2D Perl array of arrays. |
IN TEST | PerlOMP_2D_AoA_NUM_COLS |
Returns the number of columns in a 2D Perl array of arrays. |
DONE | PerlOMP_1D_Array_TO_1D_FLOAT_ARRAY |
Converts a 1D Perl array to a C array of floats. |
DONE | PerlOMP_1D_Array_TO_1D_INT_ARRAY |
Converts a 1D Perl array to a C array of integers. |
NOT DOING | PerlOMP_1D_Array_TO_1D_DOUBLE_ARRAY |
Converts a 1D Perl array to a C array of doubles. |
IN TEST | PerlOMP_1D_Array_TO_1D_STRING_ARRAY |
Converts a 1D Perl array to a C array of strings. |
DOING | PerlOMP_1D_Array_TO_1D_MIXED_ARRAY |
Converts a 1D Perl array with mixed data types to a generic C array. |
TODO | PerlOMP_2D_AoA_TO_2D_FLOAT_ARRAY |
Converts a 2D Perl array of arrays to a 2D C array of floats. |
DONE | PerlOMP_2D_AoA_TO_2D_INT_ARRAY |
Converts a 2D Perl array of arrays to a 2D C array of integers. |
DONE | PerlOMP_2D_AoA_TO_2D_DOUBLE_ARRAY |
Converts a 2D Perl array of arrays to a 2D C array of doubles. |
TODO | PerlOMP_2D_AoA_TO_2D_STRING_ARRAY |
Converts a 2D Perl array of arrays to a 2D C array of strings. |
TODO | PerlOMP_2D_AoA_TO_2D_MIXED_ARRAY |
Converts a 2D Perl array of arrays with mixed data types to a generic 2D C array. |
TODO | PerlOMP_1D_FLOAT_ARRAY_TO_Array |
Converts a C array of floats to a 1D Perl array. |
TODO | PerlOMP_1D_INT_ARRAY_TO_Array |
Converts a C array of integers to a 1D Perl array. |
NOT DOING | PerlOMP_1D_DOUBLE_ARRAY_TO_Array |
Converts a C array of doubles to a 1D Perl array. |
TODO | PerlOMP_1D_MIXED_ARRAY_TO_Array |
Converts a generic C array to a 1D Perl array with mixed data types. |
TODO | PerlOMP_2D_FLOAT_ARRAY_TO_AoA |
Converts a C 2D array of floats to a 2D Perl array of arrays. |
TODO | PerlOMP_2D_INT_ARRAY_TO_AoA |
Converts a C 2D array of integers to a 2D Perl array of arrays. |
TODO | PerlOMP_2D_STRING_ARRAY_TO_AoA |
Converts a C 2D array of strings to a 2D Perl array of arrays. |
TODO | PerlOMP_2D_MIXED_ARRAY_TO_AoA |
Converts a generic 2D C array to a 2D Perl array of arrays with mixed data types. |
TODO | PerlOMP_1D_Array_TO_1D_FLOAT_ARRAY_r |
A threaded version of the function that converts a 1D Perl array to a C array of floats. |
TODO | PerlOMP_2D_AoA_TO_2D_STRING_ARRAY_r |
A threaded version of the function that converts a 2D Perl array of arrays to a 2D C array. |
TODO | PerlOMP_VERIFY_1D_Array |
Checks if a Perl variable is a valid 1D array reference. |
TODO | PerlOMP_VERIFY_2D_AoA |
Checks if a Perl variable is a valid 2D array of arrays reference. |
TODO | PerlOMP_FREE_FLOAT_ARRAY |
Frees a C array of floats created from a Perl structure. |
TODO | PerlOMP_FREE_2D_FLOAT_ARRAY |
Frees a 2D C array of floats created from a Perl structure. |
TODO | PerlOMP_FREE_MIXED_ARRAY |
Frees a C array with mixed data types created from a Perl structure. |
Complete | Macro Name | Description |
---|---|---|
TODO | PerlOMP_VERIFY_1D_Array |
Checks if a Perl variable is a valid 1D array reference. |
TODO | PerlOMP_VERIFY_2D_AoA |
Checks if a Perl variable is a valid 2D array of arrays reference. |
TODO | PerlOMP_VERIFY_1D_FLOAT_ARRAY |
Verifies that the 1D array contains only floats. |
TODO | PerlOMP_VERIFY_1D_INT_ARRAY |
Verifies that the 1D array contains only integers. |
TODO | PerlOMP_VERIFY_1D_DOUBLE_ARRAY |
Verifies that the 1D array contains only doubles. |
TODO | PerlOMP_VERIFY_1D_CHAR_ARRAY |
Verifies that the 1D array contains only characters (strings). |
TODO | PerlOMP_VERIFY_1D_MIXED_ARRAY |
Verifies that the 1D array contains mixed types (if needed, use type-specific checks). |
TODO | PerlOMP_VERIFY_2D_FLOAT_ARRAY |
Verifies that the 2D array of arrays contains only floats. |
TODO | PerlOMP_VERIFY_2D_INT_ARRAY |
Verifies that the 2D array of arrays contains only integers. |
TODO | PerlOMP_VERIFY_2D_DOUBLE_ARRAY |
Verifies that the 2D array of arrays contains only doubles. |
TODO | PerlOMP_VERIFY_2D_STRING_ARRAY |
Verifies that the 2D array of arrays contains only strings. |
TODO | PerlOMP_VERIFY_2D_MIXED_ARRAY |
Verifies that the 2D array of arrays contains mixed data types. |