Go to file
Daniel Wiplinger de73d83d9e
Some checks failed
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.10) (push) Has been cancelled
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.6) (push) Has been cancelled
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, pre) (push) Has been cancelled
updated compat helper to not always run
2024-10-02 13:19:14 +02:00
.github updated compat helper to not always run 2024-10-02 13:19:14 +02:00
images added operators to the interpreter. storing result still missing 2024-08-08 12:06:42 +02:00
other added operators to the interpreter. storing result still missing 2024-08-08 12:06:42 +02:00
package added guard clause generation 2024-09-28 11:41:13 +02:00
.gitignore Initial commit 2024-06-28 19:30:47 +02:00
LICENSE added julia package 2024-07-06 12:05:26 +02:00
PTX_understanding.md continued understanding given PTX file and made plan on how to approach the transpiler part 2024-09-22 09:32:39 +02:00
README.md added operators to the interpreter. storing result still missing 2024-08-08 12:06:42 +02:00
Ressources.txt first simple part of the interpreter finished 2024-08-03 12:11:43 +02:00

master-thesis

Input:

  • Vector of Expressions expressions::Vector{Expr}
  • Matrix for the variables of the expression (x1..xn) variables::Matrix{Float64}
  • Vector of Vectors for the parameters of the expression (p1..pn) parameters::Vector{Vector{Float64}}

All expressions have to have the same number of variables. They do not need to appear in the same spot, they only need to be labled x1 through xn. However, they can have a different number of parameters. These can also appear at any given point and must be labled p1 through pn. Parameters and variables can not have the label x0 or p0.

The Matrix is being read in column-major order. This means that each column corresponds to a set of variables to use for the expressions. Row 1 through row n are then used to retrieve the values for x1 through xn.

Every inner vector of the parameters corresponds to an expression. So the i-th inner vector stores the parameter values for the i-th expression. Parameter pi corresponds to the value stored at index i of the inner vector.

The figure below demonstrates how the input data is structured and how they work together. Note that all x1..xn and p1..pn are the markers for the variables and parameters used in the expressions and can have an arbitrary value. Not every p1 needs to have the same value and not every x1 needs to have the ame value. Explanation of the input data