mirror of
https://github.com/vsariola/sointu.git
synced 2025-11-18 16:49:06 -05:00
drafting
This commit is contained in:
parent
fa7901c7c6
commit
f92ecb2e99
217
vm/multithread_synth.go
Normal file
217
vm/multithread_synth.go
Normal file
@ -0,0 +1,217 @@
|
||||
package vm
|
||||
|
||||
import (
|
||||
"math"
|
||||
"math/bits"
|
||||
"runtime"
|
||||
"sync"
|
||||
|
||||
"github.com/vsariola/sointu"
|
||||
)
|
||||
|
||||
type (
|
||||
MultithreadSynth struct {
|
||||
voiceMapping voiceMapping
|
||||
synths []sointu.Synth
|
||||
commands chan<- multithreadSynthCommand // maxtime
|
||||
results <-chan multithreadSynthResult // rendered buffer
|
||||
pool sync.Pool
|
||||
synther sointu.Synther
|
||||
}
|
||||
|
||||
MultithreadSynther struct {
|
||||
synther sointu.Synther
|
||||
name string
|
||||
}
|
||||
|
||||
voiceMapping [MAX_THREADS][MAX_VOICES]int
|
||||
|
||||
multithreadSynthCommand struct {
|
||||
core int
|
||||
samples int
|
||||
time int
|
||||
}
|
||||
|
||||
multithreadSynthResult struct {
|
||||
buffer *sointu.AudioBuffer
|
||||
samples int
|
||||
time int
|
||||
renderError error
|
||||
}
|
||||
)
|
||||
|
||||
const MAX_THREADS = 4
|
||||
|
||||
func MakeMultithreadSynther(synther sointu.Synther) MultithreadSynther {
|
||||
return MultithreadSynther{synther: synther, name: "Multithread " + synther.Name()}
|
||||
}
|
||||
|
||||
func (s MultithreadSynther) Name() string { return s.name }
|
||||
func (s MultithreadSynther) SupportsMultithreading() bool { return true }
|
||||
|
||||
func (s MultithreadSynther) Synth(patch sointu.Patch, bpm int) (sointu.Synth, error) {
|
||||
patches, voiceMapping := splitPatchByCores(patch)
|
||||
synths := make([]sointu.Synth, 0, len(patches))
|
||||
for _, p := range patches {
|
||||
synth, err := s.synther.Synth(p, bpm)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
synths = append(synths, synth)
|
||||
}
|
||||
ret := &MultithreadSynth{
|
||||
synths: synths,
|
||||
voiceMapping: voiceMapping,
|
||||
pool: sync.Pool{New: func() any { ret := make(sointu.AudioBuffer, 0, 8096); return &ret }},
|
||||
}
|
||||
ret.startProcesses()
|
||||
ret.synther = s.synther
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) Update(patch sointu.Patch, bpm int) error {
|
||||
patches, voiceMapping := splitPatchByCores(patch)
|
||||
if s.voiceMapping != voiceMapping {
|
||||
s.voiceMapping = voiceMapping
|
||||
s.closeSynths()
|
||||
}
|
||||
for i, p := range patches {
|
||||
if len(s.synths) <= i {
|
||||
synth, err := s.synther.Synth(p, bpm)
|
||||
if err != nil {
|
||||
s.closeSynths()
|
||||
return err
|
||||
}
|
||||
s.synths = append(s.synths, synth)
|
||||
} else {
|
||||
if err := s.synths[i].Update(p, bpm); err != nil {
|
||||
s.closeSynths()
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) startProcesses() {
|
||||
maxProcs := runtime.GOMAXPROCS(0)
|
||||
cmdChan := make(chan multithreadSynthCommand, maxProcs)
|
||||
s.commands = cmdChan
|
||||
resultsChan := make(chan multithreadSynthResult, maxProcs)
|
||||
s.results = resultsChan
|
||||
for i := 0; i < maxProcs; i++ {
|
||||
go func(commandCh <-chan multithreadSynthCommand, resultCh chan<- multithreadSynthResult) {
|
||||
for cmd := range commandCh {
|
||||
buffer := s.pool.Get().(*sointu.AudioBuffer)
|
||||
*buffer = append(*buffer, make(sointu.AudioBuffer, cmd.samples)...)
|
||||
samples, time, renderError := s.synths[cmd.core].Render(*buffer, cmd.time)
|
||||
resultCh <- multithreadSynthResult{buffer: buffer, samples: samples, time: time, renderError: renderError}
|
||||
}
|
||||
}(cmdChan, resultsChan)
|
||||
}
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) Close() {
|
||||
close(s.commands)
|
||||
s.closeSynths()
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) closeSynths() {
|
||||
for _, synth := range s.synths {
|
||||
synth.Close()
|
||||
}
|
||||
s.synths = s.synths[:0]
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) Trigger(voiceIndex int, note byte) {
|
||||
for core, synth := range s.synths {
|
||||
if ind := s.voiceMapping[core][voiceIndex]; ind >= 0 {
|
||||
synth.Trigger(ind, note)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) Release(voiceIndex int) {
|
||||
for core, synth := range s.synths {
|
||||
if ind := s.voiceMapping[core][voiceIndex]; ind >= 0 {
|
||||
synth.Release(ind)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) CPULoad(loads []sointu.CPULoad) (elems int) {
|
||||
for _, synth := range s.synths {
|
||||
n := synth.CPULoad(loads)
|
||||
elems += n
|
||||
loads = loads[n:]
|
||||
if len(loads) <= 0 {
|
||||
return
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func (s *MultithreadSynth) Render(buffer sointu.AudioBuffer, maxtime int) (samples int, time int, renderError error) {
|
||||
count := len(s.synths)
|
||||
for i := 0; i < count; i++ {
|
||||
s.commands <- multithreadSynthCommand{core: i, samples: len(buffer), time: maxtime}
|
||||
}
|
||||
clear(buffer)
|
||||
samples = math.MaxInt
|
||||
time = math.MaxInt
|
||||
for i := 0; i < count; i++ {
|
||||
// We mix the results as they come, but the order doesn't matter. This
|
||||
// leads to slight indeterminism in the results, because the order of
|
||||
// floating point additions can change the least significant bits.
|
||||
result := <-s.results
|
||||
if result.renderError != nil && renderError == nil {
|
||||
renderError = result.renderError
|
||||
}
|
||||
samples = min(samples, result.samples)
|
||||
time = min(time, result.time)
|
||||
for j := 0; j < samples; j++ {
|
||||
buffer[j][0] += (*result.buffer)[j][0]
|
||||
buffer[j][1] += (*result.buffer)[j][1]
|
||||
}
|
||||
*result.buffer = (*result.buffer)[:0]
|
||||
s.pool.Put(result.buffer)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func splitPatchByCores(patch sointu.Patch) ([]sointu.Patch, voiceMapping) {
|
||||
cores := 1
|
||||
for _, instr := range patch {
|
||||
cores = max(bits.Len((uint)(instr.ThreadMaskM1+1)), cores)
|
||||
}
|
||||
cores = min(cores, MAX_THREADS)
|
||||
ret := make([]sointu.Patch, cores)
|
||||
for c := 0; c < cores; c++ {
|
||||
ret[c] = make(sointu.Patch, 0, len(patch))
|
||||
}
|
||||
var voicemapping [MAX_THREADS][MAX_VOICES]int
|
||||
for c := 0; c < MAX_THREADS; c++ {
|
||||
for j := 0; j < MAX_VOICES; j++ {
|
||||
voicemapping[c][j] = -1
|
||||
}
|
||||
}
|
||||
for c := range cores {
|
||||
coreVoice := 0
|
||||
curVoice := 0
|
||||
for _, instr := range patch {
|
||||
mask := instr.ThreadMaskM1 + 1
|
||||
if mask&(1<<c) != 0 {
|
||||
ret[c] = append(ret[c], instr)
|
||||
for j := 0; j < instr.NumVoices; j++ {
|
||||
if coreVoice+j >= MAX_VOICES {
|
||||
break
|
||||
}
|
||||
voicemapping[c][curVoice+j] = coreVoice + j
|
||||
}
|
||||
coreVoice += instr.NumVoices
|
||||
}
|
||||
curVoice += instr.NumVoices
|
||||
}
|
||||
}
|
||||
return ret, voicemapping
|
||||
}
|
||||
Reference in New Issue
Block a user