service.go 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package pserver

import (
	"errors"
	"fmt"
	"sync"
)

// ElementType is the type of elements of a Parameter.
type ElementType int

12 13 14 15
const (
	AlreadyInitialized = "pserver already initialized"
	Uninitialized      = "pserver not fully initialized"
)
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

// Supported element types
const (
	Int32 ElementType = iota
	UInt32
	Int64
	UInt64
	Float32
	Float64
)

// Parameter is a piece of data to sync with the parameter server.
type Parameter struct {
	Name        string
	ElementType ElementType
D
dzhwinter 已提交
31
	Content     []byte
32 33 34 35 36 37 38 39 40 41 42
}

// ParameterWithConfig contains the parameter and the configuration.
type ParameterWithConfig struct {
	Param  Parameter
	Config []byte // parameter configuration in Proto Buffer format
}

// Gradient is the gradient of the parameter.
type Gradient Parameter

H
Helin Wang 已提交
43
// Service is the RPC service for pserver.
44 45 46
type Service struct {
	initialized chan struct{}

47
	mu     sync.Mutex
D
dzhwinter 已提交
48
	optMap map[string]*optimizer
49 50
}

H
Helin Wang 已提交
51
// NewService creates a new service.
52
func NewService() *Service {
D
dzhwinter 已提交
53 54
	s := &Service{}
	s.optMap = make(map[string]*optimizer)
55 56 57 58
	s.initialized = make(chan struct{})
	return s
}

H
Helin Wang 已提交
59
// InitParam initializes a parameter.
60 61 62
func (s *Service) InitParam(paramWithConfigs ParameterWithConfig, dummy *int) error {
	select {
	case <-s.initialized:
63
		return errors.New(AlreadyInitialized)
64 65 66 67 68 69 70 71 72 73 74
	default:
	}

	// TODO(helin): parse parameter config

	s.mu.Lock()
	defer s.mu.Unlock()

	// TODO(helin): check if paramWithConfigs.Param.Content is
	// properly memory aligned, if not, make copy to a memory
	// aligned region.
D
dzhwinter 已提交
75
	s.optMap[paramWithConfigs.Param.Name] = newOptimizer(paramWithConfigs)
76 77 78
	return nil
}

H
Helin Wang 已提交
79 80
// FinishInitParams tells the parameter server that the parameter
// initialization has finished.
81 82 83
func (s *Service) FinishInitParams(dummy0 int, dummy1 *int) error {
	select {
	case <-s.initialized:
84
		return errors.New(AlreadyInitialized)
85 86 87 88 89 90 91
	default:
	}

	close(s.initialized)
	return nil
}

92
// SendGrad sends gradient to parameter servers for parameter
H
Helin Wang 已提交
93
// optimization.
94
func (s *Service) SendGrad(g Gradient, dummy *int) error {
95 96 97
	select {
	case <-s.initialized:
	default:
98
		return errors.New(Uninitialized)
99
	}
100 101

	s.mu.Lock()
H
Helin Wang 已提交
102
	defer s.mu.Unlock()
103

D
dzhwinter 已提交
104 105
	o, ok := s.optMap[g.Name]
	if !ok {
D
dzhwinter 已提交
106
		return fmt.Errorf("parameter: %s does not exist", g.Name)
D
dzhwinter 已提交
107
	}
108

D
dongzhihong 已提交
109
	return o.UpdateParameter(g)
110 111
}

112 113
// GetParam gets parameters from the parameter server.
func (s *Service) GetParam(name string, parameter *Parameter) error {
114 115
	<-s.initialized
	s.mu.Lock()
H
Helin Wang 已提交
116
	defer s.mu.Unlock()
117

D
dongzhihong 已提交
118
	opt, ok := s.optMap[name]
119 120
	if !ok {
		return fmt.Errorf("parameter: %s does not exist", name)
121 122
	}

123 124 125 126 127 128 129
	// The parameter content (a byte slice) may change
	// during RPC serialization due to write from other
	// goroutine, we allow it since mini-batch based deep
	// learning optimization methods are stochastic in
	// nature. This race condition is allowed deliberately
	// to save the program from making a copy of the
	// paramter content.
D
dongzhihong 已提交
130 131
	parameter.Name = name
	parameter.ElementType = opt.ElementType
132 133
	parameter.Content = opt.GetWeights()
	return nil
134 135
}

H
Helin Wang 已提交
136 137
// Save tells the parameter server to save parameters.
func (s *Service) Save(path string, dummy *int) error {
138 139 140 141 142
	<-s.initialized

	// TODO
	return nil
}