| 429 | */ |
| 430 | template <typename T> |
| 431 | inline T create_tensor(const TensorInfo &info, IRuntimeContext *ctx = nullptr) |
| 432 | { |
| 433 | T tensor(ctx); |
| 434 | tensor.allocator()->init(info); |
| 435 | return tensor; |
| 436 | } |
| 437 | |
| 438 | /** Create and initialize a tensor of the given type. |
| 439 | * |
no test coverage detected