This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix: Use `size_t` instead of `int` for length arguments
tags/v0.0.0-test.4
Philipp Oppermann
3 years ago
parent
4b9807735f
commit
0d2394a5eb
Failed to extract signature
1 changed files
with
6 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-4
apis/c/operator/operator_api.h
+ 6
- 4
apis/c/operator/operator_api.h
View File
@@ -1,16 +1,18 @@
#include <stddef.h>
int dora_init_operator(void **operator_context);
void dora_drop_operator(void *operator_context);
int dora_on_input(
const char *id_start,
unsigned in
t id_len,
size_
t id_len,
const char *data_start,
unsigned in
t data_len,
size_
t data_len,
const int (*output_fn_raw)(const char *id_start,
unsigned in
t id_len,
size_
t id_len,
const char *data_start,
unsigned in
t data_len,
size_
t data_len,
const void *output_context),
void *output_context,
const void *operator_context);
Write
Preview
Loading…
Cancel
Save