Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between partial evaluation and function inlining in a functional language?

I know that:

  1. Function inlining is to replace a function call with the function definition.
  2. Partial evaluation is to evaluate the known (static) parts of a program at compile time.

There is a distinction between the two in imperative languages like C, where operators are distinct from functions. However, is there any difference between the two in functional languages like Haskell where operators are functions too?

Is the only difference between the two that function inlining can be performed on selective parts of a program whereas partial evaluation is performed on the entire program (i.e. vs )?

What are the semantic differences between the two optimization techniques?

like image 886
Aadit M Shah Avatar asked Nov 18 '14 13:11

Aadit M Shah


People also ask

What is the difference between full and partial functional dependency?

Full Functional Dependency equates to the normalization standard of Second Normal Form. Partial Functional Dependency does not equate to the normalization standard of Second Normal Form.

What is the purpose of inline functions?

So, let’s first understand why inline functions are used and what is the purpose of inline function? When the program executes the function call instruction the CPU stores the memory address of the instruction following the function call, copies the arguments of the function on the stack and finally transfers control to the specified function.

Do inline functions improve performance in C++?

Last thing to keep in mind that inline functions are the valuable feature of C++. An appropriate use of inline function can provide performance enhancement but if inline functions are used arbitrarily then they can’t provide better result. In other words don’t expect better performance of program.

What is “loss function”?

* “Loss function” is the machine learning word for “ objective function ” — they’re the same thing.


1 Answers

There is a difference between

  • evaluating constant expressions over a given set of operators and functions known by the compiler (or even preprocessor), which happens at compile time . E.g. the compiler compiles print(2*2) as print(4). This needs by no means to be limited to operator expressions, as you seem to imply (e.g. print(sqrt(2.0))
  • partial evaluation, which is a broader concept. A compiler could realise that print(myfunc(2)) could be transformed into print(c) where c is the result of calling myfunc(2). It could then (at "specialisation time") call myfunc(2) to determine c. Of course, this will go badly wrong if myfunc has side-effects, like wiping one's own hard disk instead of the program user's. Hence the compiler needs some sort of annotation or attribute to know when this is allowed/desired (e.g. C++11's constexpr)

Inlining is an unrelated concept. Inlining a function call means replacing the call by the body of the called function. This body is not evaluated.

There is a distinction between the two in imperative languages like C, where operators are distinct from functions. However, is there any difference between the two in functional languages like Haskell where operators are functions too?

This distinctness (operators vs. functions) is purely syntactic, and is unrelated to the difference between inlining and partial evaluation:

Both function calls and expressions with operators can be inlined and compile-time evaluated in C. Compile-time evaluation is restricted to expressions over a fixed set of operators and functions (mostly operators, but that is historical accident)

Both concepts make sense and are distinct in Haskell.

  • Inlining: ghc has {-# INLINE f #-}, where f cannot be recursive, for obvious reasons,
  • Partial evaluation: this is usually generalised to Supercompilation where not only expressions of base type are transformed, but even functions, e.g. transforming map f (map g xs) into map (f . g) xs). It can (but need not) do inlining as well. Template Haskell is another way to (explicitely) evaluate part of a program at compile-time.

The answer to your title's question is thus: the difference between inlining and partial evaluation has nothing to do with the difference between functions and operators, and is much the same in functional languages as it is in C. Partial evaluation is probably more difficult in C because of side effects (cf the wiped hard disk above)

like image 60
Hans Lub Avatar answered Nov 12 '22 19:11

Hans Lub