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

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

W
wuyi05 已提交
27 28 29
// PsDesired is etcd path for store desired pserver count
const PsDesired = "/ps_desired"

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

// 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 已提交
46
// Service is the RPC service for pserver.
47 48
type Service struct {
	initialized chan struct{}
49
	idx         int
50 51 52 53 54 55

	mu       sync.Mutex
	opt      *optimizer
	paramMap map[string]Parameter
}

W
wuyi05 已提交
56 57
// NewService creates a new service, will bypass etcd registration if no
// endpoints specified.
58 59 60 61 62
func NewService(idx int) (*Service, error) {
	s := &Service{
		idx: idx,
		opt: newOptimizer(sgd, 0.005),
	}
63 64
	s.paramMap = make(map[string]Parameter)
	s.initialized = make(chan struct{})
W
wuyi05 已提交
65 66 67
	return s, nil
}

H
Helin Wang 已提交
68
// InitParam initializes a parameter.
69 70 71
func (s *Service) InitParam(paramWithConfigs ParameterWithConfig, dummy *int) error {
	select {
	case <-s.initialized:
72
		return errors.New(AlreadyInitialized)
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	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
	return nil
}

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

	close(s.initialized)
	return nil
}

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

	s.mu.Lock()
H
Helin Wang 已提交
111
	defer s.mu.Unlock()
112

113 114 115
	p, ok := s.paramMap[g.Name]
	if !ok {
		return fmt.Errorf("parameter: %s does not exist", g.Name)
116 117
	}

118
	return s.opt.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
}