optimizer.go 2.8 KB
Newer Older
1 2
package pserver

D
dongzhihong 已提交
3
// #cgo CFLAGS: -I ../../
4
// #cgo LDFLAGS: ${SRCDIR}/client/c/libpaddle_go_optimizer.a -lstdc++ -lm
D
dongzhihong 已提交
5 6 7
// #include "paddle/optimizer/optimizer.h"
// #include <stdlib.h>
// #include <string.h>
8
import "C"
D
dongzhihong 已提交
9

10 11 12
import (
	"fmt"
	"unsafe"
D
dongzhihong 已提交
13 14

	log "github.com/sirupsen/logrus"
15 16 17 18 19
)

var nullPtr = unsafe.Pointer(uintptr(0))

type optimizer struct {
D
dongzhihong 已提交
20 21
	opt         *C.struct_paddle_optimizer
	elementType ElementType
22
	contentLen  int
D
dongzhihong 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35
}

func cArrayToSlice(p unsafe.Pointer, len int) []byte {
	if p == nullPtr {
		return nil
	}

	// create a Go clice backed by a C array, reference:
	// https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices
	//
	// Go garbage collector will not interact with this data, need
	// to be freed properly.
	return (*[1 << 30]byte)(p)[:len:len]
36 37
}

D
dongzhihong 已提交
38
func newOptimizer(paramWithConfigs ParameterWithConfig, State []byte) *optimizer {
39
	o := &optimizer{}
D
dongzhihong 已提交
40
	o.elementType = paramWithConfigs.Param.ElementType
41
	o.contentLen = len(paramWithConfigs.Param.Content)
D
dzhwinter 已提交
42 43
	p := paramWithConfigs.Param
	c := paramWithConfigs.Config
D
dongzhihong 已提交
44
	s := State
45
	paramBufferSize := C.size_t(len(p.Content))
D
dongzhihong 已提交
46 47
	log.WithFields(log.Fields{
		"ElementType": p.ElementType,
48
		"ParamSize":   paramBufferSize,
D
dongzhihong 已提交
49
		"ConfigSize":  len(c),
D
dongzhihong 已提交
50
		"StateSize":   len(s),
D
dongzhihong 已提交
51
	}).Info("New Optimizer Created with config:")
D
dongzhihong 已提交
52
	var cbuffer unsafe.Pointer
53 54 55
	cbuffer = C.malloc(paramBufferSize)

	C.memcpy(cbuffer, unsafe.Pointer(&p.Content[0]), paramBufferSize)
D
dongzhihong 已提交
56 57 58 59 60
	var cstate unsafe.Pointer
	if len(s) != 0 {
		cstate = unsafe.Pointer(&s[0])
	}

D
dongzhihong 已提交
61
	o.opt = C.paddle_create_optimizer((*C.uchar)(&c[0]), C.int(len(c)),
62
		C.paddle_element_type(p.ElementType), cbuffer, C.int(paramBufferSize), (*C.char)(cstate), C.int(len(s)))
63 64 65
	return o
}

66
func (o *optimizer) GetWeights() []byte {
D
dongzhihong 已提交
67
	var buffer unsafe.Pointer
W
wuyi05 已提交
68 69
	bufferLen := C.paddle_optimizer_get_weights(o.opt, &buffer)
	return cArrayToSlice(buffer, int(bufferLen)*C.sizeof_float)
D
dongzhihong 已提交
70
}
71

D
dongzhihong 已提交
72 73
func (o *optimizer) GetStates() []byte {
	var cbuffer *C.char
74 75
	cbufferLen := C.paddle_optimizer_get_state(o.opt, &cbuffer)
	return cArrayToSlice(unsafe.Pointer(cbuffer), int(cbufferLen))
D
dongzhihong 已提交
76 77
}

D
dongzhihong 已提交
78
func (o *optimizer) UpdateParameter(g Gradient) error {
D
dongzhihong 已提交
79 80
	if o.elementType != g.ElementType {
		return fmt.Errorf("Name: %s, parameter and gradient element type not match, parameter: %v, gradient: %v", g.Name, o.elementType, g.ElementType)
81 82
	}

83 84 85 86 87
	if o.contentLen != len(g.Content) {
		return fmt.Errorf("Name: %s, parameter and gradient does not have same content len, parameter: %d, gradient: %d", g.Name, o.contentLen, len(g.Content))
	}

	r := C.paddle_update_parameter(o.opt, C.paddle_element_type(g.ElementType), unsafe.Pointer(&g.Content[0]), C.int(len(g.Content)))
88
	if r != 0 {
H
Helin Wang 已提交
89
		return fmt.Errorf("optimizer update returned error code: %d", r)
90 91 92 93 94 95 96
	}
	return nil
}

func (o *optimizer) Cleanup() {
	if unsafe.Pointer(o.opt) != nullPtr {
		C.paddle_release_optimizer(o.opt)
97
		o.opt = (*C.struct_paddle_optimizer)(nullPtr)
98 99
	}
}