summaryrefslogtreecommitdiff
path: root/runtimes/logging/src/nnapi_logging.cc
blob: 14f2369ecb891e6ca423ed22dc2f54cd294315de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
68
69
70
71
72
73
74
75
76
77
78
79
80
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
#include <NeuralNetworks.h>
#include <NeuralNetworksEx.h>

#include <stdexcept>
#include <iostream>

#include <string>
#include <map>

#include <cassert>

#include <boost/format.hpp>

namespace
{

class OperationCodeResolver
{
public:
  OperationCodeResolver();

public:
  std::string resolve(int code) const;

private:
  void setName(int code, const std::string &name);

private:
  std::map<int, std::string> _table;

public:
  static const OperationCodeResolver &access()
  {
    static const OperationCodeResolver resolver;

    return resolver;
  }
};

OperationCodeResolver::OperationCodeResolver()
{
#define NNAPI_OPERATION(NAME, CODE) setName(CODE, #NAME);
#include "operation.def"
#undef NNAPI_OPERATION
}

void OperationCodeResolver::setName(int code, const std::string &name)
{
  assert(_table.find(code) == _table.end());
  _table[code] = name;
}

std::string OperationCodeResolver::resolve(int code) const
{
  auto it = _table.find(code);

  if (it == _table.end())
  {
    return boost::str(boost::format("unknown(%d)") % code);
  }

  return it->second;
}

class OperandCodeResolver
{
public:
  OperandCodeResolver();

public:
  std::string resolve(int code) const;

private:
  void setName(int code, const std::string &name);

private:
  std::map<int, std::string> _table;

public:
  static const OperandCodeResolver &access()
  {
    static const OperandCodeResolver resolver;

    return resolver;
  }
};

OperandCodeResolver::OperandCodeResolver()
{
#define NNAPI_OPERAND(NAME, CODE) setName(CODE, #NAME);
#include "operand.def"
#undef NNAPI_OPERAND
}

void OperandCodeResolver::setName(int code, const std::string &name)
{
  assert(_table.find(code) == _table.end());
  _table[code] = name;
}

std::string OperandCodeResolver::resolve(int code) const
{
  auto it = _table.find(code);

  if (it == _table.end())
  {
    return boost::str(boost::format("unknown(%d)") % code);
  }

  return it->second;
}
}

//
// Asynchronous Event
//
struct ANeuralNetworksEvent
{
};

int ANeuralNetworksEvent_wait(ANeuralNetworksEvent *event) { return ANEURALNETWORKS_NO_ERROR; }

void ANeuralNetworksEvent_free(ANeuralNetworksEvent *event) { delete event; }

//
// Memory
//
struct ANeuralNetworksMemory
{
  // 1st approach - Store all the data inside ANeuralNetworksMemory object
  // 2nd approach - Store metadata only, and defer data loading as much as possible
};

int ANeuralNetworksMemory_createFromFd(size_t size, int protect, int fd, size_t offset,
                                       ANeuralNetworksMemory **memory)
{
  *memory = new ANeuralNetworksMemory;

  std::cout << __FUNCTION__ << "() --> (memory: " << *memory << ")" << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

void ANeuralNetworksMemory_free(ANeuralNetworksMemory *memory)
{
  std::cout << __FUNCTION__ << "(" << memory << ")" << std::endl;
  delete memory;
}

//
// Model
//
struct ANeuralNetworksModel
{
  // ANeuralNetworksModel should be a factory for Graph IR (a.k.a ISA Frontend)
  // TODO Record # of operands
  uint32_t numOperands;

  ANeuralNetworksModel() : numOperands(0)
  {
    // DO NOTHING
  }
};

int ANeuralNetworksModel_create(ANeuralNetworksModel **model)
{
  *model = new ANeuralNetworksModel;

  std::cout << __FUNCTION__ << "(" << model << ") --> (model: " << *model << ")" << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

void ANeuralNetworksModel_free(ANeuralNetworksModel *model)
{
  std::cout << __FUNCTION__ << "(" << model << ")" << std::endl;

  delete model;
}

int ANeuralNetworksModel_addOperand(ANeuralNetworksModel *model,
                                    const ANeuralNetworksOperandType *type)
{
  std::cout << __FUNCTION__ << "(model: " << model
            << ", type: " << ::OperandCodeResolver::access().resolve(type->type) << ")"
            << std::endl;

  auto id = model->numOperands;

  std::cout << "  id: " << id << std::endl;
  std::cout << "  rank: " << type->dimensionCount << std::endl;
  for (uint32_t dim = 0; dim < type->dimensionCount; ++dim)
  {
    std::cout << "    dim(" << dim << "): " << type->dimensions[dim] << std::endl;
  }

  model->numOperands += 1;

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_setOperandValue(ANeuralNetworksModel *model, int32_t index,
                                         const void *buffer, size_t length)
{
  std::cout << __FUNCTION__ << "(model: " << model << ", index: " << index << ")" << std::endl;

  // TODO Implement this!
  // NOTE buffer becomes invalid after ANeuralNetworksModel_setOperandValue returns

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_setOperandValueFromMemory(ANeuralNetworksModel *model, int32_t index,
                                                   const ANeuralNetworksMemory *memory,
                                                   size_t offset, size_t length)
{
  std::cout << __FUNCTION__ << "(model: " << model << ", index: " << index << ")" << std::endl;

  // TODO Implement this!

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_addOperation(ANeuralNetworksModel *model,
                                      ANeuralNetworksOperationType type, uint32_t inputCount,
                                      const uint32_t *inputs, uint32_t outputCount,
                                      const uint32_t *outputs)
{
  std::cout << __FUNCTION__ << "(model: " << model
            << ", type: " << ::OperationCodeResolver::access().resolve(type)
            << ", inputCount: " << inputCount << ", outputCount: " << outputCount << ")"
            << std::endl;

  for (uint32_t input = 0; input < inputCount; ++input)
  {
    std::cout << "  input(" << input << "): " << inputs[input] << std::endl;
  }
  for (uint32_t output = 0; output < outputCount; ++output)
  {
    std::cout << "  output(" << output << "): " << outputs[output] << std::endl;
  }

  // TODO Implement this!

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_addOperationEx(ANeuralNetworksModel *model,
                                        ANeuralNetworksOperationTypeEx type, uint32_t inputCount,
                                        const uint32_t *inputs, uint32_t outputCount,
                                        const uint32_t *outputs)
{
  std::cout << __FUNCTION__ << "(model: " << model << ", type: " << type
            << ", inputCount: " << inputCount << ", outputCount: " << outputCount << ")"
            << std::endl;

  for (uint32_t input = 0; input < inputCount; ++input)
  {
    std::cout << "  input(" << input << "): " << inputs[input] << std::endl;
  }
  for (uint32_t output = 0; output < outputCount; ++output)
  {
    std::cout << "  output(" << output << "): " << outputs[output] << std::endl;
  }

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_identifyInputsAndOutputs(ANeuralNetworksModel *model, uint32_t inputCount,
                                                  const uint32_t *inputs, uint32_t outputCount,
                                                  const uint32_t *outputs)
{
  std::cout << __FUNCTION__ << "(model: " << model << ")" << std::endl;

  for (uint32_t input = 0; input < inputCount; ++input)
  {
    std::cout << "  input(" << input << "): " << inputs[input] << std::endl;
  }
  for (uint32_t output = 0; output < outputCount; ++output)
  {
    std::cout << "  output(" << output << "): " << outputs[output] << std::endl;
  }

  // TODO Implement this!
  // NOTE It seems that this function identifies the input and output of the whole model

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksModel_finish(ANeuralNetworksModel *model)
{
  std::cout << __FUNCTION__ << "(model: " << model << ")" << std::endl;

  // TODO Implement this!

  return ANEURALNETWORKS_NO_ERROR;
}

//
// Compilation
//
struct ANeuralNetworksCompilation
{
  // ANeuralNetworksCompilation should hold a compiled IR
};

int ANeuralNetworksCompilation_create(ANeuralNetworksModel *model,
                                      ANeuralNetworksCompilation **compilation)
{
  *compilation = new ANeuralNetworksCompilation;

  std::cout << __FUNCTION__ << "(model: " << model << ") --> (compilation: " << *compilation << ")"
            << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksCompilation_finish(ANeuralNetworksCompilation *compilation)
{
  std::cout << __FUNCTION__ << "(compilation: " << compilation << ")" << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

//
// Execution
//
struct ANeuralNetworksExecution
{
  // ANeuralNetworksExecution corresponds to NPU::Interp::Session
};

int ANeuralNetworksExecution_create(ANeuralNetworksCompilation *compilation,
                                    ANeuralNetworksExecution **execution)
{
  *execution = new ANeuralNetworksExecution;

  std::cout << __FUNCTION__ << "(compilation: " << compilation << ") --> (execution: " << *execution
            << ")" << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

// ANeuralNetworksExecution_setInput and ANeuralNetworksExecution_setOutput specify HOST buffer for
// input/output
int ANeuralNetworksExecution_setInput(ANeuralNetworksExecution *execution, int32_t index,
                                      const ANeuralNetworksOperandType *type, const void *buffer,
                                      size_t length)
{
  std::cout << __FUNCTION__ << "(execution: " << execution << ", type: ";

  if (type == nullptr)
    std::cout << "nullptr)" << std::endl;
  else
    std::cout << ::OperandCodeResolver::access().resolve(type->type) << ")" << std::endl;

  // Q: Should we transfer input from HOST to DEVICE here, or in
  // ANeuralNetworksExecution_startCompute?

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksExecution_setOutput(ANeuralNetworksExecution *execution, int32_t index,
                                       const ANeuralNetworksOperandType *type, void *buffer,
                                       size_t length)
{
  std::cout << __FUNCTION__ << "(execution: " << execution << ", type: ";

  if (type == nullptr)
    std::cout << "nullptr)" << std::endl;
  else
    std::cout << ::OperandCodeResolver::access().resolve(type->type) << ")" << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

int ANeuralNetworksExecution_startCompute(ANeuralNetworksExecution *execution,
                                          ANeuralNetworksEvent **event)
{
  *event = new ANeuralNetworksEvent;

  std::cout << __FUNCTION__ << "(execution: " << execution << ") --> (event: " << *event << ")"
            << std::endl;

  return ANEURALNETWORKS_NO_ERROR;
}

void ANeuralNetworksExecution_free(ANeuralNetworksExecution *execution)
{
  std::cout << __FUNCTION__ << "(execution: " << execution << ")" << std::endl;

  delete execution;
}

void ANeuralNetworksCompilation_free(ANeuralNetworksCompilation *compilation)
{
  std::cout << __FUNCTION__ << "(compilation: " << compilation << ")" << std::endl;
  delete compilation;
}