implementation: Finished chapter. checking for errors and textual improvements not finished
Some checks are pending
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.10) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, 1.6) (push) Waiting to run
CI / Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} (x64, ubuntu-latest, pre) (push) Waiting to run

This commit is contained in:
2025-05-08 12:34:08 +02:00
parent b69a3efe96
commit 6b7205e026
7 changed files with 104 additions and 62 deletions

View File

@ -41,6 +41,17 @@ parameters[2][1] = 5.0
parameters[2][2] = 0.0
parameters[3][1] = 16.0
@testset "TEMP" begin
return
exprs = [:(x1 + p1)]
vars = Matrix{Float32}(undef, 1, 1)
params = Vector{Vector{Float32}}(undef, 1)
vars[1, 1] = 1
params[1] = [1]
Transpiler.evaluate(exprs, vars, params)
end
@testset "Test transpiler evaluation" begin
results = Transpiler.evaluate(expressions, variables, parameters)

View File

@ -12,7 +12,7 @@ include(joinpath(baseFolder, "src", "Transpiler.jl"))
@testset "Functionality tests" begin
# include("ExpressionProcessingTests.jl")
# include("InterpreterTests.jl")
# include("TranspilerTests.jl")
include("TranspilerTests.jl")
end
@ -22,5 +22,5 @@ end
@testset "Performance tests" begin
# include("PerformanceTuning.jl")
include("PerformanceTests.jl")
# include("PerformanceTests.jl")
end