benchmarking: added final results for benchmark 1 for transpiler
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-23 13:57:52 +02:00
parent 2cab6e0698
commit 4a51ebcde9
4 changed files with 395 additions and 1 deletions

View File

@ -29,6 +29,8 @@ function evaluate(expressions::Vector{ExpressionProcessing.PostfixType}, cudaVar
cudacall(compiledKernel, (CuPtr{Float32},CuPtr{Float32},CuPtr{Float32}), cudaVars, cudaParams, cudaResults; threads=threads, blocks=blocks)
end
CUDA.unsafe_free!(cudaParams)
return cudaResults
end