service.go 3.3 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 32
	Content     *byte
	Length      int
33 34 35 36 37 38 39 40 41 42 43
}

// 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 已提交
44
// Service is the RPC service for pserver.
45 46 47
type Service struct {
	initialized chan struct{}

D
dzhwinter 已提交
48 49 50
	mu sync.Mutex
	// injection from parameter to optimizer
	optMap   map[string]*optimizer
51 52 53
	paramMap map[string]Parameter
}

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

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 79
	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.
	s.paramMap[paramWithConfigs.Param.Name] = paramWithConfigs.Param
D
dzhwinter 已提交
80
	s.optMap[paramWithConfigs.Param.Name] = newOptimizer(paramWithConfigs)
81 82 83
	return nil
}

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

	close(s.initialized)
	return nil
}

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

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

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

D
dzhwinter 已提交
118
	return o.UpdateParameter(p, g)
119 120
}

121 122
// GetParam gets parameters from the parameter server.
func (s *Service) GetParam(name string, parameter *Parameter) error {
123 124
	<-s.initialized
	s.mu.Lock()
H
Helin Wang 已提交
125
	defer s.mu.Unlock()
126

127 128 129
	p, ok := s.paramMap[name]
	if !ok {
		return fmt.Errorf("parameter: %s does not exist", name)
130 131
	}

132 133 134 135 136 137 138 139
	// 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.
	*parameter = p
140 141 142
	return nil
}

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

	// TODO
	return nil
}