Backends
Bases: Base
ORM model for the 'backends' table.
Attributes:
Name | Type | Description |
---|---|---|
uid |
int
|
Primary key. |
miner_name |
str
|
Name of the miner. |
timestamp |
datetime
|
Timestamp of the record. |
full_json |
dict
|
Full JSON data. |
cpu |
dict
|
CPU data. |
cpu_type |
str
|
CPU type. |
cpu_enabled |
bool
|
Whether CPU is enabled. |
cpu_algo |
str
|
CPU algorithm. |
cpu_profile |
str
|
CPU profile. |
cpu_hw_aes |
bool
|
Whether CPU hardware AES is enabled. |
cpu_priority |
int
|
CPU priority. |
cpu_msr |
bool
|
Whether CPU MSR is enabled. |
cpu_asm |
str
|
CPU assembly. |
cpu_argon2_impl |
str
|
CPU Argon2 implementation. |
cpu_hugepages |
dict
|
CPU hugepages data. |
cpu_memory |
int
|
CPU memory. |
cpu_hashrate |
dict
|
CPU hashrate data. |
cpu_threads |
dict
|
CPU threads data. |
opencl |
dict
|
OpenCL data. |
opencl_type |
str
|
OpenCL type. |
opencl_enabled |
bool
|
Whether OpenCL is enabled. |
opencl_algo |
str
|
OpenCL algorithm. |
opencl_profile |
str
|
OpenCL profile. |
opencl_platform |
dict
|
OpenCL platform data. |
opencl_platform_index |
int
|
OpenCL platform index. |
opencl_platform_profile |
str
|
OpenCL platform profile. |
opencl_platform_version |
str
|
OpenCL platform version. |
opencl_platform_name |
str
|
OpenCL platform name. |
opencl_platform_vendor |
str
|
OpenCL platform vendor. |
opencl_platform_extensions |
str
|
OpenCL platform extensions. |
opencl_hashrate |
dict
|
OpenCL hashrate data. |
opencl_threads |
dict
|
OpenCL threads data. |
cuda |
dict
|
CUDA data. |
cuda_type |
str
|
CUDA type. |
cuda_enabled |
bool
|
Whether CUDA is enabled. |
cuda_algo |
str
|
CUDA algorithm. |
cuda_profile |
str
|
CUDA profile. |
cuda_versions |
dict
|
CUDA versions data. |
cuda_versions_cuda_runtime |
str
|
CUDA runtime version. |
cuda_versions_cuda_driver |
str
|
CUDA driver version. |
cuda_versions_plugin |
str
|
CUDA plugin version. |
cuda_hashrate |
dict
|
CUDA hashrate data. |
cuda_threads |
dict
|
CUDA threads data. |
Source code in xmrig/models.py
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 |
|