c_api.cpp 38.2 KB
Newer Older
N
nihui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Tencent is pleased to support the open source community by making ncnn available.
 *
 * Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
 *
 * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * https://opensource.org/licenses/BSD-3-Clause
 *
 * 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.
 */

#include "c_api.h"

18 19
#include <stdlib.h>

N
nihui 已提交
20
#include "allocator.h"
N
nihuini 已提交
21 22 23
#include "blob.h"
#include "datareader.h"
#include "layer.h"
N
nihui 已提交
24
#include "mat.h"
N
nihuini 已提交
25
#include "modelbin.h"
N
nihui 已提交
26
#include "net.h"
N
nihuini 已提交
27 28
#include "option.h"
#include "paramdict.h"
N
nihui 已提交
29

N
nihui 已提交
30
using ncnn::Allocator;
N
nihui 已提交
31
using ncnn::Blob;
N
nihuini 已提交
32
using ncnn::DataReader;
N
nihui 已提交
33 34 35
using ncnn::Extractor;
using ncnn::Layer;
using ncnn::Mat;
N
nihuini 已提交
36
using ncnn::ModelBin;
N
nihui 已提交
37 38
using ncnn::Net;
using ncnn::Option;
N
nihuini 已提交
39
using ncnn::ParamDict;
N
nihui 已提交
40 41 42 43 44

#ifdef __cplusplus
extern "C" {
#endif

N
nihui 已提交
45 46 47 48 49
const char* ncnn_version()
{
    return NCNN_VERSION_STRING;
}

N
nihui 已提交
50
/* allocator api */
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
class PoolAllocator_c_api : public ncnn::PoolAllocator
{
public:
    PoolAllocator_c_api(ncnn_allocator_t _allocator) : ncnn::PoolAllocator()
    {
        allocator = _allocator;
    }

    virtual void* fastMalloc(size_t size)
    {
        return allocator->fast_malloc(allocator, size);
    }

    virtual void fastFree(void* ptr)
    {
        return allocator->fast_free(allocator, ptr);
    }

public:
    ncnn_allocator_t allocator;
};

static void* __ncnn_PoolAllocator_fast_malloc(ncnn_allocator_t allocator, size_t size)
N
nihui 已提交
74
{
75
    return ((ncnn::PoolAllocator*)allocator->pthis)->ncnn::PoolAllocator::fastMalloc(size);
N
nihui 已提交
76 77
}

78
static void __ncnn_PoolAllocator_fast_free(ncnn_allocator_t allocator, void* ptr)
N
nihui 已提交
79
{
80
    ((ncnn::PoolAllocator*)allocator->pthis)->ncnn::PoolAllocator::fastFree(ptr);
N
nihui 已提交
81 82
}

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
class UnlockedPoolAllocator_c_api : public ncnn::UnlockedPoolAllocator
{
public:
    UnlockedPoolAllocator_c_api(ncnn_allocator_t _allocator) : ncnn::UnlockedPoolAllocator()
    {
        allocator = _allocator;
    }

    virtual void* fastMalloc(size_t size)
    {
        return allocator->fast_malloc(allocator, size);
    }

    virtual void fastFree(void* ptr)
    {
        return allocator->fast_free(allocator, ptr);
    }

public:
    ncnn_allocator_t allocator;
};

static void* __ncnn_UnlockedPoolAllocator_fast_malloc(ncnn_allocator_t allocator, size_t size)
{
    return ((ncnn::UnlockedPoolAllocator*)allocator->pthis)->ncnn::UnlockedPoolAllocator::fastMalloc(size);
}

static void __ncnn_UnlockedPoolAllocator_fast_free(ncnn_allocator_t allocator, void* ptr)
{
    ((ncnn::UnlockedPoolAllocator*)allocator->pthis)->ncnn::UnlockedPoolAllocator::fastFree(ptr);
}

ncnn_allocator_t ncnn_allocator_create_pool_allocator()
N
nihui 已提交
116
{
117 118 119 120 121
    ncnn_allocator_t allocator = (ncnn_allocator_t)malloc(sizeof(struct __ncnn_allocator_t));
    allocator->pthis = (void*)(new PoolAllocator_c_api(allocator));
    allocator->fast_malloc = __ncnn_PoolAllocator_fast_malloc;
    allocator->fast_free = __ncnn_PoolAllocator_fast_free;
    return allocator;
N
nihui 已提交
122 123
}

124
ncnn_allocator_t ncnn_allocator_create_unlocked_pool_allocator()
N
nihui 已提交
125
{
126 127 128 129 130
    ncnn_allocator_t allocator = (ncnn_allocator_t)malloc(sizeof(struct __ncnn_allocator_t));
    allocator->pthis = (void*)(new UnlockedPoolAllocator_c_api(allocator));
    allocator->fast_malloc = __ncnn_UnlockedPoolAllocator_fast_malloc;
    allocator->fast_free = __ncnn_UnlockedPoolAllocator_fast_free;
    return allocator;
N
nihui 已提交
131 132
}

133
void ncnn_allocator_destroy(ncnn_allocator_t allocator)
N
nihui 已提交
134
{
135 136
    delete (Allocator*)allocator->pthis;
    free(allocator);
N
nihui 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
}

/* option api */
ncnn_option_t ncnn_option_create()
{
    return (ncnn_option_t)(new Option());
}

void ncnn_option_destroy(ncnn_option_t opt)
{
    delete (Option*)opt;
}

int ncnn_option_get_num_threads(const ncnn_option_t opt)
{
    return ((const Option*)opt)->num_threads;
}

void ncnn_option_set_num_threads(ncnn_option_t opt, int num_threads)
{
    ((Option*)opt)->num_threads = num_threads;
}

int ncnn_option_get_use_vulkan_compute(const ncnn_option_t opt)
{
#if NCNN_VULKAN
    return ((const Option*)opt)->use_vulkan_compute;
#else
    (void)opt;
    return 0;
#endif
}

void ncnn_option_set_use_vulkan_compute(ncnn_option_t opt, int use_vulkan_compute)
{
#if NCNN_VULKAN
    ((Option*)opt)->use_vulkan_compute = use_vulkan_compute;
#else
    (void)opt;
    (void)use_vulkan_compute;
#endif
}

N
nihui 已提交
180
/* mat api */
N
nihui 已提交
181
ncnn_mat_t ncnn_mat_create_1d(int w, ncnn_allocator_t allocator)
N
nihui 已提交
182
{
N
nihui 已提交
183
    return (ncnn_mat_t)(new Mat(w, 4u, (Allocator*)allocator));
N
nihui 已提交
184 185
}

N
nihui 已提交
186
ncnn_mat_t ncnn_mat_create_2d(int w, int h, ncnn_allocator_t allocator)
N
nihui 已提交
187
{
N
nihui 已提交
188
    return (ncnn_mat_t)(new Mat(w, h, 4u, (Allocator*)allocator));
N
nihui 已提交
189 190
}

N
nihui 已提交
191
ncnn_mat_t ncnn_mat_create_3d(int w, int h, int c, ncnn_allocator_t allocator)
N
nihui 已提交
192
{
N
nihui 已提交
193
    return (ncnn_mat_t)(new Mat(w, h, c, 4u, (Allocator*)allocator));
N
nihui 已提交
194 195
}

N
nihui 已提交
196
ncnn_mat_t ncnn_mat_create_external_1d(int w, void* data, ncnn_allocator_t allocator)
N
nihui 已提交
197
{
N
nihui 已提交
198
    return (ncnn_mat_t)(new Mat(w, data, 4u, (Allocator*)allocator));
N
nihui 已提交
199 200
}

N
nihui 已提交
201
ncnn_mat_t ncnn_mat_create_external_2d(int w, int h, void* data, ncnn_allocator_t allocator)
N
nihui 已提交
202
{
N
nihui 已提交
203
    return (ncnn_mat_t)(new Mat(w, h, data, 4u, (Allocator*)allocator));
N
nihui 已提交
204 205
}

N
nihui 已提交
206
ncnn_mat_t ncnn_mat_create_external_3d(int w, int h, int c, void* data, ncnn_allocator_t allocator)
N
nihui 已提交
207
{
N
nihui 已提交
208
    return (ncnn_mat_t)(new Mat(w, h, c, data, 4u, (Allocator*)allocator));
N
nihui 已提交
209 210
}

N
nihui 已提交
211
ncnn_mat_t ncnn_mat_create_1d_elem(int w, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
212
{
N
nihui 已提交
213
    return (ncnn_mat_t)(new Mat(w, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
214 215
}

N
nihui 已提交
216
ncnn_mat_t ncnn_mat_create_2d_elem(int w, int h, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
217
{
N
nihui 已提交
218
    return (ncnn_mat_t)(new Mat(w, h, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
219 220
}

N
nihui 已提交
221
ncnn_mat_t ncnn_mat_create_3d_elem(int w, int h, int c, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
222
{
N
nihui 已提交
223
    return (ncnn_mat_t)(new Mat(w, h, c, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
224 225
}

N
nihui 已提交
226
ncnn_mat_t ncnn_mat_create_external_1d_elem(int w, void* data, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
227
{
N
nihui 已提交
228
    return (ncnn_mat_t)(new Mat(w, data, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
229 230
}

N
nihui 已提交
231
ncnn_mat_t ncnn_mat_create_external_2d_elem(int w, int h, void* data, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
232
{
N
nihui 已提交
233
    return (ncnn_mat_t)(new Mat(w, h, data, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
234 235
}

N
nihui 已提交
236
ncnn_mat_t ncnn_mat_create_external_3d_elem(int w, int h, int c, void* data, size_t elemsize, int elempack, ncnn_allocator_t allocator)
N
nihuini 已提交
237
{
N
nihui 已提交
238
    return (ncnn_mat_t)(new Mat(w, h, c, data, elemsize, elempack, (Allocator*)allocator));
N
nihuini 已提交
239 240
}

N
nihui 已提交
241 242 243 244 245
void ncnn_mat_destroy(ncnn_mat_t mat)
{
    delete (Mat*)mat;
}

N
nihuini 已提交
246 247 248 249 250
void ncnn_mat_fill_float(ncnn_mat_t mat, float v)
{
    ((Mat*)mat)->fill(v);
}

N
nihui 已提交
251
ncnn_mat_t ncnn_mat_clone(const ncnn_mat_t mat, ncnn_allocator_t allocator)
N
nihuini 已提交
252
{
N
nihui 已提交
253
    return (ncnn_mat_t)(new Mat(((const Mat*)mat)->clone((Allocator*)allocator)));
N
nihuini 已提交
254 255
}

N
nihui 已提交
256
ncnn_mat_t ncnn_mat_reshape_1d(const ncnn_mat_t mat, int w, ncnn_allocator_t allocator)
N
nihuini 已提交
257
{
N
nihui 已提交
258
    return (ncnn_mat_t)(new Mat(((const Mat*)mat)->reshape(w, (Allocator*)allocator)));
N
nihuini 已提交
259 260
}

N
nihui 已提交
261
ncnn_mat_t ncnn_mat_reshape_2d(const ncnn_mat_t mat, int w, int h, ncnn_allocator_t allocator)
N
nihuini 已提交
262
{
N
nihui 已提交
263
    return (ncnn_mat_t)(new Mat(((const Mat*)mat)->reshape(w, h, (Allocator*)allocator)));
N
nihuini 已提交
264 265
}

N
nihui 已提交
266
ncnn_mat_t ncnn_mat_reshape_3d(const ncnn_mat_t mat, int w, int h, int c, ncnn_allocator_t allocator)
N
nihuini 已提交
267
{
N
nihui 已提交
268
    return (ncnn_mat_t)(new Mat(((const Mat*)mat)->reshape(w, h, c, (Allocator*)allocator)));
N
nihuini 已提交
269 270
}

N
nihuini 已提交
271
int ncnn_mat_get_dims(const ncnn_mat_t mat)
N
nihui 已提交
272
{
N
nihuini 已提交
273
    return ((const Mat*)mat)->dims;
N
nihui 已提交
274 275
}

N
nihuini 已提交
276
int ncnn_mat_get_w(const ncnn_mat_t mat)
N
nihui 已提交
277
{
N
nihuini 已提交
278
    return ((const Mat*)mat)->w;
N
nihui 已提交
279 280
}

N
nihuini 已提交
281
int ncnn_mat_get_h(const ncnn_mat_t mat)
N
nihui 已提交
282
{
N
nihuini 已提交
283
    return ((const Mat*)mat)->h;
N
nihui 已提交
284 285
}

N
nihuini 已提交
286
int ncnn_mat_get_c(const ncnn_mat_t mat)
N
nihui 已提交
287
{
N
nihuini 已提交
288
    return ((const Mat*)mat)->c;
N
nihui 已提交
289 290
}

N
nihuini 已提交
291
size_t ncnn_mat_get_elemsize(const ncnn_mat_t mat)
N
nihui 已提交
292
{
N
nihuini 已提交
293
    return ((const Mat*)mat)->elemsize;
N
nihui 已提交
294 295
}

N
nihuini 已提交
296
int ncnn_mat_get_elempack(const ncnn_mat_t mat)
N
nihui 已提交
297
{
N
nihuini 已提交
298
    return ((const Mat*)mat)->elempack;
N
nihui 已提交
299 300
}

N
nihuini 已提交
301
size_t ncnn_mat_get_cstep(const ncnn_mat_t mat)
N
nihui 已提交
302
{
N
nihuini 已提交
303
    return ((const Mat*)mat)->cstep;
N
nihui 已提交
304 305
}

N
nihuini 已提交
306
void* ncnn_mat_get_data(const ncnn_mat_t mat)
N
nihui 已提交
307
{
N
nihuini 已提交
308
    return ((const Mat*)mat)->data;
N
nihui 已提交
309 310
}

311 312 313 314 315
void* ncnn_mat_get_channel_data(const ncnn_mat_t mat, int c)
{
    return ((const Mat*)mat)->channel(c).data;
}

316 317
#if NCNN_PIXEL

N
nihui 已提交
318
/* mat pixel api */
N
nihui 已提交
319
ncnn_mat_t ncnn_mat_from_pixels(const unsigned char* pixels, int type, int w, int h, int stride, ncnn_allocator_t allocator)
N
nihui 已提交
320
{
N
nihui 已提交
321
    return (ncnn_mat_t)(new Mat(Mat::from_pixels(pixels, type, w, h, stride, (Allocator*)allocator)));
N
nihui 已提交
322 323
}

N
nihui 已提交
324
ncnn_mat_t ncnn_mat_from_pixels_resize(const unsigned char* pixels, int type, int w, int h, int stride, int target_width, int target_height, ncnn_allocator_t allocator)
N
nihui 已提交
325
{
N
nihui 已提交
326
    return (ncnn_mat_t)(new Mat(Mat::from_pixels_resize(pixels, type, w, h, stride, target_width, target_height, (Allocator*)allocator)));
N
nihui 已提交
327 328
}

N
nihui 已提交
329
ncnn_mat_t ncnn_mat_from_pixels_roi(const unsigned char* pixels, int type, int w, int h, int stride, int roix, int roiy, int roiw, int roih, ncnn_allocator_t allocator)
N
nihui 已提交
330
{
N
nihui 已提交
331
    return (ncnn_mat_t)(new Mat(Mat::from_pixels_roi(pixels, type, w, h, stride, roix, roiy, roiw, roih, (Allocator*)allocator)));
N
nihui 已提交
332 333
}

N
nihui 已提交
334
ncnn_mat_t ncnn_mat_from_pixels_roi_resize(const unsigned char* pixels, int type, int w, int h, int stride, int roix, int roiy, int roiw, int roih, int target_width, int target_height, ncnn_allocator_t allocator)
N
nihui 已提交
335
{
N
nihui 已提交
336
    return (ncnn_mat_t)(new Mat(Mat::from_pixels_roi_resize(pixels, type, w, h, stride, roix, roiy, roiw, roih, target_width, target_height, (Allocator*)allocator)));
N
nihui 已提交
337 338
}

N
nihuini 已提交
339
void ncnn_mat_to_pixels(const ncnn_mat_t mat, unsigned char* pixels, int type, int stride)
N
nihui 已提交
340
{
N
nihuini 已提交
341
    ((const Mat*)mat)->to_pixels(pixels, type, stride);
N
nihui 已提交
342 343
}

N
nihuini 已提交
344
void ncnn_mat_to_pixels_resize(const ncnn_mat_t mat, unsigned char* pixels, int type, int target_width, int target_height, int target_stride)
N
nihui 已提交
345
{
N
nihuini 已提交
346
    ((const Mat*)mat)->to_pixels_resize(pixels, type, target_width, target_height, target_stride);
N
nihui 已提交
347 348
}

N
nihui 已提交
349
#endif /* NCNN_PIXEL */
350

N
nihui 已提交
351 352 353 354 355
void ncnn_mat_substract_mean_normalize(ncnn_mat_t mat, const float* mean_vals, const float* norm_vals)
{
    ((Mat*)mat)->substract_mean_normalize(mean_vals, norm_vals);
}

N
nihui 已提交
356
void ncnn_convert_packing(const ncnn_mat_t src, ncnn_mat_t* dst, int elempack, const ncnn_option_t opt)
N
nihuini 已提交
357
{
N
nihuini 已提交
358
    Mat _dst;
N
nihui 已提交
359
    ncnn::convert_packing(*(const Mat*)src, _dst, elempack, *(Option*)opt);
N
nihuini 已提交
360 361 362
    *dst = (ncnn_mat_t)(new Mat(_dst));
}

N
nihui 已提交
363
void ncnn_flatten(const ncnn_mat_t src, ncnn_mat_t* dst, const ncnn_option_t opt)
N
nihuini 已提交
364 365
{
    Mat _dst;
N
nihui 已提交
366
    ncnn::flatten(*(const Mat*)src, _dst, *(Option*)opt);
N
nihuini 已提交
367
    *dst = (ncnn_mat_t)(new Mat(_dst));
N
nihuini 已提交
368 369
}

N
nihui 已提交
370
/* blob api */
N
nihui 已提交
371
#if NCNN_STRING
N
nihuini 已提交
372
const char* ncnn_blob_get_name(const ncnn_blob_t blob)
N
nihui 已提交
373
{
N
nihuini 已提交
374
    return ((const Blob*)blob)->name.c_str();
N
nihui 已提交
375
}
N
nihui 已提交
376
#endif /* NCNN_STRING */
N
nihui 已提交
377

N
nihuini 已提交
378
int ncnn_blob_get_producer(const ncnn_blob_t blob)
N
nihui 已提交
379
{
N
nihuini 已提交
380
    return ((const Blob*)blob)->producer;
N
nihui 已提交
381 382
}

N
nihuini 已提交
383
int ncnn_blob_get_consumer(const ncnn_blob_t blob)
N
nihui 已提交
384
{
N
nihuini 已提交
385
    return ((const Blob*)blob)->consumer;
N
nihui 已提交
386 387
}

N
nihuini 已提交
388
void ncnn_blob_get_shape(const ncnn_blob_t blob, int* dims, int* w, int* h, int* c)
N
nihui 已提交
389
{
N
nihuini 已提交
390
    const Mat& shape = ((const Blob*)blob)->shape;
N
nihui 已提交
391 392 393 394 395 396
    *dims = shape.dims;
    *w = shape.w;
    *h = shape.h;
    *c = shape.c;
}

N
nihuini 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
/* paramdict api */
ncnn_paramdict_t ncnn_paramdict_create()
{
    return (ncnn_paramdict_t)(new ParamDict());
}

void ncnn_paramdict_destroy(ncnn_paramdict_t pd)
{
    delete (ParamDict*)pd;
}

int ncnn_paramdict_get_type(const ncnn_paramdict_t pd, int id)
{
    return ((const ParamDict*)pd)->type(id);
}

int ncnn_paramdict_get_int(const ncnn_paramdict_t pd, int id, int def)
{
    return ((const ParamDict*)pd)->get(id, def);
}

int ncnn_paramdict_get_float(const ncnn_paramdict_t pd, int id, float def)
{
    return ((const ParamDict*)pd)->get(id, def);
}

ncnn_mat_t ncnn_paramdict_get_array(ncnn_paramdict_t pd, int id, const ncnn_mat_t def)
{
    return (ncnn_mat_t)(new Mat(((const ParamDict*)pd)->get(id, *(const Mat*)def)));
}

void ncnn_paramdict_set_int(ncnn_paramdict_t pd, int id, int i)
{
    return ((ParamDict*)pd)->set(id, i);
}

void ncnn_paramdict_set_float(ncnn_paramdict_t pd, int id, float f)
{
    return ((ParamDict*)pd)->set(id, f);
}

void ncnn_paramdict_set_array(ncnn_paramdict_t pd, int id, ncnn_mat_t v)
{
    return ((ParamDict*)pd)->set(id, *(const Mat*)v);
}

/* datareader api */
444 445 446 447 448 449 450 451 452 453 454 455 456
class DataReader_c_api : public ncnn::DataReader
{
public:
    DataReader_c_api(ncnn_datareader_t _dr) : ncnn::DataReader()
    {
        dr = _dr;
    }

#if NCNN_STRING
    virtual int scan(const char* format, void* p) const
    {
        return dr->scan(dr, format, p);
    }
N
nihui 已提交
457
#endif /* NCNN_STRING */
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

    virtual size_t read(void* buf, size_t size) const
    {
        return dr->read(dr, buf, size);
    }

public:
    ncnn_datareader_t dr;
};

#if NCNN_STRING
static int __ncnn_DataReader_scan(ncnn_datareader_t dr, const char* format, void* p)
{
    return ((ncnn::DataReader*)dr->pthis)->ncnn::DataReader::scan(format, p);
}
N
nihui 已提交
473
#endif /* NCNN_STRING */
474 475 476 477 478 479

static size_t __ncnn_DataReader_read(ncnn_datareader_t dr, void* buf, size_t size)
{
    return ((ncnn::DataReader*)dr->pthis)->ncnn::DataReader::read(buf, size);
}

N
nihui 已提交
480
#if NCNN_STDIO
481 482 483 484 485 486 487 488 489 490 491 492 493
class DataReaderFromStdio_c_api : public ncnn::DataReaderFromStdio
{
public:
    DataReaderFromStdio_c_api(FILE* fp, ncnn_datareader_t _dr) : ncnn::DataReaderFromStdio(fp)
    {
        dr = _dr;
    }

#if NCNN_STRING
    virtual int scan(const char* format, void* p) const
    {
        return dr->scan(dr, format, p);
    }
N
nihui 已提交
494
#endif /* NCNN_STRING */
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509

    virtual size_t read(void* buf, size_t size) const
    {
        return dr->read(dr, buf, size);
    }

public:
    ncnn_datareader_t dr;
};

#if NCNN_STRING
static int __ncnn_DataReaderFromStdio_scan(ncnn_datareader_t dr, const char* format, void* p)
{
    return ((ncnn::DataReaderFromStdio*)dr->pthis)->ncnn::DataReaderFromStdio::scan(format, p);
}
N
nihui 已提交
510
#endif /* NCNN_STRING */
511 512 513 514 515

static size_t __ncnn_DataReaderFromStdio_read(ncnn_datareader_t dr, void* buf, size_t size)
{
    return ((ncnn::DataReaderFromStdio*)dr->pthis)->ncnn::DataReaderFromStdio::read(buf, size);
}
N
nihui 已提交
516
#endif /* NCNN_STDIO */
517 518 519 520 521 522 523 524 525 526 527 528 529 530

class DataReaderFromMemory_c_api : public ncnn::DataReaderFromMemory
{
public:
    DataReaderFromMemory_c_api(const unsigned char*& mem, ncnn_datareader_t _dr) : ncnn::DataReaderFromMemory(mem)
    {
        dr = _dr;
    }

#if NCNN_STRING
    virtual int scan(const char* format, void* p) const
    {
        return dr->scan(dr, format, p);
    }
N
nihui 已提交
531
#endif /* NCNN_STRING */
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

    virtual size_t read(void* buf, size_t size) const
    {
        return dr->read(dr, buf, size);
    }

public:
    ncnn_datareader_t dr;
};

#if NCNN_STRING
static int __ncnn_DataReaderFromMemory_scan(ncnn_datareader_t dr, const char* format, void* p)
{
    return ((ncnn::DataReaderFromMemory*)dr->pthis)->ncnn::DataReaderFromMemory::scan(format, p);
}
N
nihui 已提交
547
#endif /* NCNN_STRING */
548 549 550 551 552 553 554 555 556 557

static size_t __ncnn_DataReaderFromMemory_read(ncnn_datareader_t dr, void* buf, size_t size)
{
    return ((ncnn::DataReaderFromMemory*)dr->pthis)->ncnn::DataReaderFromMemory::read(buf, size);
}

ncnn_datareader_t ncnn_datareader_create()
{
    ncnn_datareader_t dr = (ncnn_datareader_t)malloc(sizeof(struct __ncnn_datareader_t));
    dr->pthis = (void*)(new DataReader_c_api(dr));
N
nihui 已提交
558
#if NCNN_STRING
559
    dr->scan = __ncnn_DataReader_scan;
N
nihui 已提交
560
#endif /* NCNN_STRING */
561 562 563 564
    dr->read = __ncnn_DataReader_read;
    return dr;
}

N
nihuini 已提交
565
#if NCNN_STDIO
N
nihui 已提交
566
ncnn_datareader_t ncnn_datareader_create_from_stdio(FILE* fp)
N
nihuini 已提交
567
{
568 569 570 571
    ncnn_datareader_t dr = (ncnn_datareader_t)malloc(sizeof(struct __ncnn_datareader_t));
    dr->pthis = (void*)(new DataReaderFromStdio_c_api(fp, dr));
#if NCNN_STRING
    dr->scan = __ncnn_DataReaderFromStdio_scan;
N
nihui 已提交
572
#endif /* NCNN_STRING */
573 574
    dr->read = __ncnn_DataReaderFromStdio_read;
    return dr;
N
nihuini 已提交
575
}
N
nihui 已提交
576
#endif /* NCNN_STDIO */
N
nihuini 已提交
577

N
nihui 已提交
578
ncnn_datareader_t ncnn_datareader_create_from_memory(const unsigned char** mem)
N
nihuini 已提交
579
{
580 581 582 583
    ncnn_datareader_t dr = (ncnn_datareader_t)malloc(sizeof(struct __ncnn_datareader_t));
    dr->pthis = (void*)(new DataReaderFromMemory_c_api(*mem, dr));
#if NCNN_STRING
    dr->scan = __ncnn_DataReaderFromMemory_scan;
N
nihui 已提交
584
#endif /* NCNN_STRING */
585 586
    dr->read = __ncnn_DataReaderFromMemory_read;
    return dr;
N
nihuini 已提交
587 588 589 590
}

void ncnn_datareader_destroy(ncnn_datareader_t dr)
{
591 592
    delete (DataReader*)dr->pthis;
    free(dr);
N
nihuini 已提交
593 594 595
}

/* modelbin api */
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
class ModelBinFromDataReader_c_api : public ncnn::ModelBinFromDataReader
{
public:
    ModelBinFromDataReader_c_api(ncnn_modelbin_t _mb, const DataReader& dr) : ncnn::ModelBinFromDataReader(dr)
    {
        mb = _mb;
    }

    virtual Mat load(int w, int type) const
    {
        ncnn_mat_t m = mb->load_1d(mb, w, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

    virtual Mat load(int w, int h, int type) const
    {
        ncnn_mat_t m = mb->load_2d(mb, w, h, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

    virtual Mat load(int w, int h, int c, int type) const
    {
        ncnn_mat_t m = mb->load_3d(mb, w, h, c, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

public:
    ncnn_modelbin_t mb;
};

static ncnn_mat_t __ncnn_ModelBinFromDataReader_load_1d(const ncnn_modelbin_t mb, int w, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromDataReader*)mb->pthis)->ncnn::ModelBinFromDataReader::load(w, type)));
}

static ncnn_mat_t __ncnn_ModelBinFromDataReader_load_2d(const ncnn_modelbin_t mb, int w, int h, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromDataReader*)mb->pthis)->ncnn::ModelBin::load(w, h, type)));
}

static ncnn_mat_t __ncnn_ModelBinFromDataReader_load_3d(const ncnn_modelbin_t mb, int w, int h, int c, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromDataReader*)mb->pthis)->ncnn::ModelBin::load(w, h, c, type)));
}

class ModelBinFromMatArray_c_api : public ncnn::ModelBinFromMatArray
{
public:
    ModelBinFromMatArray_c_api(ncnn_modelbin_t _mb, const Mat* weights) : ncnn::ModelBinFromMatArray(weights)
    {
        mb = _mb;
    }

    virtual Mat load(int w, int type) const
    {
        ncnn_mat_t m = mb->load_1d(mb, w, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

    virtual Mat load(int w, int h, int type) const
    {
        ncnn_mat_t m = mb->load_2d(mb, w, h, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

    virtual Mat load(int w, int h, int c, int type) const
    {
        ncnn_mat_t m = mb->load_3d(mb, w, h, c, type);
        Mat m2 = *(Mat*)m;
        ncnn_mat_destroy(m);
        return m2;
    }

public:
    ncnn_modelbin_t mb;
};

static ncnn_mat_t __ncnn_ModelBinFromMatArray_load_1d(const ncnn_modelbin_t mb, int w, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromMatArray*)mb->pthis)->ncnn::ModelBinFromMatArray::load(w, type)));
}

static ncnn_mat_t __ncnn_ModelBinFromMatArray_load_2d(const ncnn_modelbin_t mb, int w, int h, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromMatArray*)mb->pthis)->ncnn::ModelBin::load(w, h, type)));
}

static ncnn_mat_t __ncnn_ModelBinFromMatArray_load_3d(const ncnn_modelbin_t mb, int w, int h, int c, int type)
{
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBinFromMatArray*)mb->pthis)->ncnn::ModelBin::load(w, h, c, type)));
}

N
nihui 已提交
698
ncnn_modelbin_t ncnn_modelbin_create_from_datareader(const ncnn_datareader_t dr)
N
nihuini 已提交
699
{
700 701 702 703 704 705
    ncnn_modelbin_t mb = (ncnn_modelbin_t)malloc(sizeof(struct __ncnn_modelbin_t));
    mb->pthis = (void*)(new ModelBinFromDataReader_c_api(mb, *(const DataReader*)dr->pthis));
    mb->load_1d = __ncnn_ModelBinFromDataReader_load_1d;
    mb->load_2d = __ncnn_ModelBinFromDataReader_load_2d;
    mb->load_3d = __ncnn_ModelBinFromDataReader_load_3d;
    return mb;
N
nihuini 已提交
706 707
}

N
nihui 已提交
708
ncnn_modelbin_t ncnn_modelbin_create_from_mat_array(const ncnn_mat_t* weights, int n)
N
nihuini 已提交
709 710 711 712 713 714
{
    std::vector<Mat> matarray(n);
    for (int i = 0; i < n; i++)
    {
        matarray[i] = *(const Mat*)weights[i];
    }
715 716 717 718 719 720
    ncnn_modelbin_t mb = (ncnn_modelbin_t)malloc(sizeof(struct __ncnn_modelbin_t));
    mb->pthis = (void*)(new ModelBinFromMatArray_c_api(mb, &matarray[0]));
    mb->load_1d = __ncnn_ModelBinFromMatArray_load_1d;
    mb->load_2d = __ncnn_ModelBinFromMatArray_load_2d;
    mb->load_3d = __ncnn_ModelBinFromMatArray_load_3d;
    return mb;
N
nihuini 已提交
721 722 723 724
}

void ncnn_modelbin_destroy(ncnn_modelbin_t mb)
{
725 726
    delete (ModelBin*)mb->pthis;
    free(mb);
N
nihuini 已提交
727 728
}

729
static ncnn_mat_t __ncnn_modelbin_load_1d(const ncnn_modelbin_t mb, int w, int type)
N
nihuini 已提交
730
{
731
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBin*)mb->pthis)->load(w, type)));
N
nihuini 已提交
732 733
}

734
static ncnn_mat_t __ncnn_modelbin_load_2d(const ncnn_modelbin_t mb, int w, int h, int type)
N
nihuini 已提交
735
{
736
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBin*)mb->pthis)->load(w, h, type)));
N
nihuini 已提交
737 738
}

739
static ncnn_mat_t __ncnn_modelbin_load_3d(const ncnn_modelbin_t mb, int w, int h, int c, int type)
N
nihuini 已提交
740
{
741
    return (ncnn_mat_t)(new Mat(((const ncnn::ModelBin*)mb->pthis)->load(w, h, c, type)));
N
nihuini 已提交
742 743
}

N
nihui 已提交
744
/* layer api */
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
class Layer_c_api : public Layer
{
public:
    Layer_c_api(ncnn_layer_t _layer) : Layer()
    {
        layer = _layer;
    }

    virtual int load_param(const ParamDict& pd)
    {
        return layer->load_param(layer, (ncnn_paramdict_t)&pd);
    }

    virtual int load_model(const ModelBin& mb)
    {
        struct __ncnn_modelbin_t mb0;
        mb0.pthis = (void*)&mb;
        mb0.load_1d = __ncnn_modelbin_load_1d;
        mb0.load_2d = __ncnn_modelbin_load_2d;
        mb0.load_3d = __ncnn_modelbin_load_3d;
        return layer->load_model(layer, &mb0);
    }

    virtual int create_pipeline(const Option& opt)
    {
        return layer->create_pipeline(layer, (ncnn_option_t)&opt);
    }

    virtual int destroy_pipeline(const Option& opt)
    {
        return layer->destroy_pipeline(layer, (ncnn_option_t)&opt);
    }

    virtual int forward(const std::vector<Mat>& bottom_blobs, std::vector<Mat>& top_blobs, const Option& opt) const
    {
        const int n = bottom_blobs.size();
        const int n2 = top_blobs.size();
        std::vector<ncnn_mat_t> bottom_blobs0(n);
        for (int i = 0; i < n; i++)
        {
            bottom_blobs0[i] = (ncnn_mat_t)&bottom_blobs[i];
        }
N
nihui 已提交
787
        std::vector<ncnn_mat_t*> top_blobs0(n2, (ncnn_mat_t*)0);
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
        int ret = layer->forward_n(layer, bottom_blobs0.data(), n, top_blobs0.data(), n2, (ncnn_option_t)&opt);
        for (int i = 0; i < n2; i++)
        {
            top_blobs[i] = *(Mat*)*top_blobs0[i];
            ncnn_mat_destroy(*top_blobs0[i]);
        }
        return ret;
    }

    virtual int forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const
    {
        ncnn_mat_t top_blob0 = 0;
        int ret = layer->forward_1(layer, (ncnn_mat_t)&bottom_blob, &top_blob0, (ncnn_option_t)&opt);
        top_blob = *(Mat*)top_blob0;
        ncnn_mat_destroy(top_blob0);
        return ret;
    }

    virtual int forward_inplace(std::vector<Mat>& bottom_top_blobs, const Option& opt) const
    {
        const int n = bottom_top_blobs.size();
        std::vector<ncnn_mat_t> bottom_top_blobs0(n);
        for (int i = 0; i < n; i++)
        {
            bottom_top_blobs0[i] = (ncnn_mat_t)&bottom_top_blobs[i];
        }
        return layer->forward_inplace_n(layer, bottom_top_blobs0.data(), n, (ncnn_option_t)&opt);
    }

    virtual int forward_inplace(Mat& bottom_top_blob, const Option& opt) const
    {
        return layer->forward_inplace_1(layer, (ncnn_mat_t)&bottom_top_blob, (ncnn_option_t)&opt);
    }

public:
    ncnn_layer_t layer;
};

static int __ncnn_Layer_load_param(ncnn_layer_t layer, const ncnn_paramdict_t pd)
{
    return ((Layer*)layer->pthis)->Layer::load_param(*(const ParamDict*)pd);
}

static int __ncnn_Layer_load_model(ncnn_layer_t layer, const ncnn_modelbin_t mb)
{
    return ((Layer*)layer->pthis)->Layer::load_model(*(const ModelBin*)mb);
}

static int __ncnn_Layer_create_pipeline(ncnn_layer_t layer, const ncnn_option_t opt)
{
    return ((Layer*)layer->pthis)->Layer::create_pipeline(*(const Option*)opt);
}

static int __ncnn_Layer_destroy_pipeline(ncnn_layer_t layer, const ncnn_option_t opt)
{
    return ((Layer*)layer->pthis)->Layer::destroy_pipeline(*(const Option*)opt);
}

static int __ncnn_Layer_forward_1(const ncnn_layer_t layer, const ncnn_mat_t bottom_blob, ncnn_mat_t* top_blob, const ncnn_option_t opt)
{
    Mat _top_blob;
    int ret = ((const Layer*)layer->pthis)->Layer::forward(*(const Mat*)bottom_blob, _top_blob, *(const Option*)opt);
    *top_blob = (ncnn_mat_t)(new Mat(_top_blob));
    return ret;
}

static int __ncnn_Layer_forward_n(const ncnn_layer_t layer, const ncnn_mat_t* bottom_blobs, int n, ncnn_mat_t** top_blobs, int n2, const ncnn_option_t opt)
{
    std::vector<Mat> _bottom_blobs(n);
    std::vector<Mat> _top_blobs(n2);
    for (int i = 0; i < n; i++)
    {
        _bottom_blobs[i] = *(Mat*)bottom_blobs[i];
    }
    int ret = ((const Layer*)layer->pthis)->Layer::forward(_bottom_blobs, _top_blobs, *(const Option*)opt);
    for (int i = 0; i < n2; i++)
    {
        *top_blobs[i] = (ncnn_mat_t)(new Mat(_top_blobs[i]));
    }
    return ret;
}

static int __ncnn_Layer_forward_inplace_1(const ncnn_layer_t layer, ncnn_mat_t bottom_top_blob, const ncnn_option_t opt)
{
    return ((const Layer*)layer->pthis)->Layer::forward_inplace(*(Mat*)bottom_top_blob, *(const Option*)opt);
}

static int __ncnn_Layer_forward_inplace_n(const ncnn_layer_t layer, ncnn_mat_t* bottom_top_blobs, int n, const ncnn_option_t opt)
{
    std::vector<Mat> _bottom_top_blobs(n);
    for (int i = 0; i < n; i++)
    {
        _bottom_top_blobs[i] = *(Mat*)bottom_top_blobs[i];
    }
    return ((const Layer*)layer->pthis)->Layer::forward_inplace(_bottom_top_blobs, *(const Option*)opt);
}

static int __ncnn_layer_load_param(ncnn_layer_t layer, const ncnn_paramdict_t pd)
{
    return ((Layer*)layer->pthis)->load_param(*(const ParamDict*)pd);
}

static int __ncnn_layer_load_model(ncnn_layer_t layer, const ncnn_modelbin_t mb)
{
    return ((Layer*)layer->pthis)->load_model(*(const ModelBin*)mb);
}

static int __ncnn_layer_create_pipeline(ncnn_layer_t layer, const ncnn_option_t opt)
{
    return ((Layer*)layer->pthis)->create_pipeline(*(const Option*)opt);
}

static int __ncnn_layer_destroy_pipeline(ncnn_layer_t layer, const ncnn_option_t opt)
{
    return ((Layer*)layer->pthis)->destroy_pipeline(*(const Option*)opt);
}

static int __ncnn_layer_forward_1(const ncnn_layer_t layer, const ncnn_mat_t bottom_blob, ncnn_mat_t* top_blob, const ncnn_option_t opt)
{
    Mat _top_blob;
    int ret = ((const Layer*)layer->pthis)->forward(*(const Mat*)bottom_blob, _top_blob, *(const Option*)opt);
    *top_blob = (ncnn_mat_t)(new Mat(_top_blob));
    return ret;
}

static int __ncnn_layer_forward_n(const ncnn_layer_t layer, const ncnn_mat_t* bottom_blobs, int n, ncnn_mat_t** top_blobs, int n2, const ncnn_option_t opt)
{
    std::vector<Mat> _bottom_blobs(n);
    std::vector<Mat> _top_blobs(n2);
    for (int i = 0; i < n; i++)
    {
        _bottom_blobs[i] = *(Mat*)bottom_blobs[i];
    }
    int ret = ((const Layer*)layer->pthis)->forward(_bottom_blobs, _top_blobs, *(const Option*)opt);
    for (int i = 0; i < n2; i++)
    {
        *top_blobs[i] = (ncnn_mat_t)(new Mat(_top_blobs[i]));
    }
    return ret;
}

static int __ncnn_layer_forward_inplace_1(const ncnn_layer_t layer, ncnn_mat_t bottom_top_blob, const ncnn_option_t opt)
{
    return ((const Layer*)layer->pthis)->forward_inplace(*(Mat*)bottom_top_blob, *(const Option*)opt);
}

static int __ncnn_layer_forward_inplace_n(const ncnn_layer_t layer, ncnn_mat_t* bottom_top_blobs, int n, const ncnn_option_t opt)
{
    std::vector<Mat> _bottom_top_blobs(n);
    for (int i = 0; i < n; i++)
    {
        _bottom_top_blobs[i] = *(Mat*)bottom_top_blobs[i];
    }
    return ((const Layer*)layer->pthis)->forward_inplace(_bottom_top_blobs, *(const Option*)opt);
}

ncnn_layer_t ncnn_layer_create()
{
    ncnn_layer_t layer = (ncnn_layer_t)malloc(sizeof(__ncnn_layer_t));
    layer->pthis = (void*)(new Layer_c_api(layer));
    layer->load_param = __ncnn_Layer_load_param;
    layer->load_model = __ncnn_Layer_load_model;
    layer->create_pipeline = __ncnn_Layer_create_pipeline;
    layer->destroy_pipeline = __ncnn_Layer_destroy_pipeline;
    layer->forward_1 = __ncnn_Layer_forward_1;
    layer->forward_n = __ncnn_Layer_forward_n;
    layer->forward_inplace_1 = __ncnn_Layer_forward_inplace_1;
    layer->forward_inplace_n = __ncnn_Layer_forward_inplace_n;
    return layer;
}

N
nihuini 已提交
959 960
ncnn_layer_t ncnn_layer_create_by_typeindex(int typeindex)
{
961 962 963 964 965 966 967 968 969 970 971
    ncnn_layer_t layer = (ncnn_layer_t)malloc(sizeof(__ncnn_layer_t));
    layer->pthis = (void*)(ncnn::create_layer(typeindex));
    layer->load_param = __ncnn_layer_load_param;
    layer->load_model = __ncnn_layer_load_model;
    layer->create_pipeline = __ncnn_layer_create_pipeline;
    layer->destroy_pipeline = __ncnn_layer_destroy_pipeline;
    layer->forward_1 = __ncnn_layer_forward_1;
    layer->forward_n = __ncnn_layer_forward_n;
    layer->forward_inplace_1 = __ncnn_layer_forward_inplace_1;
    layer->forward_inplace_n = __ncnn_layer_forward_inplace_n;
    return layer;
N
nihuini 已提交
972 973
}

N
nihui 已提交
974
#if NCNN_STRING
N
nihuini 已提交
975 976
ncnn_layer_t ncnn_layer_create_by_type(const char* type)
{
977 978 979 980 981 982 983 984 985 986 987
    ncnn_layer_t layer = (ncnn_layer_t)malloc(sizeof(__ncnn_layer_t));
    layer->pthis = (void*)(ncnn::create_layer(type));
    layer->load_param = __ncnn_layer_load_param;
    layer->load_model = __ncnn_layer_load_model;
    layer->create_pipeline = __ncnn_layer_create_pipeline;
    layer->destroy_pipeline = __ncnn_layer_destroy_pipeline;
    layer->forward_1 = __ncnn_layer_forward_1;
    layer->forward_n = __ncnn_layer_forward_n;
    layer->forward_inplace_1 = __ncnn_layer_forward_inplace_1;
    layer->forward_inplace_n = __ncnn_layer_forward_inplace_n;
    return layer;
N
nihuini 已提交
988
}
N
nihui 已提交
989
#endif /* NCNN_STRING */
N
nihuini 已提交
990 991 992

void ncnn_layer_destroy(ncnn_layer_t layer)
{
993 994
    delete (Layer*)layer->pthis;
    free(layer);
N
nihuini 已提交
995 996
}

N
nihui 已提交
997
#if NCNN_STRING
N
nihuini 已提交
998
const char* ncnn_layer_get_name(const ncnn_layer_t layer)
N
nihui 已提交
999
{
1000
    return ((const Layer*)layer->pthis)->name.c_str();
N
nihui 已提交
1001
}
N
nihui 已提交
1002
#endif /* NCNN_STRING */
N
nihui 已提交
1003

N
nihuini 已提交
1004
int ncnn_layer_get_typeindex(const ncnn_layer_t layer)
N
nihui 已提交
1005
{
1006
    return ((const Layer*)layer->pthis)->typeindex;
N
nihui 已提交
1007 1008
}

N
nihui 已提交
1009
#if NCNN_STRING
N
nihuini 已提交
1010
const char* ncnn_layer_get_type(const ncnn_layer_t layer)
N
nihui 已提交
1011
{
1012
    return ((const Layer*)layer->pthis)->type.c_str();
N
nihui 已提交
1013
}
N
nihui 已提交
1014
#endif /* NCNN_STRING */
N
nihui 已提交
1015

1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
int ncnn_layer_get_one_blob_only(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->one_blob_only;
}

int ncnn_layer_get_support_inplace(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_inplace;
}

int ncnn_layer_get_support_vulkan(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_vulkan;
}

int ncnn_layer_get_support_packing(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_packing;
}

int ncnn_layer_get_support_bf16_storage(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_bf16_storage;
}

int ncnn_layer_get_support_fp16_storage(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_fp16_storage;
}

int ncnn_layer_get_support_image_storage(const ncnn_layer_t layer)
{
    return ((const Layer*)layer->pthis)->support_image_storage;
}

void ncnn_layer_set_one_blob_only(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->one_blob_only = enable;
}

void ncnn_layer_set_support_inplace(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_inplace = enable;
}

void ncnn_layer_set_support_vulkan(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_vulkan = enable;
}

void ncnn_layer_set_support_packing(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_packing = enable;
}

void ncnn_layer_set_support_bf16_storage(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_bf16_storage = enable;
}

void ncnn_layer_set_support_fp16_storage(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_fp16_storage = enable;
}

void ncnn_layer_set_support_image_storage(ncnn_layer_t layer, int enable)
{
    ((Layer*)layer->pthis)->support_image_storage = enable;
}

N
nihuini 已提交
1086
int ncnn_layer_get_bottom_count(const ncnn_layer_t layer)
N
nihui 已提交
1087
{
1088
    return (int)((const Layer*)layer->pthis)->bottoms.size();
N
nihui 已提交
1089 1090
}

N
nihuini 已提交
1091
int ncnn_layer_get_bottom(const ncnn_layer_t layer, int i)
N
nihui 已提交
1092
{
1093
    return ((const Layer*)layer->pthis)->bottoms[i];
N
nihui 已提交
1094 1095
}

N
nihuini 已提交
1096
int ncnn_layer_get_top_count(const ncnn_layer_t layer)
N
nihui 已提交
1097
{
1098
    return (int)((const Layer*)layer->pthis)->tops.size();
N
nihui 已提交
1099 1100
}

N
nihuini 已提交
1101
int ncnn_layer_get_top(const ncnn_layer_t layer, int i)
N
nihui 已提交
1102
{
1103
    return ((const Layer*)layer->pthis)->tops[i];
N
nihui 已提交
1104 1105
}

N
nihuini 已提交
1106
void ncnn_blob_get_bottom_shape(const ncnn_layer_t layer, int i, int* dims, int* w, int* h, int* c)
N
nihui 已提交
1107
{
1108
    const Mat& shape = ((const Layer*)layer->pthis)->bottom_shapes[i];
N
nihui 已提交
1109 1110 1111 1112 1113 1114
    *dims = shape.dims;
    *w = shape.w;
    *h = shape.h;
    *c = shape.c;
}

N
nihuini 已提交
1115
void ncnn_blob_get_top_shape(const ncnn_layer_t layer, int i, int* dims, int* w, int* h, int* c)
N
nihui 已提交
1116
{
1117
    const Mat& shape = ((const Layer*)layer->pthis)->top_shapes[i];
N
nihui 已提交
1118 1119 1120 1121 1122 1123
    *dims = shape.dims;
    *w = shape.w;
    *h = shape.h;
    *c = shape.c;
}

1124 1125
/* net api */
ncnn_net_t ncnn_net_create()
N
nihuini 已提交
1126
{
1127 1128 1129 1130
    ncnn_net_t net = (ncnn_net_t)malloc(sizeof(struct __ncnn_net_t));
    net->pthis = (void*)(new Net());
    net->custom_layer_factory = 0;
    return net;
N
nihuini 已提交
1131 1132
}

1133
void ncnn_net_destroy(ncnn_net_t net)
N
nihuini 已提交
1134
{
1135 1136 1137 1138 1139 1140 1141 1142 1143
    delete (Net*)net->pthis;
    ncnn_net_custom_layer_factory_t ud = net->custom_layer_factory;
    while (ud)
    {
        ncnn_net_custom_layer_factory_t ud_next = ud->next;
        free(ud);
        ud = ud_next;
    }
    free(net);
N
nihuini 已提交
1144 1145
}

1146
void ncnn_net_set_option(ncnn_net_t net, ncnn_option_t opt)
N
nihuini 已提交
1147
{
1148
    ((Net*)net->pthis)->opt = *((Option*)opt);
N
nihuini 已提交
1149 1150
}

1151
static ::ncnn::Layer* __Layer_c_api_layer_creator(void* userdata)
N
nihuini 已提交
1152
{
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
    ncnn_net_custom_layer_factory_t ud = (ncnn_net_custom_layer_factory_t)userdata;

    ncnn_layer_t layer0 = ud->creator(ud->userdata);

    ::ncnn::Layer* layer = (::ncnn::Layer*)layer0->pthis;

    layer->userdata = (void*)layer0;

    layer->one_blob_only = ncnn_layer_get_one_blob_only(layer0);
    layer->support_inplace = ncnn_layer_get_support_inplace(layer0);
    layer->support_vulkan = ncnn_layer_get_support_vulkan(layer0);
    layer->support_packing = ncnn_layer_get_support_packing(layer0);

    layer->support_bf16_storage = ncnn_layer_get_support_bf16_storage(layer0);
    layer->support_fp16_storage = ncnn_layer_get_support_fp16_storage(layer0);
    layer->support_image_storage = ncnn_layer_get_support_image_storage(layer0);

    return layer;
N
nihuini 已提交
1171 1172
}

1173
static void __Layer_c_api_layer_destroyer(::ncnn::Layer* layer, void* userdata)
N
nihuini 已提交
1174
{
1175 1176 1177 1178 1179
    ncnn_net_custom_layer_factory_t ud = (ncnn_net_custom_layer_factory_t)userdata;

    ncnn_layer_t layer0 = (ncnn_layer_t)layer->userdata;

    ud->destroyer(layer0, ud->userdata);
N
nihuini 已提交
1180 1181
}

N
nihui 已提交
1182
#if NCNN_STRING
1183
void ncnn_net_register_custom_layer_by_type(ncnn_net_t net, const char* type, ncnn_layer_creator_t creator, ncnn_layer_destroyer_t destroyer, void* userdata)
N
nihuini 已提交
1184
{
1185 1186 1187 1188 1189 1190 1191
    ncnn_net_custom_layer_factory_t ud = (ncnn_net_custom_layer_factory_t)malloc(sizeof(struct __ncnn_net_custom_layer_factory_t));
    ud->creator = creator;
    ud->destroyer = destroyer;
    ud->userdata = userdata;
    ud->next = net->custom_layer_factory;
    net->custom_layer_factory = ud;
    ((Net*)net->pthis)->register_custom_layer(type, __Layer_c_api_layer_creator, __Layer_c_api_layer_destroyer, (void*)ud);
N
nihuini 已提交
1192
}
N
nihui 已提交
1193
#endif /* NCNN_STRING */
N
nihuini 已提交
1194

1195
void ncnn_net_register_custom_layer_by_typeindex(ncnn_net_t net, int typeindex, ncnn_layer_creator_t creator, ncnn_layer_destroyer_t destroyer, void* userdata)
N
nihuini 已提交
1196
{
1197 1198 1199 1200 1201 1202 1203
    ncnn_net_custom_layer_factory_t ud = (ncnn_net_custom_layer_factory_t)malloc(sizeof(struct __ncnn_net_custom_layer_factory_t));
    ud->creator = creator;
    ud->destroyer = destroyer;
    ud->userdata = userdata;
    ud->next = net->custom_layer_factory;
    net->custom_layer_factory = ud;
    ((Net*)net->pthis)->register_custom_layer(typeindex, __Layer_c_api_layer_creator, __Layer_c_api_layer_destroyer, (void*)ud);
N
nihuini 已提交
1204 1205
}

1206 1207 1208
#if NCNN_STDIO
#if NCNN_STRING
int ncnn_net_load_param(ncnn_net_t net, const char* path)
N
nihuini 已提交
1209
{
1210
    return ((Net*)net->pthis)->load_param(path);
N
nihuini 已提交
1211
}
1212
#endif /* NCNN_STRING */
N
nihuini 已提交
1213

1214
int ncnn_net_load_param_bin(ncnn_net_t net, const char* path)
N
nihui 已提交
1215
{
1216
    return ((Net*)net->pthis)->load_param_bin(path);
N
nihui 已提交
1217 1218
}

1219
int ncnn_net_load_model(ncnn_net_t net, const char* path)
N
nihui 已提交
1220
{
1221
    return ((Net*)net->pthis)->load_model(path);
N
nihui 已提交
1222
}
1223
#endif /* NCNN_STDIO */
N
nihui 已提交
1224

1225 1226
#if NCNN_STRING
int ncnn_net_load_param_memory(ncnn_net_t net, const char* mem)
N
nihui 已提交
1227
{
1228
    return ((Net*)net->pthis)->load_param_mem(mem);
N
nihui 已提交
1229
}
1230
#endif /* NCNN_STRING */
N
nihui 已提交
1231

1232
int ncnn_net_load_param_bin_memory(ncnn_net_t net, const unsigned char* mem)
N
nihui 已提交
1233
{
1234
    return ((Net*)net->pthis)->load_param(mem);
N
nihui 已提交
1235 1236
}

1237
int ncnn_net_load_model_memory(ncnn_net_t net, const unsigned char* mem)
N
nihui 已提交
1238
{
1239
    return ((Net*)net->pthis)->load_model(mem);
N
nihui 已提交
1240 1241
}

1242 1243
#if NCNN_STRING
int ncnn_net_load_param_datareader(ncnn_net_t net, const ncnn_datareader_t dr)
N
nihui 已提交
1244
{
1245
    return ((Net*)net->pthis)->load_param(*(const DataReader*)dr->pthis);
N
nihui 已提交
1246
}
1247
#endif /* NCNN_STRING */
N
nihui 已提交
1248

1249
int ncnn_net_load_param_bin_datareader(ncnn_net_t net, const ncnn_datareader_t dr)
N
nihui 已提交
1250
{
1251
    return ((Net*)net->pthis)->load_param_bin(*(const DataReader*)dr->pthis);
N
nihui 已提交
1252 1253
}

1254
int ncnn_net_load_model_datareader(ncnn_net_t net, const ncnn_datareader_t dr)
N
nihui 已提交
1255
{
1256
    return ((Net*)net->pthis)->load_model(*(const DataReader*)dr->pthis);
N
nihui 已提交
1257 1258
}

1259
void ncnn_net_clear(ncnn_net_t net)
N
nihui 已提交
1260
{
1261
    return ((Net*)net->pthis)->clear();
N
nihui 已提交
1262 1263 1264 1265 1266
}

/* extractor api */
ncnn_extractor_t ncnn_extractor_create(ncnn_net_t net)
{
1267
    return (ncnn_extractor_t)(new Extractor(((Net*)net->pthis)->create_extractor()));
N
nihui 已提交
1268 1269 1270 1271 1272 1273 1274
}

void ncnn_extractor_destroy(ncnn_extractor_t ex)
{
    delete (Extractor*)ex;
}

N
nihuini 已提交
1275
void ncnn_extractor_set_option(ncnn_extractor_t ex, const ncnn_option_t opt)
N
nihui 已提交
1276
{
N
nihuini 已提交
1277
    ((Extractor*)ex)->set_num_threads(((const Option*)opt)->num_threads);
N
nihui 已提交
1278
#if NCNN_VULKAN
N
nihuini 已提交
1279
    ((Extractor*)ex)->set_vulkan_compute(((const Option*)opt)->use_vulkan_compute);
N
nihui 已提交
1280 1281 1282
#endif
}

1283
#if NCNN_STRING
N
nihuini 已提交
1284
int ncnn_extractor_input(ncnn_extractor_t ex, const char* name, const ncnn_mat_t mat)
N
nihui 已提交
1285
{
N
nihuini 已提交
1286
    return ((Extractor*)ex)->input(name, *((const Mat*)mat));
N
nihui 已提交
1287 1288 1289 1290 1291 1292 1293 1294
}

int ncnn_extractor_extract(ncnn_extractor_t ex, const char* name, ncnn_mat_t* mat)
{
    Mat mat0;
    int ret = ((Extractor*)ex)->extract(name, mat0);
    *mat = (ncnn_mat_t)(new Mat(mat0));
    return ret;
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
}
#endif /* NCNN_STRING */

int ncnn_extractor_input_index(ncnn_extractor_t ex, int index, const ncnn_mat_t mat)
{
    return ((Extractor*)ex)->input(index, *((const Mat*)mat));
}

int ncnn_extractor_extract_index(ncnn_extractor_t ex, int index, ncnn_mat_t* mat)
{
    Mat mat0;
    int ret = ((Extractor*)ex)->extract(index, mat0);
    *mat = (ncnn_mat_t)(new Mat(mat0));
    return ret;
N
nihui 已提交
1309 1310 1311 1312 1313
}

#ifdef __cplusplus
} /* extern "C" */
#endif