Added CPU type

This commit is contained in:
2024-06-21 22:16:42 +02:00
parent 1058970be3
commit 4faa1641c6
10 changed files with 92 additions and 28 deletions

View File

@ -4,7 +4,7 @@ import (
"sync"
)
// compile waits for all functions to finish compilation.
// compile waits for the scan to finish and compiles all functions.
func compile(functions <-chan *Function, errors <-chan error) (map[string]*Function, error) {
allFunctions := map[string]*Function{}
@ -28,18 +28,7 @@ func compile(functions <-chan *Function, errors <-chan error) (map[string]*Funct
}
}
wg := sync.WaitGroup{}
for _, function := range allFunctions {
wg.Add(1)
go func() {
defer wg.Done()
function.Compile()
}()
}
wg.Wait()
compileFunctions(allFunctions)
for _, function := range allFunctions {
if function.Error != nil {
@ -49,3 +38,19 @@ func compile(functions <-chan *Function, errors <-chan error) (map[string]*Funct
return allFunctions, nil
}
// compileFunctions starts a goroutine for each function compilation and waits for completion.
func compileFunctions(functions map[string]*Function) {
wg := sync.WaitGroup{}
for _, function := range functions {
wg.Add(1)
go func() {
defer wg.Done()
function.Compile()
}()
}
wg.Wait()
}