pytaco.apply
- pytaco.apply(func_name, arg_list, output_zero_specifier)
Applies a user-defined function to an
index_expression.- Parameters
- func_name: str
The name of the function to call from the udf dir.
- arg_list: list of index_expression
The arguments that the function
func_nameshould be called with. This should be index expressions corresponding to the number of argumentsfunc_nameexpects.- output_zero_specifier: list of ints:
This specifies that if all inputs in corresponding to
arg_list[output_zero_specifier[i]] are 0, then the output of the entire function should be 0. If this list is empty, then this means the function always outputs a non-zero (as is the case with exp). If this list is[0], this means that whenever the first argument is 0, the output should be 0. A list of[1]implies whenever the second argument is 0, the output should be 0 and so on.[0, 1]means that if both inputs to the function are 0, then a zero output is expected.
Notes
This function searches in the directory specified by calling
set_udf_dir()for a C header that declares and implements a function with namefunc_name. If that function is found, taco will attempt to use that function during compilation to perform computations on the expressions inarg_list. The function must be implemented in C99.