client.go 4.6 KB
Newer Older
D
dongzhihong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at

// http://www.apache.org/licenses/LICENSE-2.0

// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

H
Helin Wang 已提交
15 16 17
package main

/*
18 19 20 21 22
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#define PADDLE_MASTER_OK    0
#define PADDLE_MASTER_ERROR -1
H
Helin Wang 已提交
23

H
Helin Wang 已提交
24 25 26
#define PADDLE_SAVE_MODEL_OK   1
#define PADDLE_SAVE_MODEL_SKIP 0

H
Helin Wang 已提交
27 28 29 30 31
typedef int paddle_master_client;
*/
import "C"

import (
32
	"strings"
H
Helin Wang 已提交
33
	"sync"
34
	"time"
H
Helin Wang 已提交
35 36 37
	"unsafe"

	"github.com/PaddlePaddle/Paddle/go/master"
H
Helin Wang 已提交
38
	log "github.com/sirupsen/logrus"
H
Helin Wang 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
)

var mu sync.Mutex
var handleMap = make(map[C.paddle_master_client]*master.Client)
var curHandle C.paddle_master_client

func add(c *master.Client) C.paddle_master_client {
	mu.Lock()
	defer mu.Unlock()
	client := curHandle
	curHandle++
	handleMap[client] = c
	return client
}

func get(client C.paddle_master_client) *master.Client {
	mu.Lock()
	defer mu.Unlock()
	return handleMap[client]
}

func remove(client C.paddle_master_client) *master.Client {
	mu.Lock()
	defer mu.Unlock()
	h := handleMap[client]
	delete(handleMap, client)
	return h
}

68
//export paddle_new_etcd_master_client
69 70
//
// bufSize is the record buffer size.
71 72
func paddle_new_etcd_master_client(etcdEndpoints *C.char, timeout int, bufSize int) C.paddle_master_client {
	p := C.GoString(etcdEndpoints)
73 74 75 76 77
	endpoints := strings.Split(p, ",")
	c, err := master.NewClient(
		master.WithEtcd(endpoints, time.Duration(timeout)*time.Second),
		master.WithBuffer(bufSize),
	)
78 79 80
	if err != nil {
		panic(err)
	}
81

82
	return add(c)
H
Helin Wang 已提交
83 84
}

85
//export paddle_new_master_client
86 87
//
// bufSize is the record buffer size.
88
func paddle_new_master_client(addr *C.char, bufSize int) C.paddle_master_client {
H
Helin Wang 已提交
89
	a := C.GoString(addr)
90 91 92 93 94
	c, err := master.NewClient(master.WithAddr(a), master.WithBuffer(bufSize))
	if err != nil {
		panic(err)
	}

H
Helin Wang 已提交
95 96 97
	return add(c)
}

98 99 100
//export paddle_release_master_client
func paddle_release_master_client(client C.paddle_master_client) {
	remove(client)
H
Helin Wang 已提交
101 102
}

103 104 105 106 107 108
//export paddle_start_get_records
func paddle_start_get_records(client C.paddle_master_client, pass C.int) {
	c := get(client)
	c.StartGetRecords(int(pass))
}

H
Helin Wang 已提交
109 110 111 112 113
//export paddle_set_dataset
func paddle_set_dataset(client C.paddle_master_client, path **C.char, size C.int) C.int {
	c := get(client)
	var paths []string
	for i := 0; i < int(size); i++ {
114
		ptr := (**C.char)(unsafe.Pointer(uintptr(unsafe.Pointer(path)) + uintptr(i)*unsafe.Sizeof(*path)))
H
Helin Wang 已提交
115 116 117 118 119
		str := C.GoString(*ptr)
		paths = append(paths, str)
	}
	err := c.SetDataset(paths)
	if err != nil {
H
Helin Wang 已提交
120
		log.Errorln(err)
121 122 123 124 125 126
		return C.PADDLE_MASTER_ERROR
	}

	return C.PADDLE_MASTER_OK
}

127 128
// paddle_next_record gets the nexts training record.
//
129
// returns number of bytes of the records if success, -1 if failed, -2 if pass end.
130
//
131 132 133
//export paddle_next_record
func paddle_next_record(client C.paddle_master_client, record **C.uchar) C.int {
	c := get(client)
G
gongweibao 已提交
134 135
	r, err := c.NextRecord()
	if err != nil {
136 137 138 139 140 141
		// NOTE: use errors to indicate pass ends
		if err.Error() == master.ErrAllTaskFailed.Error() ||
			err.Error() == master.ErrNoMoreAvailable.Error() ||
			err.Error() == master.ErrPassBefore.Error() {
			return -2
		}
142
		*record = (*C.uchar)(nil)
G
gongweibao 已提交
143
		return -1
G
gongweibao 已提交
144 145
	}

146
	if len(r) == 0 {
G
gongweibao 已提交
147
		// Empty record
148
		*record = (*C.uchar)(nil)
149
		return 0
H
Helin Wang 已提交
150 151
	}

152 153 154 155 156 157
	size := C.size_t(len(r))
	*record = (*C.uchar)(C.malloc(size))
	C.memcpy(unsafe.Pointer(*record), unsafe.Pointer(&r[0]), size)
	return C.int(size)
}

158 159 160
// paddle_request_save_model requests the master server to approve the
// caller to save the model.
//
H
Helin Wang 已提交
161
// returns 1 if the save the model request is approved, 0 if the
162 163 164 165 166 167 168 169 170
// request is rejected because other trainer is saving the model, -1
// if error happened.
//
//export paddle_request_save_model
func paddle_request_save_model(client C.paddle_master_client, trainerID string, blockMS int) C.int {
	c := get(client)
	need, err := c.RequestSaveModel(trainerID, time.Duration(blockMS)*time.Millisecond)
	if err != nil {
		log.Errorln(err)
H
Helin Wang 已提交
171
		return C.PADDLE_MASTER_ERROR
172 173 174
	}

	if need {
H
Helin Wang 已提交
175
		return C.PADDLE_SAVE_MODEL_OK
176 177
	}

H
Helin Wang 已提交
178
	return C.PADDLE_SAVE_MODEL_SKIP
179 180
}

181 182 183 184 185 186
//export mem_free
func mem_free(p unsafe.Pointer) {
	// "free" may be a better name for this function, but doing so
	// will cause calling any function of this library from Python
	// ctypes hanging.
	C.free(p)
H
Helin Wang 已提交
187 188 189
}

func main() {}