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
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			634 B
		
	
	
	
		
			Julia
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			634 B
		
	
	
	
		
			Julia
		
	
	
	
	
	
using ExpressionExecutorCuda
 | 
						|
using Test
 | 
						|
 | 
						|
const baseFolder = dirname(dirname(pathof(ExpressionExecutorCuda)))
 | 
						|
include(joinpath(baseFolder, "src", "Utils.jl"))
 | 
						|
include(joinpath(baseFolder, "src", "ExpressionProcessing.jl"))
 | 
						|
include(joinpath(baseFolder, "src", "Interpreter.jl"))
 | 
						|
include(joinpath(baseFolder, "src", "Transpiler.jl"))
 | 
						|
 | 
						|
@testset "Functionality tests" begin
 | 
						|
	# include("ExpressionProcessingTests.jl")
 | 
						|
	# include("InterpreterTests.jl")
 | 
						|
	# include("TranspilerTests.jl")
 | 
						|
end
 | 
						|
 | 
						|
 | 
						|
# @testset "CPU Interpreter" begin
 | 
						|
# 	include("CpuInterpreterTests.jl")
 | 
						|
# end
 | 
						|
 | 
						|
@testset "Performance tests" begin
 | 
						|
	include("PerformanceTests.jl")
 | 
						|
end |