|
- package ops2
-
- import (
- "fmt"
- "io"
-
- "gitlink.org.cn/cloudream/common/pkgs/future"
- "gitlink.org.cn/cloudream/common/utils/io2"
- "gitlink.org.cn/cloudream/common/utils/sync2"
- "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/ec"
- "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/ec/lrc"
- "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/ioswitch/dag"
- "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/ioswitch/exec"
- "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/ioswitch/utils"
- jcstypes "gitlink.org.cn/cloudream/jcs-pub/common/types"
- )
-
- func init() {
- exec.UseOp[*GalMultiply]()
- }
-
- type GalMultiply struct {
- Coef [][]byte `json:"coef"`
- Inputs []exec.VarID `json:"inputs"`
- Outputs []exec.VarID `json:"outputs"`
- ChunkSize int `json:"chunkSize"`
- }
-
- func (o *GalMultiply) Execute(ctx *exec.ExecContext, e *exec.Executor) error {
- inputs, err := exec.BindArray[*exec.StreamValue](e, ctx.Context, o.Inputs)
- if err != nil {
- return err
- }
- defer func() {
- for _, s := range inputs {
- s.Stream.Close()
- }
- }()
-
- outputWrs := make([]*io.PipeWriter, len(o.Outputs))
- outputVars := make([]*exec.StreamValue, len(o.Outputs))
- for i := range o.Outputs {
- rd, wr := io.Pipe()
- outputVars[i] = &exec.StreamValue{Stream: rd}
- outputWrs[i] = wr
- }
-
- fut := future.NewSetVoid()
- go func() {
- mul := ec.GaloisMultiplier().BuildGalois()
-
- inputChunks := make([][]byte, len(o.Inputs))
- for i := range o.Inputs {
- inputChunks[i] = make([]byte, o.ChunkSize)
- }
- outputChunks := make([][]byte, len(o.Outputs))
- for i := range o.Outputs {
- outputChunks[i] = make([]byte, o.ChunkSize)
- }
-
- for {
- err := sync2.ParallelDo(inputs, func(s *exec.StreamValue, i int) error {
- _, err := io.ReadFull(s.Stream, inputChunks[i])
- return err
- })
- if err == io.EOF {
- fut.SetVoid()
- return
- }
- if err != nil {
- fut.SetError(err)
- return
- }
-
- err = mul.Multiply(o.Coef, inputChunks, outputChunks)
- if err != nil {
- fut.SetError(err)
- return
- }
-
- for i := range o.Outputs {
- err := io2.WriteAll(outputWrs[i], outputChunks[i])
- if err != nil {
- fut.SetError(err)
- return
- }
- }
- }
- }()
-
- exec.PutArray(e, o.Outputs, outputVars)
- err = fut.Wait(ctx.Context)
- if err != nil {
- for _, wr := range outputWrs {
- wr.CloseWithError(err)
- }
- return err
- }
-
- for _, wr := range outputWrs {
- wr.Close()
- }
- return nil
- }
-
- func (o *GalMultiply) String() string {
- return fmt.Sprintf(
- "ECMultiply(coef=%v) (%v) -> (%v)",
- o.Coef,
- utils.FormatVarIDs(o.Inputs),
- utils.FormatVarIDs(o.Outputs),
- )
- }
-
- type LRCConstructAnyNode struct {
- dag.NodeBase
- LRC jcstypes.LRCRedundancy
- InputIndexes []int
- OutputIndexes []int
- }
-
- func (b *GraphNodeBuilder) NewLRCConstructAny(lrc jcstypes.LRCRedundancy) *LRCConstructAnyNode {
- node := &LRCConstructAnyNode{
- LRC: lrc,
- }
- b.AddNode(node)
- return node
- }
-
- func (t *LRCConstructAnyNode) AddInput(str *dag.StreamVar, dataIndex int) {
- t.InputIndexes = append(t.InputIndexes, dataIndex)
- idx := t.InputStreams().EnlargeOne()
- str.To(t, idx)
- }
-
- func (t *LRCConstructAnyNode) RemoveAllInputs() {
- t.InputStreams().ClearAllInput(t)
- t.InputStreams().Slots.Resize(0)
- t.InputIndexes = nil
- }
-
- func (t *LRCConstructAnyNode) NewOutput(dataIndex int) *dag.StreamVar {
- t.OutputIndexes = append(t.OutputIndexes, dataIndex)
- return t.OutputStreams().AppendNew(t).Var()
- }
-
- func (t *LRCConstructAnyNode) GenerateOp() (exec.Op, error) {
- l, err := lrc.New(t.LRC.N, t.LRC.K, t.LRC.Groups)
- if err != nil {
- return nil, err
- }
- coef, err := l.GenerateMatrix(t.InputIndexes, t.OutputIndexes)
- if err != nil {
- return nil, err
- }
-
- return &GalMultiply{
- Coef: coef,
- Inputs: t.InputStreams().GetVarIDs(),
- Outputs: t.OutputStreams().GetVarIDs(),
- ChunkSize: t.LRC.ChunkSize,
- }, nil
- }
-
- // func (t *LRCConstructAnyType) String() string {
- // return fmt.Sprintf("LRCAny[]%v%v", formatStreamIO(node), formatValueIO(node))
- // }
-
- type LRCConstructGroupNode struct {
- dag.NodeBase
- LRC jcstypes.LRCRedundancy
- TargetBlockIndex int
- }
-
- func (b *GraphNodeBuilder) NewLRCConstructGroup(lrc jcstypes.LRCRedundancy) *LRCConstructGroupNode {
- node := &LRCConstructGroupNode{
- LRC: lrc,
- }
- b.AddNode(node)
-
- node.OutputStreams().Init(node, 1)
- return node
- }
-
- func (t *LRCConstructGroupNode) SetupForTarget(blockIdx int, inputs []*dag.StreamVar) *dag.StreamVar {
- t.TargetBlockIndex = blockIdx
-
- t.InputStreams().Init(len(inputs))
- for i := 0; i < len(inputs); i++ {
- inputs[i].To(t, i)
- }
-
- return t.OutputStreams().Get(0)
- }
-
- func (t *LRCConstructGroupNode) GenerateOp() (exec.Op, error) {
- l, err := lrc.New(t.LRC.N, t.LRC.K, t.LRC.Groups)
- if err != nil {
- return nil, err
- }
- coef, err := l.GenerateGroupMatrix(t.TargetBlockIndex)
- if err != nil {
- return nil, err
- }
-
- return &GalMultiply{
- Coef: coef,
- Inputs: t.InputStreams().GetVarIDs(),
- Outputs: t.OutputStreams().GetVarIDs(),
- ChunkSize: t.LRC.ChunkSize,
- }, nil
- }
-
- // func (t *LRCConstructGroupType) String() string {
- // return fmt.Sprintf("LRCGroup[]%v%v", formatStreamIO(node), formatValueIO(node))
- // }
|