File size: 14,427 Bytes
17db41a | 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 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 | // Copyright (c) Meta Platforms, Inc. and affiliates.
//
// 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.
//
#include "model_interface.h"
#include <iostream>
#include <unordered_map>
#include "model-generated.h"
#include "model_container.h"
// Important: don't let exceptions escape the functions below.
// They can cause problems when -fvisibility=hidden. But more
// importantly, they can crash the program if they try to cross
// the language boundary into Python.
#define CONVERT_EXCEPTION_TO_ERROR_CODE(...) \
try { \
__VA_ARGS__ \
} catch (const std::exception& e) { \
LOG(ERROR) << "Error: " << e.what(); \
return AITemplateError::AITemplateFailure; \
} catch (...) { \
LOG(ERROR) << "Unknown exception occurred."; \
return AITemplateError::AITemplateFailure; \
} \
return AITemplateError::AITemplateSuccess;
#define RETURN_ERROR_IF_NULL(var) \
if (var == nullptr) { \
LOG(ERROR) << "Variable " << #var << " can't be null"; \
return AITemplateError::AITemplateFailure; \
}
namespace ait {
namespace {
class DefaultAllocator : public AITemplateAllocator {
public:
void* Allocate(size_t n_bytes) override {
void* result;
DEVICE_CHECK(DeviceMalloc(&result, n_bytes));
return result;
}
void Free(void* ptr) override {
DEVICE_CHECK(FreeDeviceMemory(ptr));
}
};
class TrackingAllocator : public DefaultAllocator {
public:
void* Allocate(size_t n_bytes) override {
auto* result = DefaultAllocator::Allocate(n_bytes);
num_bytes_ += n_bytes;
return result;
}
size_t NumBytesAllocated() const {
return num_bytes_;
}
private:
size_t num_bytes_ = 0;
};
DefaultAllocator default_allocator;
} // namespace
} // namespace ait
extern "C" {
AITemplateError AITemplateModelContainerCreate(
AITemplateModelHandle* ret,
size_t num_runtimes,
AITemplateAllocator* allocator) {
if (num_runtimes == 0) {
LOG(ERROR) << "num_runtimes must be positive, but got 0";
return AITemplateError::AITemplateFailure;
}
RETURN_ERROR_IF_NULL(ret)
AITemplateAllocator& allocator_ref =
allocator == nullptr ? ait::default_allocator : *allocator;
CONVERT_EXCEPTION_TO_ERROR_CODE({
auto* m = ait::CreateModelContainer(num_runtimes, allocator_ref);
*ret = reinterpret_cast<AITemplateModelHandle>(m);
})
}
AITemplateError AITemplateModelContainerDelete(AITemplateModelHandle handle) {
RETURN_ERROR_IF_NULL(handle)
CONVERT_EXCEPTION_TO_ERROR_CODE({
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
delete m;
});
}
AITemplateError AITemplateModelContainerSetConstant(
AITemplateModelHandle handle,
const char* name,
const AITData* tensor) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(tensor)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ m->SetConstant(name, *tensor); })
}
AIT_EXPORT AITemplateError AITemplateModelContainerSetManyConstants(
AITemplateModelHandle handle,
const char** names,
const AITData* tensors,
size_t num_tensors) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ m->SetManyConstants(names, tensors, num_tensors); })
}
AITemplateError AITemplateModelContainerSetDoubleBufferConstant(
AITemplateModelHandle handle,
AITemplateStreamHandle stream_handle,
const char* name,
const AITData* tensor) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(tensor)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ m->SetDoubleBufferConstant(name, *tensor, stream); })
}
AIT_EXPORT AITemplateError AITemplateModelContainerSetManyDoubleBufferConstants(
AITemplateModelHandle handle,
AITemplateStreamHandle stream_handle,
const char** names,
const AITData* tensors,
size_t num_tensors) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ m->SetManyDoubleBufferConstants(names, tensors, num_tensors, stream); })
}
AITemplateError AITemplateModelContainerGetNumConstants(
AITemplateModelHandle handle,
bool unbound_constants_only,
bool constant_folding_inputs_only,
size_t* num_constants_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(num_constants_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
if (constant_folding_inputs_only) {
*num_constants_out =
m->GetNumConstantFoldingInputs(unbound_constants_only);
} else {
*num_constants_out = m->GetNumConstants(unbound_constants_only);
}
})
}
AITemplateError AITemplateModelContainerGetConstantNames(
AITemplateModelHandle handle,
bool unbound_constants_only,
bool constant_folding_inputs_only,
const char** constant_names_out) {
RETURN_ERROR_IF_NULL(handle)
// WriteAllConstantNamesTo() will handle nullptr checks on constant_names_out.
// Passing nullptr is allowed if there are 0 constants!
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
m->WriteAllConstantNamesTo(
constant_names_out,
unbound_constants_only,
constant_folding_inputs_only);
})
}
AITemplateError AITemplateModelContainerRun(
AITemplateModelHandle handle,
const AITData* inputs,
size_t num_inputs,
AITData* outputs,
size_t num_outputs,
AITemplateStreamHandle stream_handle,
bool sync,
bool graph_mode,
int64_t** output_shapes_out) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
m->Run(
inputs,
num_inputs,
outputs,
num_outputs,
stream,
sync,
graph_mode,
output_shapes_out);
})
}
AITemplateError AITemplateModelContainerRunWithOutputsOnHost(
AITemplateModelHandle handle,
const AITData* inputs,
size_t num_inputs,
AITData* outputs,
size_t num_outputs,
AITemplateStreamHandle stream_handle,
bool graph_mode,
int64_t** output_shapes_out) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
m->RunWithOutputsOnHost(
inputs,
num_inputs,
outputs,
num_outputs,
stream,
graph_mode,
output_shapes_out);
})
}
AITemplateError AITemplateModelContainerProfile(
AITemplateModelHandle handle,
const AITData* inputs,
size_t num_inputs,
AITData* outputs,
size_t num_outputs,
AITemplateStreamHandle stream_handle,
size_t num_iters,
const char* filename) {
RETURN_ERROR_IF_NULL(handle);
RETURN_ERROR_IF_NULL(filename);
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
m->Profile(
inputs, num_inputs, outputs, num_outputs, stream, num_iters, filename);
})
}
AITemplateError AITemplateModelContainerBenchmark(
AITemplateModelHandle handle,
const AITData* inputs,
size_t num_inputs,
AITData* outputs,
size_t num_outputs,
AITemplateStreamHandle stream_handle,
bool graph_mode,
size_t count,
size_t num_threads,
bool use_unique_stream_per_thread,
float* runtime_ms,
int64_t** output_shapes_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(runtime_ms)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({
*runtime_ms = m->Benchmark(
inputs,
num_inputs,
outputs,
num_outputs,
stream,
graph_mode,
count,
num_threads,
use_unique_stream_per_thread,
output_shapes_out);
})
}
AITemplateError AITemplateModelContainerGetNumInputs(
AITemplateModelHandle handle,
size_t* num_inputs_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(num_inputs_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *num_inputs_out = m->NumInputs(); })
}
AITemplateError AITemplateModelContainerGetInputName(
AITemplateModelHandle handle,
size_t input_idx,
const char** input_name_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(input_name_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ *input_name_out = m->InputName(input_idx); })
}
AITemplateError AITemplateModelContainerGetMaximumInputShape(
AITemplateModelHandle handle,
size_t input_idx,
AITemplateParamShape* shape) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(shape)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *shape = m->MaxInputShape(input_idx); })
}
AITemplateError AITemplateModelContainerGetInputDtype(
AITemplateModelHandle handle,
size_t input_idx,
AITemplateDtype* input_dtype) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(input_dtype)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *input_dtype = m->InputDtype(input_idx); })
}
AITemplateError AITemplateModelContainerGetNumOutputs(
AITemplateModelHandle handle,
size_t* num_outputs_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(num_outputs_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *num_outputs_out = m->NumOutputs(); })
}
AITemplateError AITemplateModelContainerGetOutputName(
AITemplateModelHandle handle,
size_t output_idx,
const char** output_name_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(output_name_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ *output_name_out = m->OutputName(output_idx); })
}
AITemplateError AITemplateModelContainerGetMaximumOutputShape(
AITemplateModelHandle handle,
size_t output_idx,
AITemplateParamShape* shape_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(shape_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE(
{ *shape_out = m->MaxOutputShape(output_idx); })
}
AITemplateError AITemplateModelContainerGetOutputDtype(
AITemplateModelHandle handle,
size_t output_idx,
AITemplateDtype* dtype_out) {
RETURN_ERROR_IF_NULL(handle)
RETURN_ERROR_IF_NULL(dtype_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *dtype_out = m->OutputDtype(output_idx); })
}
AITemplateError AITemplateModelContainerGetNumRuntimes(
AITemplateModelHandle handle,
size_t* num_runtimes_out) {
RETURN_ERROR_IF_NULL(num_runtimes_out)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ *num_runtimes_out = m->GetNumRuntimes(); })
}
AITemplateError AITemplateModelContainerFoldConstants(
AITemplateModelHandle handle,
AITemplateStreamHandle stream_handle,
bool sync) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ m->FoldConstants(stream, sync, false); })
}
AITemplateError AITemplateModelContainerFoldConstantsInDoubleBuffer(
AITemplateModelHandle handle,
AITemplateStreamHandle stream_handle,
bool sync) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
auto stream = reinterpret_cast<ait::StreamType>(stream_handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ m->FoldConstants(stream, sync, true); })
}
AITemplateError AITemplateModelContainerSwapConstants(
AITemplateModelHandle handle) {
RETURN_ERROR_IF_NULL(handle)
auto* m = reinterpret_cast<ait::ModelContainer*>(handle);
CONVERT_EXCEPTION_TO_ERROR_CODE({ m->SwapConstants(); })
}
AITemplateError AITemplateAllocatorCreate(
AITemplateAllocator** allocator_out,
AITemplateAllocatorType allocator_type) {
RETURN_ERROR_IF_NULL(allocator_out);
CONVERT_EXCEPTION_TO_ERROR_CODE({
switch (allocator_type) {
case AITemplateAllocatorType::kDefault:
*allocator_out = new ait::DefaultAllocator();
break;
case AITemplateAllocatorType::kTracking:
*allocator_out = new ait::TrackingAllocator();
break;
default:
throw std::runtime_error("Unrecognized allocator type");
}
});
}
AITemplateError AITemplateAllocatorDelete(AITemplateAllocator* allocator) {
RETURN_ERROR_IF_NULL(allocator);
delete allocator;
return AITemplateError::AITemplateSuccess;
}
AITemplateError AITemplateTrackingAllocatorGetNumBytes(
AITemplateAllocator* allocator,
size_t* num_bytes_out) {
RETURN_ERROR_IF_NULL(allocator);
RETURN_ERROR_IF_NULL(num_bytes_out);
CONVERT_EXCEPTION_TO_ERROR_CODE({
auto* tracking_allocator = dynamic_cast<ait::TrackingAllocator*>(allocator);
if (tracking_allocator == nullptr) {
throw std::runtime_error("Allocator was not a tracking allocator!");
}
*num_bytes_out = tracking_allocator->NumBytesAllocated();
});
}
} // extern "C"
|