service.go 3.2 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
type Service struct {
	initialized chan struct{}
46
	idx         int
47

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

W
wuyi05 已提交
52 53
// NewService creates a new service, will bypass etcd registration if no
// endpoints specified.
54 55 56 57
func NewService(idx int) (*Service, error) {
	s := &Service{
		idx: idx,
	}
58
  s.optMap = make(map[string]*optimizer)
59
	s.initialized = make(chan struct{})
W
wuyi05 已提交
60
	return s, nil
61 62
}

H
Helin Wang 已提交
63
// InitParam initializes a parameter.
64 65 66
func (s *Service) InitParam(paramWithConfigs ParameterWithConfig, dummy *int) error {
	select {
	case <-s.initialized:
67
		return errors.New(AlreadyInitialized)
68 69 70 71 72 73 74 75 76 77 78
	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 已提交
79
	s.optMap[paramWithConfigs.Param.Name] = newOptimizer(paramWithConfigs)
80 81 82
	return nil
}

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

	close(s.initialized)
	return nil
}

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

	s.mu.Lock()
H
Helin Wang 已提交
106
	defer s.mu.Unlock()
107

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

D
dongzhihong 已提交
113
	return o.UpdateParameter(g)
114 115
}

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

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

127 128 129 130 131 132 133
	// 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 已提交
134
	parameter.Name = name
D
dongzhihong 已提交
135
	parameter.ElementType = opt.elementType
136 137
	parameter.Content = opt.GetWeights()
	return nil
138 139
}

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

	// TODO
	return nil
}