From 84e46220424fdf64ced7ba07736dded740814077 Mon Sep 17 00:00:00 2001 From: Hans Pabst Date: Mon, 6 Nov 2023 09:20:41 +0100 Subject: [PATCH] ocl: updated tuned parameters, improved tuner, adjusted kernel tune_multiply.py * Explicit/keep instance of SmmTuner which enables saving the final state even after an exception/error. * Ensure SmmTuner is initialized once (manipulator method is apparently called multiple times). * Only call save_final_config if it is not the seed-configuration. * Support parameters that cannot be expanded in value-range. * Implemented option to delete outperformed JSONs. * Print additional info for retainable/deletable files. * Fixed populating tunable/fixed parameters. Tuning on multiple devices (tune_multiply.py) * More robust file manipulation when running with MPI. Create dot-files on a per-device basis. * Ensure to initially expose all devices. Fixed parsing initial configuration. Code cleanup. * Support tuning parameters on multiple device using MPI. * Rebuild CSV-file only on master-rank. kernels/multiply.cl * Replaced short with SINT def., and changed to signed char. * Reduced number of choices for AA, AB, and AC parameters. * Expand value-range of tunable according to seed-value. * Adjusted some loop induction variable type. * Fixed synchronization issue. * Code comments. Documentation * Section about "Advanced Tuning" (utilizing multiple devices). --- src/acc/acc_bench_smm.c | 4 +- src/acc/opencl/smm/README-bulktune.md | 21 + src/acc/opencl/smm/kernels/multiply.cl | 99 +-- src/acc/opencl/smm/opencl_libsmm.c | 24 +- .../smm/params/tune_multiply_A100-40GB.csv | 428 +++++----- .../smm/params/tune_multiply_A100-80GB.csv | 618 +++++++------- .../opencl/smm/params/tune_multiply_H100.csv | 590 +++++++------- .../opencl/smm/params/tune_multiply_Mi250.csv | 362 +++++++++ .../opencl/smm/params/tune_multiply_P100.csv | 500 ++++++------ .../opencl/smm/params/tune_multiply_PVC.csv | 757 +++++++++--------- .../opencl/smm/params/tune_multiply_V100.csv | 314 ++++---- src/acc/opencl/smm/tune_multiply.py | 320 ++++---- src/acc/opencl/smm/tune_multiply.sh | 6 +- 13 files changed, 2243 insertions(+), 1800 deletions(-) create mode 100644 src/acc/opencl/smm/params/tune_multiply_Mi250.csv diff --git a/src/acc/acc_bench_smm.c b/src/acc/acc_bench_smm.c index 91fb27a965a..6facfb7eae3 100644 --- a/src/acc/acc_bench_smm.c +++ b/src/acc/acc_bench_smm.c @@ -86,8 +86,8 @@ #endif #define ACC_BENCH_SMM_EPSILON(T) DBCSR_CONCATENATE(ACC_BENCH_SMM_EPSILON_, T) -#define ACC_BENCH_SMM_EPSILON_double 3E-3 -#define ACC_BENCH_SMM_EPSILON_float 3E-3 +#define ACC_BENCH_SMM_EPSILON_double 1E-3 +#define ACC_BENCH_SMM_EPSILON_float 2E-3 #define ROUNDUP2(N, NPOT) ((((unsigned long long)N) + ((NPOT)-1)) & ~((NPOT)-1)) #define CHECK(EXPR, RPTR, VALUE) \ diff --git a/src/acc/opencl/smm/README-bulktune.md b/src/acc/opencl/smm/README-bulktune.md index f6e023dc9ed..36bee50ee28 100644 --- a/src/acc/opencl/smm/README-bulktune.md +++ b/src/acc/opencl/smm/README-bulktune.md @@ -66,3 +66,24 @@ cp tune_multiply.csv smm/params/tune_multiply_P100.csv ``` Tuning kernels further is only sensible if the previously tuned parameters are embedded into the binary (such that the process does not start from scratch). Retuned parameters are captured with JSON-files as usual. + +# Advanced Tuning + +To utilize multiple devices per system and to accelerate tuning kernels, `tune_multiply.py` comes with built-in support for running under MPI (SPMD execution model). The basic assumption is to spawn one process per device usually with different kernels tuned per device (SPMD). Of course, tuning the same kernels in parallel on multiple devices is possible but it is a waste of resources. Tuning on multiple devices per system can be also more realistic given the common power budget of all devices and less room for an increased operating frequency per device (Turbo clock speed). + +For example, a single dual-socket system with two PVC cards (modules) per socket exposes eight GPU devices (two GPU stacks or tiles per card). Then 350 kernels can be tuned in less than 2 1/2 hours with a duration of 200 seconds for tuning each kernel. + +```bash +MAXTIME=200 NPARTS=8 UPDATE=1 JSONDIR=params/pvc mpirun \ + ./tune_multiply.sh -i 1 : \ + ./tune_multiply.sh -i 2 : \ + ./tune_multiply.sh -i 3 : \ + ./tune_multiply.sh -i 4 : \ + ./tune_multiply.sh -i 5 : \ + ./tune_multiply.sh -i 6 : \ + ./tune_multiply.sh -i 7 : \ + ./tune_multiply.sh -i 8 \ +>out.log 2>&1 +``` + +**NOTE**: The above shown example prefers environment variables over command-line options that would be common to the eight launches of `tune_multiply.sh`. diff --git a/src/acc/opencl/smm/kernels/multiply.cl b/src/acc/opencl/smm/kernels/multiply.cl index dddf4657dc1..3e94a8940c6 100644 --- a/src/acc/opencl/smm/kernels/multiply.cl +++ b/src/acc/opencl/smm/kernels/multiply.cl @@ -28,13 +28,13 @@ #endif #if !defined(AL) || (SM != SN) || (SM != BM) || (SN != SK) || (1 == BS) -# define ADX(M, K) adata[SM * K + M + a0] -# define BDX(K, N) bdata[SN * K + N + b0] -# define CDX(M, N) cdata[SM * N + M + c0] +# define ADX(M, K) adata[SM * K + M + a0] /* transposed */ +# define BDX(K, N) bdata[SN * K + N + b0] /* linear */ +# define CDX(M, N) cdata[SM * N + M + c0] /* transposed */ #else -# define ADX(M, K) adata[SK * M + K + a0] -# define BDX(K, N) bdata[SK * N + K + b0] -# define CDX(M, N) cdata[SN * M + N + c0] +# define ADX(M, K) adata[SK * M + K + a0] /* linear */ +# define BDX(K, N) bdata[SK * N + K + b0] /* transposed */ +# define CDX(M, N) cdata[SN * M + N + c0] /* linear */ #endif #if defined(SLM_A) @@ -69,6 +69,10 @@ # define CNM(N, M) cnm[M] #endif +#if !defined(SINT) /* covers matrix shape */ +# define SINT signed char +#endif + #if (1 == TN) # define ZERO 0.f #elif (3 == TN) @@ -274,22 +278,22 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res int c0; # if defined(SLM_C) local T cnm[SN][SM + SLM_C - 1]; /* tile in SLM */ - for (int n = idx; n < SN; n += SWG) { + for (SINT n = (SINT)idx; n < SN; n += SWG) { UNROLL_FORCE(SM) - for (int m = 0; m < SM; ++m) cnm[n][m] = ZERO; + for (SINT m = 0; m < SM; ++m) cnm[n][m] = ZERO; } # elif (BM < SM || 1 != BN) # if (1 != BN) UNROLL(BN) - for (int bn = 0; bn < BN; ++bn) + for (SINT bn = 0; bn < BN; ++bn) # endif { UNROLL_FORCE(BM) - for (int bm = 0; bm < BM; ++bm) CNM(bn, bm) = ZERO; + for (SINT bm = 0; bm < BM; ++bm) CNM(bn, bm) = ZERO; } # else UNROLL_FORCE(SM) - for (int m = 0; m < SM; ++m) cnm[m] = ZERO; + for (SINT m = 0; m < SM; ++m) cnm[m] = ZERO; # endif # if defined(SLM_P) UNROLL_FORCE(3 * BS) @@ -332,7 +336,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif { UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) amk[m][k] = ADX(m, k); + for (SINT k = 0; k < SK; ++k) amk[m][k] = ADX(m, k); } } #endif @@ -345,7 +349,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif { UNROLL(SK) - for (int k = 0; k < SK; ++k) bnk[n][k] = BDX(k, n); + for (SINT k = 0; k < SK; ++k) bnk[n][k] = BDX(k, n); } } #elif defined(REG_B) @@ -356,9 +360,9 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res { /* copy or transpose B-matrix into registers */ # endif UNROLL(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { # if (BM < SM || 1 != BN) - int bn = 0; + SINT bn = 0; # if (1 != BN) UNROLL_FORCE(BN) for (; bn < BN; ++bn) @@ -391,14 +395,14 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif UNROLL(BM) # if (SM % BM) - for (int bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) # else - for (int bm = 0, m = m0; bm < BM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM; m = ++bm + m0) # endif { /* general BK, A in registers */ - int bn = 0; + SINT bn = 0; UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) amk[k] = ADX(m, k); + for (SINT k = 0; k < SK; ++k) amk[k] = ADX(m, k); # if (1 != BN) UNROLL(BN) for (; bn < BN; ++bn) @@ -419,7 +423,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res const int mc = bn, nc = idx; # endif UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { CNM(nc, mc) = MAD(AMK(m, k), # if defined(REG_B) BNK(bn, k), @@ -452,13 +456,13 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res T cnm[BM] = {ZERO}; /* column-block */ # endif UNROLL(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { # if (SN % BN) || !defined(REG_B) || (defined(SLM_C) && (1 < BS)) || (1 == BS) || (1 != BN) - int bn = 0; + SINT bn = 0; # endif # if defined(REG_A) && !defined(SLM_A) UNROLL_FORCE(BM) - for (int bm = 0; bm < BM; ++bm) amk[bm] = ADX(bm + m0, k); + for (SINT bm = 0; bm < BM; ++bm) amk[bm] = ADX(bm + m0, k); # endif # if (1 != BN) UNROLL(BN) @@ -479,9 +483,9 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif UNROLL_FORCE(BM) # if (SM % BM) - for (int bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) # else - for (int bm = 0, m = m0; bm < BM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM; m = ++bm + m0) # endif { # if defined(REG_A) && !defined(SLM_A) @@ -497,7 +501,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } # if (1 == BS) UNROLL(BM) - for (int bm = 0; bm < BM; ++bm) { + for (SINT bm = 0; bm < BM; ++bm) { # if defined(ATOMIC_INC_NZ) if (ZERO != CNM(idx, bm)) # endif @@ -511,7 +515,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } } # else /* general BK */ - int bn = 0; + SINT bn = 0; # if (1 != BN) UNROLL(BN) for (; bn < BN; ++bn) @@ -529,9 +533,9 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif UNROLL(BM) # if (SM % BM) - for (int bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) # else - for (int bm = 0, m = m0; bm < BM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM; m = ++bm + m0) # endif { # if defined(SLM_C) && (1 < BS) @@ -545,11 +549,11 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res const int nb = n; # endif UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) CNM(nc, mc) = MAD(AMK(m, k), BNK(nb, k), CNM(nc, mc)); + for (SINT k = 0; k < SK; ++k) CNM(nc, mc) = MAD(AMK(m, k), BNK(nb, k), CNM(nc, mc)); } # if (1 == BS) UNROLL(BM) - for (int bm = 0; bm < BM; ++bm) { + for (SINT bm = 0; bm < BM; ++bm) { # if defined(ATOMIC_INC_NZ) if (ZERO != CNM(idx, bm)) # endif @@ -563,24 +567,24 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } # endif } -#else +#else /* BM == SM && 1 == BN */ { /* calculate result-tile using columns */ # if (1 == BS) T cnm[UM] = {ZERO}; /* column-block */ # endif # if (1 == BK) UNROLL_OUTER(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { const T b = BNK(idx, k); # if defined(SLM_A) # if (WRK != SM) - for (int m = idx; m < SM; m += WRK) amk[m] = ADX(m, k); + for (SINT m = (SINT)idx; m < SM; m += WRK) amk[m] = ADX(m, k); # else amk[idx] = ADX(idx, k); # endif # elif defined(REG_A) UNROLL_FORCE(SM) - for (int m = 0; m < SM; ++m) amk[m] = ADX(m, k); + for (SINT m = 0; m < SM; ++m) amk[m] = ADX(m, k); # endif # if defined(BARRIER) && (MAX(1, SGS) < SWG) && defined(SLM_A) BARRIER(CLK_LOCAL_MEM_FENCE); @@ -589,7 +593,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res const T a = AMK(idx, k); # endif UNROLL_FORCE(SM) - for (int m = 0; m < SM; ++m) { + for (SINT m = 0; m < SM; ++m) { # if (200 /*CL_VERSION_2_0*/ <= __OPENCL_VERSION__) && !defined(SLM_A) && !defined(REG_A) && (WRK == SM) && \ (SM <= SGS || SM <= SWG) # if (SM <= SGS) @@ -609,7 +613,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } # if (1 == BS) UNROLL(SM) - for (int m = 0; m < SM; ++m) { + for (SINT m = 0; m < SM; ++m) { # if defined(ATOMIC_INC_NZ) if (ZERO != CNM(idx, m)) # endif @@ -620,7 +624,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } # endif # else - int m = 0, u; + SINT m = 0, u; # if (1 == UM) UNROLL_OUTER(SM) # endif @@ -639,10 +643,10 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif # if defined(REG_A) && !defined(SLM_A) UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) amk[k] = ADX(um, k); + for (SINT k = 0; k < SK; ++k) amk[k] = ADX(um, k); # endif UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { CNM(idx, vm) = MAD(AMK(um, k), BNK(idx, k), CNM(idx, vm)); } } @@ -677,10 +681,10 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif # if defined(REG_A) && !defined(SLM_A) UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) amk[k] = ADX(um, k); + for (SINT k = 0; k < SK; ++k) amk[k] = ADX(um, k); # endif UNROLL_FORCE(SK) - for (int k = 0; k < SK; ++k) { + for (SINT k = 0; k < SK; ++k) { CNM(idx, vm) = MAD(AMK(um, k), BNK(idx, k), CNM(idx, vm)); } } @@ -709,7 +713,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res # endif # if (BM < SM || 1 != BN) { /* atomically commit C-tile to global memory */ - int bn = 0; + SINT bn = 0; # if (1 != BN) UNROLL(BN) for (; bn < BN; ++bn) @@ -722,9 +726,9 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res { UNROLL_FORCE(BM) # if (SM % BM) - for (int bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM && m < SM; m = ++bm + m0) # else - for (int bm = 0, m = m0; bm < BM; m = ++bm + m0) + for (SINT bm = 0, m = m0; bm < BM; m = ++bm + m0) # endif { # if defined(SLM_C) @@ -744,7 +748,7 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res } # else { /* atomically commit C-column to global memory */ - int m = 0; + SINT m = 0; # if defined(ATOMIC_ADD2_GLOBAL) for (; m < (SM - 1); m += 2) { # if defined(ATOMIC_INC_NZ) @@ -774,6 +778,9 @@ FN(global T* restrict cdata, GLOBAL const T* restrict adata, GLOBAL const T* res /* next iteration */ c0 = c1; } +#endif +#if defined(BARRIER) && (MAX(1, SGS) < SWG) && defined(SLM_A) && (BM <= SM || 1 != BN || 1 != BK) + BARRIER(CLK_LOCAL_MEM_FENCE); #endif } } diff --git a/src/acc/opencl/smm/opencl_libsmm.c b/src/acc/opencl/smm/opencl_libsmm.c index 9c9ad343a2e..6ea9f504ce2 100644 --- a/src/acc/opencl/smm/opencl_libsmm.c +++ b/src/acc/opencl/smm/opencl_libsmm.c @@ -1328,17 +1328,17 @@ int libsmm_acc_process(const int* host_param_stack, const int* dev_param_stack, (NULL == env_aa || '\0' == *env_aa) ? (0 == kernel_idx ? (NULL == config ? /*default*/ default_aa : config->aa) : /*default*/ default_aa) : atoi(env_aa), - 0, 3); + 0, 2); new_config.ab = LIBXSMM_CLMP( (NULL == env_ab || '\0' == *env_ab) ? (0 == kernel_idx ? (NULL == config ? /*default*/ default_ab : config->ab) : /*default*/ default_ab) : atoi(env_ab), - 0, 3); + 0, 2); new_config.ac = LIBXSMM_CLMP( (NULL == env_ac || '\0' == *env_ac) ? (0 == kernel_idx ? (NULL == config ? /*default*/ default_ac : config->ac) : /*default*/ default_ac) : atoi(env_ac), - 0, 2); + 0, 1); if (NULL == env_xf || '\0' == *env_xf) { if (0 == devinfo->intel || NULL == env_cl || NULL == strstr(env_cl, intel_xf)) { new_config.flags = (NULL == config ? /*default*/ 0 : config->flags); @@ -1425,6 +1425,10 @@ int libsmm_acc_process(const int* host_param_stack, const int* dev_param_stack, const char* const env_barrier = getenv("OPENCL_LIBSMM_SMM_BARRIER"); const char* const env_atomics = getenv("OPENCL_LIBSMM_SMM_ATOMICS"); const char* const env_nrepeat = getenv("SMM_NREPEAT"); + const int typesize = OPENCL_LIBSMM_TYPESIZE(datatype); + const int slm_a = (1 != new_config.aa ? 0 : (LIBXSMM_ISPOT(k_max * typesize) + 1)); + const int slm_b = (1 != new_config.ab ? 0 : (LIBXSMM_ISPOT(k_max * typesize) + 1)); + const int slm_c = (1 != new_config.ac ? 0 : (LIBXSMM_ISPOT(m_max * typesize) + 1)); const char *barrier_expr = NULL, *atomic_ops = ""; const char *atomic_exp = NULL, *atomic_expr2 = ""; if (NULL == env_barrier || '0' != *env_barrier) { @@ -1543,9 +1547,9 @@ int libsmm_acc_process(const int* host_param_stack, const int* dev_param_stack, bs == new_config.bs ? "-DBSC" : "", new_config.bm, new_config.bn, new_config.bk, tname, datatype, 0 == new_config.nz ? "" : "-DATOMIC_INC_NZ", 0 == new_config.al ? "" : "-DAL", 0 == new_config.tb ? "" : "-DTRACK_B", 0 != new_config.tc ? "-DTRACK_C" : "", 0 == new_config.ap ? "" : "-DSLM_P", - 0 == new_config.aa ? "" : (1 == new_config.aa ? "-DSLM_A=1" : (2 == new_config.aa ? "-DSLM_A=2" : "-DREG_A")), - 0 == new_config.ab ? "" : (1 == new_config.ab ? "-DSLM_B=1" : (2 == new_config.ab ? "-DSLM_B=2" : "-DREG_B")), - 0 == new_config.ac ? "" : (1 == new_config.ac ? "-DSLM_C=1" : "-DSLM_C=2"), atomic_type, atomic_ops, atomic_exp, + 0 == new_config.aa ? "" : (1 == slm_a ? "-DSLM_A=1" : (0 != slm_a ? "-DSLM_A=2" : "-DREG_A")), + 0 == new_config.ab ? "" : (1 == slm_b ? "-DSLM_B=1" : (0 != slm_b ? "-DSLM_B=2" : "-DREG_B")), + 0 == new_config.ac ? "" : (1 == slm_c ? "-DSLM_C=1" : "-DSLM_C=2"), atomic_type, atomic_ops, atomic_exp, atomic_expr2, barrier_expr); if (0 < nchar && (int)sizeof(build_params) > nchar) { const char* const cl_debug = ( @@ -1644,9 +1648,9 @@ int libsmm_acc_process(const int* host_param_stack, const int* dev_param_stack, assert(EXIT_SUCCESS != result || (0 <= config->tb && 1 >= config->tb)); assert(EXIT_SUCCESS != result || (0 <= config->tc && 1 >= config->tc)); assert(EXIT_SUCCESS != result || (0 <= config->ap && 1 >= config->ap)); - assert(EXIT_SUCCESS != result || (0 <= config->aa && 3 >= config->aa)); - assert(EXIT_SUCCESS != result || (0 <= config->ab && 3 >= config->ab)); - assert(EXIT_SUCCESS != result || (0 <= config->ac && 2 >= config->ac)); + assert(EXIT_SUCCESS != result || (0 <= config->aa && 2 >= config->aa)); + assert(EXIT_SUCCESS != result || (0 <= config->ab && 2 >= config->ab)); + assert(EXIT_SUCCESS != result || (0 <= config->ac && 1 >= config->ac)); assert(EXIT_SUCCESS != result || (1 <= config->wgsize[kernel_idx])); assert(EXIT_SUCCESS != result || (1 <= config->s && 1 <= config->bs)); if (EXIT_SUCCESS == result) { @@ -1809,7 +1813,7 @@ int libsmm_acc_process(const int* host_param_stack, const int* dev_param_stack, fprintf(stderr, " => ERROR diff=%g\n", diff.linf_abs); # endif if (3 <= c_dbcsr_acc_opencl_config.verbosity || 0 > c_dbcsr_acc_opencl_config.verbosity) { - fprintf(stderr, "stackposition = %llu (index=%llu)\n", i, (unsigned long long)ic); + fprintf(stderr, "stackposition = %llu (index=%llu)\n", (unsigned long long)i, (unsigned long long)ic); opencl_libsmm_print_matrix(stderr, "gold = ", datatype, gold + ic, m_max, n_max); opencl_libsmm_print_matrix(stderr, "test = ", datatype, test + ic, m_max, n_max); fprintf(stderr, "\n"); diff --git a/src/acc/opencl/smm/params/tune_multiply_A100-40GB.csv b/src/acc/opencl/smm/params/tune_multiply_A100-40GB.csv index c2c344091fb..026356ccc31 100644 --- a/src/acc/opencl/smm/params/tune_multiply_A100-40GB.csv +++ b/src/acc/opencl/smm/params/tune_multiply_A100-40GB.csv @@ -1,215 +1,215 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -NVIDIA A100-PCIE-40GB [0xa01f];3;2;2;2;30000;0;9;2;1;2;0;1;0;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;3;3;3;30000;0;9;1;1;2;0;0;1;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;4;30000;0;10;1;1;1;0;-1;-2;1;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;5;30000;0;10;1;1;1;0;-1;1;0;0;1;1;0;0;0;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;7;30000;0;10;4;1;2;0;1;-1;0;0;1;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;9;30000;0;6;1;2;3;0;0;-2;1;0;1;1;0;3;2;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;10;30000;0;6;1;1;1;0;1;0;1;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;13;30000;0;10;1;1;2;0;-1;0;1;0;1;1;0;3;0;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;15;30000;0;22;1;1;3;0;-2;1;1;0;0;0;1;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;17;30000;0;5;4;1;4;0;1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;25;30000;0;14;1;1;2;0;0;1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;26;30000;0;4;1;1;2;0;0;-1;1;0;1;1;0;0;2;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;28;30000;0;20;1;1;3;0;0;0;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;32;30000;0;18;1;1;3;0;-1;1;0;0;0;0;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;4;30000;0;10;1;1;3;0;-1;-2;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;5;30000;0;9;1;1;3;0;1;-1;1;0;1;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;7;30000;0;12;1;1;4;0;1;-1;1;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;9;30000;0;6;1;3;4;0;1;1;1;0;1;1;0;3;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;13;30000;0;21;1;1;3;0;-1;-2;1;0;1;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;17;30000;0;5;4;1;2;0;0;-1;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;25;30000;0;6;1;1;3;0;0;-1;0;0;0;0;0;0;0;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;32;30000;0;5;4;1;4;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;4;30000;0;10;1;1;3;0;2;0;1;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;5;30000;0;9;1;1;1;0;1;-2;1;0;1;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;7;30000;0;10;1;1;1;0;-1;-1;0;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;9;30000;0;17;1;1;2;0;0;1;0;0;1;0;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;13;30000;0;16;2;1;4;0;-2;-1;1;0;1;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;4;30000;0;11;1;2;4;0;1;-2;0;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;5;30000;0;19;2;1;1;0;-1;-1;1;0;0;1;1;3;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;7;30000;0;14;4;1;4;0;0;-1;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;9;30000;0;13;1;1;4;0;1;-2;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;13;30000;0;9;3;1;4;0;-1;0;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;10;4;30000;0;15;3;1;2;0;1;1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;10;10;30000;0;15;4;1;2;0;1;0;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;4;30000;0;19;4;1;2;0;-2;-2;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;5;30000;0;17;2;1;1;0;0;-2;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;7;30000;0;14;2;1;1;0;2;0;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;9;30000;0;7;2;1;3;0;-2;-2;1;0;1;1;1;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;13;30000;0;10;4;1;2;0;-1;-1;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;17;30000;0;14;4;1;2;0;0;1;0;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;32;30000;0;7;4;1;4;0;0;0;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;15;4;30000;0;20;2;1;1;0;0;-2;0;0;1;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;4;30000;0;18;4;1;3;0;0;0;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;5;30000;0;14;4;1;2;0;-1;0;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;13;30000;0;13;4;1;3;0;0;0;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;17;30000;0;10;4;1;3;0;-1;-1;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;32;30000;0;7;4;1;4;0;-2;0;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;25;4;30000;0;23;4;1;1;0;0;0;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;25;5;30000;0;21;4;1;2;0;0;0;0;0;0;1;0;3;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;26;4;30000;0;22;4;1;1;0;0;0;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;28;4;30000;0;20;4;1;1;0;-1;0;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;4;30000;0;21;4;1;3;0;0;0;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;5;30000;0;14;4;1;2;0;-1;-1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;13;30000;0;11;4;1;2;0;1;-2;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;17;30000;0;12;4;1;3;0;0;-2;0;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;32;30000;0;8;4;1;4;0;0;0;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;4;30000;0;11;1;1;3;0;0;-2;1;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;5;30000;0;9;1;1;2;0;-1;0;0;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;7;30000;0;12;1;1;1;0;1;-1;1;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;9;30000;0;12;1;1;4;0;-1;-2;0;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;13;30000;0;12;1;1;5;0;1;-2;0;0;1;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;17;30000;0;5;5;1;5;0;-2;1;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;25;30000;0;27;1;1;4;0;1;-2;0;0;0;0;0;3;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;32;30000;0;3;5;1;5;0;-2;0;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;4;30000;0;11;1;1;5;0;1;-1;0;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;5;30000;0;10;1;1;3;0;-2;1;0;0;0;1;0;0;0;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;7;30000;0;9;1;1;5;0;1;-1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;9;30000;0;25;1;1;4;0;1;-2;0;0;1;1;0;3;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;13;30000;0;10;2;1;4;0;1;-1;0;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;17;30000;0;5;5;1;5;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;32;30000;0;3;5;1;5;0;0;0;0;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;4;30000;0;11;2;1;3;0;1;0;0;0;1;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;5;30000;0;16;5;1;5;0;-1;0;1;0;1;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;7;30000;0;19;2;1;4;0;0;-2;1;0;0;1;1;0;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;9;30000;0;12;1;2;4;0;-2;0;0;0;0;1;1;3;3;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;13;30000;0;20;1;2;5;0;1;-1;1;0;1;1;1;3;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;4;30000;0;15;1;2;4;0;0;-1;0;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;5;30000;0;34;2;1;2;0;1;-2;0;0;1;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;7;30000;0;15;5;1;2;0;1;1;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;9;30000;0;25;1;2;2;0;0;1;0;0;1;1;1;3;1;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;4;30000;0;20;5;1;1;0;0;0;0;0;0;1;1;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;5;30000;0;14;1;3;1;0;1;0;1;0;0;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;7;30000;0;24;3;1;2;0;1;0;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;13;30000;0;6;5;1;2;0;-1;-1;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;17;30000;0;12;5;1;5;0;0;-2;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;5;25;4;30000;0;30;5;1;1;0;1;-2;0;0;0;1;1;0;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;6;30000;0;18;6;1;3;0;0;1;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;7;30000;0;19;2;1;6;0;1;-1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;8;30000;0;15;6;1;3;0;1;1;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;6;30000;0;28;2;1;1;0;-2;-2;0;0;0;1;0;3;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;7;30000;0;12;1;2;1;0;0;1;1;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;8;30000;0;15;2;1;6;0;-1;1;0;0;0;1;0;3;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;6;30000;0;14;3;1;2;0;0;0;0;0;0;1;1;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;7;30000;0;32;1;2;4;0;-1;0;0;0;1;1;1;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;8;30000;0;23;1;2;5;0;-1;0;1;0;1;0;0;0;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;4;30000;0;9;1;1;6;0;0;0;0;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;5;30000;0;15;1;1;7;0;-2;0;0;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;7;30000;0;24;1;1;4;0;-1;0;0;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;9;30000;0;14;1;1;6;0;1;-1;0;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;13;30000;0;15;1;4;2;0;-1;-1;0;0;0;1;1;0;2;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;4;30000;0;15;7;1;2;0;0;-1;1;0;0;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;5;30000;0;6;2;1;2;0;0;-2;0;0;0;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;7;30000;0;14;3;1;2;0;-2;-2;0;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;9;30000;0;10;1;1;4;0;1;0;0;0;1;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;13;30000;0;5;1;2;1;0;1;-2;1;0;1;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;6;30000;0;14;1;3;7;0;0;1;0;0;1;1;1;0;0;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;7;30000;0;19;2;1;1;0;1;-2;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;8;30000;0;43;1;2;4;0;1;0;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;4;30000;0;18;7;1;3;0;-1;-1;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;5;30000;0;29;1;2;1;0;1;-1;0;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;6;30000;0;18;3;1;4;0;-2;0;0;0;1;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;7;30000;0;18;7;1;2;0;2;0;0;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;8;30000;0;11;2;1;1;0;-1;-2;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;9;30000;0;11;1;2;7;0;1;-2;0;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;13;30000;0;9;2;1;4;0;2;1;1;0;0;1;1;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;6;30000;0;10;2;1;2;0;0;1;1;0;0;1;0;0;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;7;0;0;18;7;1;0;0;1;0;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;8;30000;0;10;2;1;4;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;4;30000;0;16;1;1;2;0;-2;0;0;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;5;30000;0;13;3;1;2;0;-1;-2;1;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;7;30000;0;9;1;8;1;0;-2;-2;1;0;1;1;1;3;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;4;30000;0;21;4;1;1;0;1;-2;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;5;30000;0;9;1;4;3;0;1;1;1;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;7;30000;0;14;7;1;3;0;1;0;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;13;0;0;12;7;1;0;0;2;-2;0;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;6;30000;0;14;1;2;4;0;-2;-2;0;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;7;30000;0;13;2;1;5;0;1;-1;0;0;0;1;0;3;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;8;30000;0;20;1;2;8;0;1;1;0;0;0;0;0;0;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;6;30000;0;5;1;7;6;0;-1;-1;0;0;1;1;1;0;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;7;30000;0;22;2;1;2;0;-2;-1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;8;30000;0;16;2;1;3;0;-1;0;1;0;0;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;6;30000;0;18;8;1;2;0;1;-2;1;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;7;30000;0;14;2;1;3;0;-1;-2;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;8;30000;0;18;8;1;6;0;0;0;0;0;1;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;4;30000;0;17;1;1;1;0;-2;1;1;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;5;30000;0;11;1;3;1;0;-2;1;1;0;0;1;0;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;7;30000;0;10;2;1;3;0;1;1;1;0;0;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;9;30000;0;10;1;1;7;0;-2;1;1;0;1;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;13;30000;0;10;1;2;2;0;0;0;0;0;1;0;0;1;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;4;30000;0;18;1;2;3;0;-2;-1;1;0;1;1;0;0;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;5;30000;0;19;2;1;1;0;-1;0;1;0;1;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;7;30000;0;12;1;5;5;0;0;-1;1;0;0;1;0;0;1;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;9;30000;0;14;2;1;2;0;1;-2;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;4;30000;0;16;4;1;1;0;0;1;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;5;30000;0;18;6;1;3;0;0;-2;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;7;30000;0;19;1;1;3;0;1;-1;0;0;0;1;0;0;3;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;4;30000;0;24;9;1;8;0;-2;0;0;0;1;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;5;30000;0;17;3;1;7;0;-2;1;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;9;30000;0;15;3;1;3;0;-1;-2;0;0;0;1;0;3;3;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;16;30000;0;15;3;1;1;0;1;1;0;0;0;1;1;3;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;22;30000;0;12;1;3;9;0;1;-1;1;0;0;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;32;0;0;14;1;3;8;0;0;-1;0;0;0;0;1;3;3;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;13;4;30000;0;17;9;1;3;0;-1;0;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;9;0;0;13;9;1;0;0;1;-2;0;0;0;1;1;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;16;30000;0;12;7;1;1;0;0;0;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;22;30000;0;19;5;1;1;0;1;-2;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;9;30000;0;17;9;1;6;0;-2;-2;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;16;0;0;13;9;1;0;0;1;-2;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;22;30000;0;10;9;1;6;0;1;0;1;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;32;0;0;24;9;7;9;0;0;-2;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;10;4;4;30000;0;14;1;2;5;0;-2;-1;0;0;0;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;10;4;10;30000;0;10;1;2;1;0;0;-2;1;0;0;1;1;0;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;10;10;4;30000;0;24;10;1;5;0;1;1;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;10;10;10;30000;0;14;4;1;9;0;0;-1;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;4;30000;0;16;1;2;9;0;0;0;0;0;0;1;1;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;5;30000;0;17;2;1;7;0;1;-2;1;0;1;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;7;30000;0;19;2;1;11;0;1;0;1;0;0;1;1;0;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;9;30000;0;9;2;1;1;0;1;-1;1;0;1;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;4;30000;0;14;4;1;2;0;1;-1;0;0;1;1;0;0;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;5;30000;0;15;13;1;2;0;2;-2;0;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;7;30000;0;6;1;1;13;0;-2;-2;0;0;0;1;1;1;1;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;13;30000;0;9;1;1;1;0;-2;0;0;0;0;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;4;30000;0;21;1;1;11;0;1;-2;1;0;1;1;0;0;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;5;30000;0;18;3;2;5;0;0;1;1;0;1;1;1;3;3;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;7;30000;0;5;1;5;9;0;-1;0;1;0;1;1;0;3;1;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;13;30000;0;10;1;4;8;0;-2;-2;1;0;1;1;0;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;9;4;30000;0;18;9;1;1;0;0;0;1;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;5;30000;0;24;13;1;5;0;1;1;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;7;30000;0;24;13;1;2;0;1;0;1;0;1;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;13;30000;0;14;13;1;3;0;1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;15;4;4;30000;0;21;2;1;4;0;1;-2;1;0;0;1;1;3;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;15;15;15;30000;0;16;15;1;14;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;9;30000;0;12;16;1;2;0;0;-2;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;16;30000;0;14;2;1;1;0;0;-2;1;0;0;1;1;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;22;30000;0;20;6;1;9;0;0;-2;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;9;30000;0;18;16;1;6;0;1;1;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;16;0;0;14;16;1;0;0;1;0;1;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;22;0;0;14;16;1;0;0;0;-2;1;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;9;30000;0;18;16;1;4;0;1;-2;1;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;16;0;0;19;16;1;0;0;2;-2;1;0;0;1;1;2;0;1 -NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;22;0;0;24;16;1;0;0;1;-2;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;20;20;20;30000;0;15;20;17;14;0;0;0;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;9;30000;0;6;2;5;4;0;-1;1;0;0;0;1;0;3;3;2 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;16;0;0;14;22;1;0;0;1;-2;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;22;0;0;24;22;1;0;0;0;-2;0;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;32;0;0;10;8;1;4;0;0;-1;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;9;0;0;19;22;1;0;0;1;-2;1;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;16;0;0;14;22;1;0;0;1;-2;1;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;22;0;0;18;22;1;0;0;1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;9;0;0;24;22;1;0;0;1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;16;0;0;15;22;1;0;0;1;-2;1;0;0;1;1;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;22;0;0;24;22;1;0;0;2;-2;1;0;0;1;0;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;32;0;0;15;22;14;17;0;0;-2;0;0;0;1;0;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;23;23;23;30000;0;24;23;1;22;0;-2;0;1;0;0;1;1;1;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;24;24;24;0;0;18;24;1;0;0;1;-2;1;0;0;1;1;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;25;4;4;0;0;15;25;1;0;0;0;0;0;0;0;1;0;2;0;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;25;4;5;0;0;18;25;1;0;0;2;-2;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;25;5;4;0;0;18;25;1;0;0;2;0;0;0;0;1;1;2;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;25;25;25;0;0;24;25;1;0;0;1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;26;4;4;0;0;18;26;1;0;0;2;-2;0;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;28;4;4;0;0;18;28;1;0;0;0;0;0;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;28;28;28;0;0;18;28;1;0;0;1;-2;1;0;0;1;1;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;30;30;30;0;0;18;30;1;0;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA A100-PCIE-40GB [0xa01f];3;32;32;32;0;0;36;32;4;32;0;0;0;0;0;0;1;0;2;3;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;2;2;2;30000;0;9;2;1;2;0;1;0;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;3;3;3;30000;0;9;1;1;2;0;0;1;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;4;30000;0;10;1;1;1;0;-1;-2;1;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;5;30000;0;10;1;1;1;0;-1;1;0;0;1;1;0;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;7;30000;0;10;4;1;2;0;1;-1;0;0;1;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;9;30000;0;6;1;2;3;0;0;-2;1;0;1;1;0;2;1;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;10;30000;0;6;1;1;1;0;1;0;1;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;13;30000;0;10;1;1;2;0;-1;0;1;0;1;1;0;2;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;15;30000;0;22;1;1;3;0;-2;1;1;0;0;0;1;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;17;30000;0;5;4;1;4;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;25;30000;0;14;1;1;2;0;0;1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;26;30000;0;4;1;1;2;0;0;-1;1;0;1;1;0;0;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;28;30000;0;20;1;1;3;0;0;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;4;32;30000;0;18;1;1;3;0;-1;1;0;0;0;0;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;4;30000;0;10;1;1;3;0;-1;-2;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;5;30000;0;9;1;1;3;0;1;-1;1;0;1;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;7;30000;0;12;1;1;4;0;1;-1;1;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;9;30000;0;6;1;3;4;0;1;1;1;0;1;1;0;2;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;13;30000;0;21;1;1;3;0;-1;-2;1;0;1;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;17;30000;0;5;4;1;2;0;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;25;30000;0;6;1;1;3;0;0;-1;0;0;0;0;0;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;5;32;30000;0;5;4;1;4;0;1;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;4;30000;0;10;1;1;3;0;2;0;1;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;5;30000;0;9;1;1;1;0;1;-2;1;0;1;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;7;30000;0;10;1;1;1;0;-1;-1;0;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;9;30000;0;17;1;1;2;0;0;1;0;0;1;0;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;7;13;30000;0;16;2;1;4;0;-2;-1;1;0;1;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;4;30000;0;11;1;2;4;0;1;-2;0;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;5;30000;0;19;2;1;1;0;-1;-1;1;0;0;1;1;2;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;7;30000;0;14;4;1;4;0;0;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;9;30000;0;13;1;1;4;0;1;-2;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;9;13;30000;0;9;3;1;4;0;-1;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;10;4;30000;0;15;3;1;2;0;1;1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;10;10;30000;0;15;4;1;2;0;1;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;4;30000;0;19;4;1;2;0;-2;-2;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;5;30000;0;17;2;1;1;0;0;-2;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;7;30000;0;14;2;1;1;0;2;0;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;9;30000;0;7;2;1;3;0;-2;-2;1;0;1;1;1;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;13;30000;0;10;4;1;2;0;-1;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;17;30000;0;14;4;1;2;0;0;1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;13;32;30000;0;7;4;1;4;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;15;4;30000;0;20;2;1;1;0;0;-2;0;0;1;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;4;30000;0;18;4;1;3;0;0;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;5;30000;0;14;4;1;2;0;-1;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;13;30000;0;13;4;1;3;0;0;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;17;30000;0;10;4;1;3;0;-1;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;17;32;30000;0;7;4;1;4;0;-2;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;25;4;30000;0;23;4;1;1;0;0;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;25;5;30000;0;21;4;1;2;0;0;0;0;0;0;1;0;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;26;4;30000;0;22;4;1;1;0;0;0;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;28;4;30000;0;20;4;1;1;0;-1;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;4;30000;0;21;4;1;3;0;0;0;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;5;30000;0;14;4;1;2;0;-1;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;13;30000;0;11;4;1;2;0;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;17;30000;0;12;4;1;3;0;0;-2;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;4;32;32;30000;0;8;4;1;4;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;4;30000;0;11;1;1;3;0;0;-2;1;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;5;30000;0;9;1;1;2;0;-1;0;0;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;7;30000;0;12;1;1;1;0;1;-1;1;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;9;30000;0;12;1;1;4;0;-1;-2;0;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;13;30000;0;12;1;1;5;0;1;-2;0;0;1;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;17;30000;0;5;5;1;5;0;-2;1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;25;30000;0;27;1;1;4;0;1;-2;0;0;0;0;0;2;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;4;32;30000;0;3;5;1;5;0;-2;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;4;30000;0;11;1;1;5;0;1;-1;0;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;5;30000;0;10;1;1;3;0;-2;1;0;0;0;1;0;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;7;30000;0;9;1;1;5;0;1;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;9;30000;0;25;1;1;4;0;1;-2;0;0;1;1;0;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;13;30000;0;10;2;1;4;0;1;-1;0;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;17;30000;0;5;5;1;5;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;5;32;30000;0;3;5;1;5;0;0;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;4;30000;0;11;2;1;3;0;1;0;0;0;1;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;5;30000;0;16;5;1;5;0;-1;0;1;0;1;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;7;30000;0;19;2;1;4;0;0;-2;1;0;0;1;1;0;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;9;30000;0;12;1;2;4;0;-2;0;0;0;0;1;1;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;7;13;30000;0;20;1;2;5;0;1;-1;1;0;1;1;1;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;4;30000;0;15;1;2;4;0;0;-1;0;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;5;30000;0;34;2;1;2;0;1;-2;0;0;1;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;7;30000;0;15;5;1;2;0;1;1;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;9;9;30000;0;25;1;2;2;0;0;1;0;0;1;1;1;2;1;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;4;30000;0;20;5;1;1;0;0;0;0;0;0;1;1;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;5;30000;0;14;1;3;1;0;1;0;1;0;0;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;7;30000;0;24;3;1;2;0;1;0;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;13;30000;0;6;5;1;2;0;-1;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;13;17;30000;0;12;5;1;5;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;5;25;4;30000;0;30;5;1;1;0;1;-2;0;0;0;1;1;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;6;30000;0;18;6;1;3;0;0;1;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;7;30000;0;19;2;1;6;0;1;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;6;8;30000;0;15;6;1;3;0;1;1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;6;30000;0;28;2;1;1;0;-2;-2;0;0;0;1;0;2;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;7;30000;0;12;1;2;1;0;0;1;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;7;8;30000;0;15;2;1;6;0;-1;1;0;0;0;1;0;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;6;30000;0;14;3;1;2;0;0;0;0;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;7;30000;0;32;1;2;4;0;-1;0;0;0;1;1;1;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;6;8;8;30000;0;23;1;2;5;0;-1;0;1;0;1;0;0;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;4;30000;0;9;1;1;6;0;0;0;0;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;5;30000;0;15;1;1;7;0;-2;0;0;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;7;30000;0;24;1;1;4;0;-1;0;0;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;9;30000;0;14;1;1;6;0;1;-1;0;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;4;13;30000;0;15;1;4;2;0;-1;-1;0;0;0;1;1;0;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;4;30000;0;15;7;1;2;0;0;-1;1;0;0;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;5;30000;0;6;2;1;2;0;0;-2;0;0;0;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;7;30000;0;14;3;1;2;0;-2;-2;0;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;9;30000;0;10;1;1;4;0;1;0;0;0;1;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;5;13;30000;0;5;1;2;1;0;1;-2;1;0;1;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;6;30000;0;14;1;3;7;0;0;1;0;0;1;1;1;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;7;30000;0;19;2;1;1;0;1;-2;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;6;8;30000;0;43;1;2;4;0;1;0;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;4;30000;0;18;7;1;3;0;-1;-1;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;5;30000;0;29;1;2;1;0;1;-1;0;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;6;30000;0;18;3;1;4;0;-2;0;0;0;1;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;7;30000;0;18;7;1;2;0;2;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;8;30000;0;11;2;1;1;0;-1;-2;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;9;30000;0;11;1;2;7;0;1;-2;0;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;7;13;30000;0;9;2;1;4;0;2;1;1;0;0;1;1;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;6;30000;0;10;2;1;2;0;0;1;1;0;0;1;0;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;7;0;0;18;7;1;0;0;1;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;8;8;30000;0;10;2;1;4;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;4;30000;0;16;1;1;2;0;-2;0;0;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;5;30000;0;13;3;1;2;0;-1;-2;1;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;9;7;30000;0;9;1;8;1;0;-2;-2;1;0;1;1;1;2;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;4;30000;0;21;4;1;1;0;1;-2;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;5;30000;0;9;1;4;3;0;1;1;1;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;7;30000;0;14;7;1;3;0;1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;7;13;13;0;0;12;7;1;0;0;2;-2;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;6;30000;0;14;1;2;4;0;-2;-2;0;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;7;30000;0;13;2;1;5;0;1;-1;0;0;0;1;0;2;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;6;8;30000;0;20;1;2;8;0;1;1;0;0;0;0;0;0;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;6;30000;0;5;1;7;6;0;-1;-1;0;0;1;1;1;0;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;7;30000;0;22;2;1;2;0;-2;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;7;8;30000;0;16;2;1;3;0;-1;0;1;0;0;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;6;30000;0;18;8;1;2;0;1;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;7;30000;0;14;2;1;3;0;-1;-2;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;8;8;8;30000;0;18;8;1;6;0;0;0;0;0;1;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;4;30000;0;17;1;1;1;0;-2;1;1;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;5;30000;0;11;1;3;1;0;-2;1;1;0;0;1;0;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;7;30000;0;10;2;1;3;0;1;1;1;0;0;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;9;30000;0;10;1;1;7;0;-2;1;1;0;1;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;4;13;30000;0;10;1;2;2;0;0;0;0;0;1;0;0;1;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;4;30000;0;18;1;2;3;0;-2;-1;1;0;1;1;0;0;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;5;30000;0;19;2;1;1;0;-1;0;1;0;1;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;7;30000;0;12;1;5;5;0;0;-1;1;0;0;1;0;0;1;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;5;9;30000;0;14;2;1;2;0;1;-2;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;4;30000;0;16;4;1;1;0;0;1;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;5;30000;0;18;6;1;3;0;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;7;7;30000;0;19;1;1;3;0;1;-1;0;0;0;1;0;0;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;4;30000;0;24;9;1;8;0;-2;0;0;0;1;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;5;30000;0;17;3;1;7;0;-2;1;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;9;30000;0;15;3;1;3;0;-1;-2;0;0;0;1;0;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;16;30000;0;15;3;1;1;0;1;1;0;0;0;1;1;2;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;22;30000;0;12;1;3;9;0;1;-1;1;0;0;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;9;32;0;0;14;1;3;8;0;0;-1;0;0;0;0;1;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;13;4;30000;0;17;9;1;3;0;-1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;9;0;0;13;9;1;0;0;1;-2;0;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;16;30000;0;12;7;1;1;0;0;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;16;22;30000;0;19;5;1;1;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;9;30000;0;17;9;1;6;0;-2;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;16;0;0;13;9;1;0;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;22;30000;0;10;9;1;6;0;1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;9;22;32;0;0;24;9;7;9;0;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;10;4;4;30000;0;14;1;2;5;0;-2;-1;0;0;0;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;10;4;10;30000;0;10;1;2;1;0;0;-2;1;0;0;1;1;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;10;10;4;30000;0;24;10;1;5;0;1;1;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;10;10;10;30000;0;14;4;1;9;0;0;-1;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;4;30000;0;16;1;2;9;0;0;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;5;30000;0;17;2;1;7;0;1;-2;1;0;1;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;7;30000;0;19;2;1;11;0;1;0;1;0;0;1;1;0;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;4;9;30000;0;9;2;1;1;0;1;-1;1;0;1;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;4;30000;0;14;4;1;2;0;1;-1;0;0;1;1;0;0;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;5;30000;0;15;13;1;2;0;2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;7;30000;0;6;1;1;13;0;-2;-2;0;0;0;1;1;1;1;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;5;13;30000;0;9;1;1;1;0;-2;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;4;30000;0;21;1;1;11;0;1;-2;1;0;1;1;0;0;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;5;30000;0;18;3;2;5;0;0;1;1;0;1;1;1;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;7;30000;0;5;1;5;9;0;-1;0;1;0;1;1;0;2;1;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;7;13;30000;0;10;1;4;8;0;-2;-2;1;0;1;1;0;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;9;4;30000;0;18;9;1;1;0;0;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;5;30000;0;24;13;1;5;0;1;1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;7;30000;0;24;13;1;2;0;1;0;1;0;1;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;13;13;13;30000;0;14;13;1;3;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;15;4;4;30000;0;21;2;1;4;0;1;-2;1;0;0;1;1;2;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;15;15;15;30000;0;16;15;1;14;0;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;9;30000;0;12;16;1;2;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;16;30000;0;14;2;1;1;0;0;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;9;22;30000;0;20;6;1;9;0;0;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;9;30000;0;18;16;1;6;0;1;1;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;16;0;0;14;16;1;0;0;1;0;1;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;16;22;0;0;14;16;1;0;0;0;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;9;30000;0;18;16;1;4;0;1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;16;0;0;19;16;1;0;0;2;-2;1;0;0;1;1;1;0;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;16;22;22;0;0;24;16;1;0;0;1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;20;20;20;30000;0;15;20;17;14;0;0;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;9;30000;0;6;2;5;4;0;-1;1;0;0;0;1;0;2;2;1;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;16;0;0;14;22;1;0;0;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;22;0;0;24;22;1;0;0;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;9;32;0;0;10;8;1;4;0;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;9;0;0;19;22;1;0;0;1;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;16;0;0;14;22;1;0;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;16;22;0;0;18;22;1;0;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;9;0;0;24;22;1;0;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;16;0;0;15;22;1;0;0;1;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;22;0;0;24;22;1;0;0;2;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;22;22;32;0;0;15;22;14;17;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;23;23;23;30000;0;24;23;1;22;0;-2;0;1;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;24;24;24;0;0;18;24;1;0;0;1;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;25;4;4;0;0;15;25;1;0;0;0;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;25;4;5;0;0;18;25;1;0;0;2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;25;5;4;0;0;18;25;1;0;0;2;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;25;25;25;0;0;24;25;1;0;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;26;4;4;0;0;18;26;1;0;0;2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;28;4;4;0;0;18;28;1;0;0;0;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;28;28;28;0;0;18;28;1;0;0;1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;30;30;30;0;0;18;30;1;0;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100-PCIE-40GB [0xa01f];3;32;32;32;0;0;36;32;4;32;0;0;0;0;0;0;1;0;1;2;0;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_A100-80GB.csv b/src/acc/opencl/smm/params/tune_multiply_A100-80GB.csv index b2986deaa5b..834b5f42e61 100644 --- a/src/acc/opencl/smm/params/tune_multiply_A100-80GB.csv +++ b/src/acc/opencl/smm/params/tune_multiply_A100-80GB.csv @@ -1,310 +1,310 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -NVIDIA A100 80GB PCIe [0x1f79];3;2;2;2;30000;0;9;2;1;2;0;1;-1;0;0;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;3;3;3;30000;0;26;3;1;3;0;-2;-2;1;1;0;1;1;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;4;30000;0;9;1;1;2;0;0;0;0;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;5;30000;0;6;1;1;4;0;1;-1;1;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;7;30000;0;10;4;1;2;0;1;-1;0;0;1;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;9;30000;0;9;4;1;1;0;-1;0;1;0;0;1;0;3;0;1 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;10;30000;0;6;4;1;4;0;0;-1;1;1;1;1;0;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;13;30000;0;5;1;1;1;0;0;-1;1;0;0;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;15;30000;0;14;4;1;2;0;-2;-1;1;0;1;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;17;30000;0;5;4;1;4;0;-2;-1;1;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;25;30000;0;14;4;1;2;0;0;1;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;26;30000;0;14;4;1;3;0;-2;-1;1;0;1;1;1;1;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;28;30000;0;6;4;1;2;0;-1;2;0;1;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;4;32;30000;0;3;4;1;4;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;4;30000;0;12;4;1;2;0;1;0;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;5;30000;0;9;1;1;1;0;-1;1;1;1;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;7;30000;0;4;4;1;2;0;1;0;0;1;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;9;30000;0;6;4;1;4;0;1;0;0;1;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;13;30000;0;4;4;1;4;0;-1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;17;30000;0;5;4;1;2;0;1;-1;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;25;30000;0;6;4;1;3;0;-1;-1;0;0;1;0;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;5;32;30000;0;2;1;1;2;0;-2;-2;0;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;7;4;30000;0;10;4;1;3;0;0;0;1;0;1;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;7;5;30000;0;11;4;1;1;0;1;-2;1;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;7;7;30000;0;10;4;1;1;0;-1;-1;0;1;1;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;7;9;30000;0;6;4;1;3;0;-2;0;0;1;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;7;13;30000;0;4;4;1;3;0;1;-2;1;0;0;1;0;1;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;4;9;4;30000;0;15;4;1;4;0;0;-2;0;0;0;1;1;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;9;5;30000;0;10;4;1;2;0;-2;0;0;1;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;9;7;30000;0;14;4;1;4;0;0;-1;0;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;9;9;30000;0;10;4;1;4;0;1;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;9;13;30000;0;5;4;1;4;0;0;0;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;10;4;30000;0;20;4;1;2;0;1;2;0;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;10;10;30000;0;7;4;1;2;0;0;0;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;4;30000;0;12;2;1;3;0;1;0;0;1;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;5;30000;0;16;2;2;4;0;-2;2;0;1;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;7;30000;0;14;4;1;1;0;2;0;0;0;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;9;30000;0;7;4;1;3;0;1;-2;1;1;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;13;30000;0;10;4;1;3;0;-2;-2;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;17;30000;0;10;4;1;2;0;-2;1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;13;32;30000;0;15;4;1;4;0;-1;-2;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;15;4;30000;0;20;4;1;1;0;0;0;0;0;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;17;4;30000;0;22;4;1;2;0;-1;-1;1;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;17;5;30000;0;12;4;1;3;0;1;-2;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;17;13;30000;0;10;4;1;4;0;0;-2;0;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;17;17;30000;0;10;4;1;3;0;-1;-2;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;17;32;30000;0;15;4;1;3;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;25;4;30000;0;23;4;1;1;0;0;0;0;0;0;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;25;5;30000;0;21;4;1;2;0;0;0;0;0;1;1;0;3;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;4;26;4;30000;0;22;4;1;1;0;-2;0;1;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;28;4;30000;0;18;4;1;1;0;-2;0;0;1;1;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;32;4;30000;0;19;4;1;1;0;0;-2;1;0;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;32;5;30000;0;19;4;1;4;0;1;-1;0;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;32;13;30000;0;12;4;1;3;0;1;-1;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;4;32;17;30000;0;13;4;1;3;0;1;1;0;0;0;1;1;2;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;4;32;32;30000;0;25;4;1;4;0;1;2;0;1;0;1;1;2;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;4;30000;0;10;1;1;2;0;0;1;0;0;1;1;0;0;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;5;30000;0;9;1;1;2;0;-2;2;0;1;1;1;0;3;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;7;30000;0;15;1;1;1;0;-2;0;0;0;0;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;9;30000;0;12;1;1;5;0;0;-2;0;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;13;30000;0;10;1;1;2;0;0;2;0;1;0;0;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;17;30000;0;9;1;1;2;0;1;-2;0;1;1;1;1;0;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;25;30000;0;5;5;1;4;0;1;-2;0;0;0;0;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;4;32;30000;0;2;1;1;2;0;0;1;0;0;0;1;0;3;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;4;30000;0;9;1;1;1;0;-2;-1;1;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;5;30000;0;18;5;1;2;0;-1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;7;30000;0;9;5;1;5;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;9;30000;0;25;5;1;5;0;1;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;13;30000;0;10;1;1;2;0;0;-1;1;0;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;17;30000;0;4;1;1;5;0;0;0;1;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;5;32;30000;0;5;5;1;2;0;-2;2;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;7;4;30000;0;9;5;1;3;0;0;0;0;0;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;7;5;30000;0;10;5;1;4;0;-1;-1;1;0;1;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;7;7;30000;0;14;5;1;4;0;-2;0;1;0;1;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;7;9;30000;0;16;5;1;4;0;-1;2;1;0;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;7;13;30000;0;12;5;1;5;0;-1;-2;1;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;9;4;30000;0;12;5;1;5;0;-2;-1;0;0;1;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;9;5;30000;0;24;5;1;3;0;1;-2;0;0;1;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;9;7;30000;0;15;5;1;2;0;1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;9;9;30000;0;12;5;1;1;0;1;0;1;1;1;1;0;0;0;1 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;4;30000;0;12;5;1;4;0;0;0;0;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;5;30000;0;14;5;1;3;0;-1;0;1;0;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;7;30000;0;24;5;1;2;0;1;0;1;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;13;30000;0;10;5;1;2;0;-1;0;0;0;0;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;17;30000;0;10;5;1;4;0;-2;-1;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;13;32;30000;0;15;5;1;4;0;-2;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;17;4;30000;0;22;5;1;5;0;-1;0;0;0;0;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;17;5;30000;0;12;5;1;4;0;-2;0;1;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;17;13;30000;0;10;5;1;3;0;0;-1;1;0;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;17;17;30000;0;10;5;1;5;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;17;32;30000;0;15;5;1;4;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;25;4;30000;0;29;5;1;1;0;1;-2;0;0;0;1;1;0;0;1 -NVIDIA A100 80GB PCIe [0x1f79];3;5;32;4;30000;0;24;5;1;5;0;-2;-1;1;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;32;5;30000;0;20;5;1;5;0;-1;-1;0;0;1;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;32;13;30000;0;13;5;1;5;0;1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;32;17;30000;0;10;5;1;2;0;1;0;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;5;32;32;30000;0;15;5;1;2;0;-1;0;1;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;6;6;30000;0;18;6;1;3;0;0;-2;0;1;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;6;7;30000;0;19;6;1;6;0;-2;-1;1;1;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;6;8;30000;0;10;6;1;2;0;1;1;0;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;7;6;30000;0;28;6;1;5;0;-2;0;1;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;7;7;30000;0;11;6;1;2;0;1;-1;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;7;8;30000;0;14;6;1;4;0;-1;0;1;0;0;1;0;2;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;6;8;6;30000;0;14;6;1;3;0;0;0;0;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;8;7;30000;0;12;6;1;4;0;-1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;6;8;8;30000;0;26;6;1;4;0;0;-1;0;1;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;4;4;30000;0;9;1;1;6;0;-1;0;1;1;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;4;5;30000;0;10;1;1;2;0;-2;-2;0;0;1;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;4;7;30000;0;9;1;1;5;0;-1;-1;0;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;4;9;30000;0;6;1;1;5;0;0;-2;0;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;4;13;30000;0;19;7;1;2;0;-1;-2;0;1;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;5;4;30000;0;14;7;1;1;0;0;-2;1;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;5;5;30000;0;7;7;1;2;0;1;-2;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;5;7;30000;0;14;7;1;2;0;-2;0;0;0;1;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;5;9;30000;0;10;7;1;4;0;1;0;0;1;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;5;13;30000;0;10;1;2;3;0;1;-2;1;0;1;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;6;6;30000;0;14;7;1;7;0;0;2;0;0;0;1;1;0;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;7;6;7;30000;0;14;2;1;3;0;1;-2;1;0;1;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;6;8;30000;0;20;7;1;2;0;0;2;0;1;1;1;1;0;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;4;30000;0;18;7;1;3;0;-1;0;1;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;5;30000;0;13;7;1;6;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;6;30000;0;35;7;1;3;0;0;1;1;0;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;7;30000;0;18;7;1;2;0;2;0;0;0;1;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;8;30000;0;21;7;1;3;0;-2;1;0;0;0;1;0;2;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;9;30000;0;7;7;1;4;0;-2;-1;0;0;1;1;0;1;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;7;13;30000;0;20;7;1;2;0;1;0;1;0;1;1;1;2;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;8;6;30000;0;19;7;1;3;0;1;2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;8;7;30000;0;12;7;1;4;0;0;-2;0;1;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;8;8;30000;0;10;7;1;6;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;9;4;30000;0;16;7;1;2;0;-2;0;0;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;9;5;30000;0;13;7;1;3;0;0;-2;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;9;7;30000;0;12;7;1;4;0;0;0;0;0;0;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;13;4;30000;0;21;7;1;6;0;0;-2;0;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;13;5;30000;0;9;7;1;4;0;1;0;1;0;1;1;1;2;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;13;7;30000;0;22;7;1;2;0;0;0;1;0;1;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;7;13;13;30000;0;5;1;2;3;0;0;-2;1;1;1;1;0;3;0;1 -NVIDIA A100 80GB PCIe [0x1f79];3;8;6;6;30000;0;10;1;2;7;0;0;-1;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;6;7;30000;0;13;8;1;8;0;-2;-1;0;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;6;8;30000;0;18;8;1;8;0;1;1;0;0;0;1;0;0;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;8;7;6;30000;0;15;8;1;2;0;0;2;0;1;0;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;7;7;30000;0;10;2;1;2;0;-2;0;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;7;8;30000;0;12;2;1;6;0;-1;-1;1;0;1;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;8;6;30000;0;18;8;1;2;0;-2;2;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;8;7;30000;0;14;8;1;3;0;0;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;8;8;8;30000;0;12;8;1;5;0;0;-1;0;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;4;4;30000;0;17;9;1;3;0;-1;-2;0;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;4;5;30000;0;11;9;1;1;0;-2;-2;1;0;0;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;4;7;30000;0;10;2;1;3;0;1;1;0;0;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;4;9;30000;0;10;1;2;9;0;-2;2;0;1;1;0;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;4;13;30000;0;10;9;1;2;0;1;0;0;0;1;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;5;4;30000;0;17;9;1;3;0;-2;-1;1;0;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;5;5;30000;0;12;2;1;2;0;-1;0;1;0;1;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;5;7;30000;0;18;9;1;4;0;-2;-1;0;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;5;9;30000;0;14;2;1;3;0;0;-2;0;0;0;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;7;4;30000;0;18;9;1;3;0;-1;0;1;0;1;1;1;2;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;9;7;5;30000;0;18;9;1;3;0;0;-2;0;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;7;7;30000;0;10;9;1;3;0;1;-1;0;0;0;1;0;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;4;30000;0;24;9;1;7;0;-2;0;0;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;5;30000;0;15;9;1;2;0;0;-2;1;0;1;1;1;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;9;30000;0;14;9;1;9;0;1;-1;0;1;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;16;30000;0;10;9;1;6;0;1;2;1;1;1;1;0;2;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;22;30000;0;10;9;1;2;0;-2;1;0;1;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;9;32;30000;0;12;9;1;3;0;-1;-1;0;1;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;13;4;30000;0;17;9;1;3;0;-1;0;1;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;16;9;30000;0;12;9;1;8;0;-1;-2;1;1;1;1;1;1;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;9;16;16;30000;0;2;1;8;8;0;-2;2;0;0;0;0;0;3;2;1 -NVIDIA A100 80GB PCIe [0x1f79];3;9;16;22;30000;0;8;9;1;2;0;-1;0;0;1;0;1;1;2;1;1 -NVIDIA A100 80GB PCIe [0x1f79];3;9;22;9;30000;0;15;9;1;2;0;1;-2;1;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;22;16;30000;0;10;9;1;5;0;-2;-2;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;22;22;30000;0;10;9;1;5;0;-1;-1;1;0;0;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;22;32;30000;0;15;9;1;5;0;1;-2;1;1;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;32;9;30000;0;13;9;1;4;0;1;-1;1;1;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;32;22;30000;0;12;9;1;7;0;-1;-2;1;1;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;9;32;32;30000;0;12;9;1;9;0;-1;-2;1;1;1;1;0;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;10;4;4;30000;0;12;1;2;4;0;-2;-1;0;0;0;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;10;4;10;30000;0;10;1;2;6;0;0;-2;0;0;1;1;1;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;10;10;4;30000;0;24;10;1;5;0;1;1;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;10;10;10;30000;0;3;10;1;3;0;-2;2;1;0;0;1;1;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;4;30000;0;16;1;2;5;0;1;1;0;0;0;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;5;30000;0;9;13;1;9;0;-1;0;1;0;1;1;1;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;7;30000;0;16;2;1;12;0;1;0;1;0;0;1;0;0;0;1 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;9;30000;0;9;2;1;2;0;0;-1;1;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;13;30000;0;12;13;1;12;0;0;-2;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;17;30000;0;10;13;1;1;0;-1;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;4;32;30000;0;15;13;1;2;0;-1;2;1;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;4;30000;0;9;1;3;13;0;-1;2;1;1;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;5;30000;0;19;3;1;12;0;-2;-2;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;7;30000;0;4;13;1;12;0;1;-1;1;1;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;13;30000;0;10;3;1;9;0;-1;-1;0;0;1;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;17;30000;0;14;2;2;5;0;-1;0;0;1;0;1;0;0;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;5;32;30000;0;40;2;2;7;0;-1;0;0;1;0;1;0;0;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;13;7;4;30000;0;14;13;1;10;0;1;-2;0;0;1;1;0;1;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;7;5;30000;0;18;13;1;4;0;-1;0;1;1;1;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;7;7;30000;0;17;13;1;3;0;-2;1;1;1;1;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;7;13;30000;0;10;1;4;4;0;-1;-2;1;0;1;1;0;3;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;9;4;30000;0;18;13;1;12;0;-1;0;1;0;1;1;1;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;4;30000;0;18;13;1;12;0;0;-2;1;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;5;30000;0;24;13;1;3;0;0;0;1;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;7;30000;0;20;13;1;8;0;0;0;1;0;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;13;30000;0;9;13;1;4;0;-2;1;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;17;30000;0;7;13;1;12;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;13;32;30000;0;9;13;1;13;0;0;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;17;4;30000;0;18;13;1;11;0;-2;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;17;5;30000;0;19;13;1;13;0;-1;-1;1;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;17;13;30000;0;15;13;1;9;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;17;17;30000;0;15;13;1;5;0;1;-2;0;0;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;17;32;30000;0;26;13;1;11;0;-2;0;1;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;32;4;30000;0;26;13;1;8;0;-2;-1;1;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;32;5;30000;0;18;13;1;4;0;-1;0;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;32;13;30000;0;20;13;1;13;0;1;-1;0;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;32;17;30000;0;26;13;1;9;0;-1;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;13;32;32;30000;0;15;13;1;9;0;-2;-2;0;0;0;1;0;2;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;15;4;4;30000;0;9;2;1;3;0;1;0;1;0;0;1;1;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;15;15;15;30000;0;15;15;1;2;0;-1;0;1;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;16;9;9;30000;0;10;16;1;8;0;0;0;1;1;1;1;0;2;2;2 -NVIDIA A100 80GB PCIe [0x1f79];3;16;9;16;30000;0;10;16;1;4;0;0;0;0;0;0;1;0;2;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;16;9;22;30000;0;20;16;1;7;0;0;-1;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;16;16;9;30000;0;15;16;1;2;0;0;0;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;16;16;16;30000;0;12;16;1;2;0;-1;2;1;0;0;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;16;16;22;30000;0;11;16;1;14;0;1;-1;1;1;0;1;1;1;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;16;22;9;30000;0;13;16;1;14;0;1;0;1;0;0;1;1;2;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;16;22;16;30000;0;23;16;1;3;0;-2;-2;1;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;16;22;22;30000;0;31;16;1;7;0;-1;-1;1;0;1;1;1;2;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;17;4;4;30000;0;10;17;1;15;0;-2;0;1;0;0;1;0;0;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;17;4;5;30000;0;9;2;2;9;0;-1;2;1;1;0;1;0;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;4;13;30000;0;9;3;1;15;0;-2;2;0;1;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;4;17;30000;0;10;17;1;3;0;1;1;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;4;32;30000;0;7;17;1;1;0;1;-2;1;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;5;4;30000;0;14;3;1;3;0;0;-2;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;5;5;30000;0;24;17;1;11;0;-1;0;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;5;13;30000;0;10;1;5;13;0;-1;-2;0;1;1;1;1;3;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;5;17;30000;0;10;17;1;17;0;-1;0;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;5;32;30000;0;4;17;1;17;0;-2;-2;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;13;4;30000;0;19;9;1;5;0;0;2;0;0;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;13;5;30000;0;14;17;1;16;0;-2;-2;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;13;13;30000;0;12;17;1;17;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;13;17;30000;0;8;17;1;1;0;-2;-2;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;13;32;30000;0;26;17;1;4;0;-1;-2;0;0;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;17;4;30000;0;24;17;1;14;0;0;-2;0;1;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;17;5;30000;0;18;17;1;15;0;0;-1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;17;13;30000;0;15;17;1;9;0;0;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;17;17;30000;0;24;17;1;17;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;17;32;30000;0;7;17;1;16;0;0;-1;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;32;4;30000;0;18;17;1;6;0;-2;-2;1;1;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;32;5;30000;0;18;17;1;17;0;-1;-2;1;1;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;32;13;30000;0;20;17;1;10;0;-1;0;1;0;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;32;17;30000;0;20;17;1;14;0;1;0;0;0;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;17;32;32;30000;0;24;17;1;17;0;-2;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;20;20;20;30000;0;24;20;1;17;0;1;-1;0;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;9;9;30000;0;18;22;1;11;0;1;2;0;1;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;9;16;30000;0;18;22;1;6;0;-1;2;1;1;1;1;0;2;2;2 -NVIDIA A100 80GB PCIe [0x1f79];3;22;9;22;30000;0;7;22;1;3;0;-1;-2;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;9;32;30000;0;1;22;1;14;0;-2;-2;1;1;0;1;0;3;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;16;9;30000;0;13;22;1;10;0;1;0;0;1;1;1;1;2;1;2 -NVIDIA A100 80GB PCIe [0x1f79];3;22;16;16;30000;0;7;22;1;3;0;1;2;1;1;0;1;0;2;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;22;16;22;30000;0;24;22;1;9;0;1;0;1;1;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;22;9;30000;0;24;22;1;5;0;0;0;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;22;16;30000;0;15;22;1;15;0;-1;0;1;0;0;1;1;2;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;22;22;22;30000;0;24;22;1;22;0;0;-2;1;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;22;32;30000;0;24;22;1;13;0;0;-2;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;32;9;30000;0;15;22;1;9;0;-1;1;1;1;0;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;32;22;30000;0;24;22;1;19;0;0;-2;1;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;22;32;32;30000;0;24;22;1;6;0;-2;0;0;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;23;23;23;30000;0;24;23;1;13;0;-1;-2;1;0;1;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;24;24;24;30000;0;26;24;1;3;0;1;-2;1;0;0;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;25;4;4;30000;0;19;25;1;10;0;1;1;0;0;1;1;0;2;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;25;4;5;30000;0;1;25;1;15;0;0;1;0;1;0;0;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;25;5;4;30000;0;5;25;1;14;0;-2;0;0;1;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;25;25;25;30000;0;24;25;1;15;0;1;-2;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;26;4;4;30000;0;18;26;1;3;0;0;-2;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;28;4;4;30000;0;18;28;1;2;0;0;1;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;28;28;28;30000;0;24;28;1;5;0;1;-2;1;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;30;30;30;30000;0;41;30;1;7;0;1;0;1;1;1;1;1;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;32;4;4;30000;0;19;2;2;32;0;-1;-1;0;1;0;1;0;0;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;4;5;30000;0;10;1;4;26;0;1;0;0;0;0;1;1;3;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;4;13;30000;0;9;32;1;5;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;4;17;30000;0;13;32;1;22;0;-2;0;1;0;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;4;32;30000;0;24;4;1;6;0;-2;1;1;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;5;4;30000;0;34;2;2;13;0;0;0;1;1;1;1;0;0;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;5;5;30000;0;20;1;5;14;0;1;0;1;1;1;1;0;3;0;2 -NVIDIA A100 80GB PCIe [0x1f79];3;32;5;13;30000;0;10;1;5;19;0;-2;2;0;0;1;1;1;0;2;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;5;17;30000;0;20;32;1;20;0;-1;1;0;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;5;32;30000;0;30;32;1;7;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;9;9;30000;0;24;3;5;26;0;-1;0;0;1;0;1;1;3;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;32;9;22;30000;0;25;3;6;23;0;-2;0;0;0;1;1;1;3;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;9;32;30000;0;11;5;1;4;0;0;-1;1;1;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;13;4;30000;0;18;32;1;30;0;0;-1;1;0;0;1;1;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;13;5;30000;0;13;1;13;32;0;0;1;0;1;0;1;1;0;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;13;13;30000;0;6;1;7;31;0;-1;2;1;0;1;1;0;3;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;13;17;30000;0;8;32;1;25;0;-2;0;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;13;32;30000;0;35;32;1;10;0;-1;-2;1;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;17;4;30000;0;24;32;1;13;0;1;1;0;0;1;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;17;5;30000;0;18;32;1;10;0;-1;-2;1;0;0;1;1;2;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;17;13;30000;0;25;32;1;27;0;-2;0;1;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;17;17;30000;0;25;32;1;11;0;0;0;0;0;0;1;1;2;3;2 -NVIDIA A100 80GB PCIe [0x1f79];3;32;17;32;30000;0;8;32;1;32;0;0;0;0;0;0;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;22;9;30000;0;28;32;1;11;0;-1;1;1;1;0;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;22;22;30000;0;18;32;1;27;0;1;-2;1;0;1;1;1;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;22;32;30000;0;14;32;1;1;0;0;2;1;1;0;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;4;30000;0;38;32;1;17;0;1;0;1;0;1;1;0;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;5;30000;0;26;32;1;22;0;1;-2;1;0;1;1;0;1;0;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;9;30000;0;41;32;1;2;0;0;0;1;0;1;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;13;30000;0;40;32;1;3;0;0;-1;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;17;30000;0;24;32;1;31;0;-2;0;1;0;0;1;0;1;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;22;30000;0;15;32;1;5;0;0;0;1;1;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;32;32;32;30000;0;40;32;1;28;0;-2;-2;1;0;1;1;1;2;3;0 -NVIDIA A100 80GB PCIe [0x1f79];3;35;35;35;30000;0;16;35;1;35;0;-1;-1;0;0;0;1;0;1;3;1 -NVIDIA A100 80GB PCIe [0x1f79];3;36;36;36;30000;0;8;36;1;36;0;0;0;0;0;1;0;0;1;1;0 -NVIDIA A100 80GB PCIe [0x1f79];3;40;40;40;30000;0;8;40;1;40;0;0;0;0;0;0;1;0;2;3;0 +NVIDIA A100 80GB PCIe [0x1f79];3;2;2;2;30000;0;9;2;1;2;0;1;-1;0;0;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;3;3;3;30000;0;26;3;1;3;0;-2;-2;1;1;0;1;1;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;4;30000;0;9;1;1;2;0;0;0;0;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;5;30000;0;6;1;1;4;0;1;-1;1;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;7;30000;0;10;4;1;2;0;1;-1;0;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;9;30000;0;9;4;1;1;0;-1;0;1;0;0;1;0;2;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;10;30000;0;6;4;1;4;0;0;-1;1;1;1;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;13;30000;0;5;1;1;1;0;0;-1;1;0;0;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;15;30000;0;14;4;1;2;0;-2;-1;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;17;30000;0;5;4;1;4;0;-2;-1;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;25;30000;0;14;4;1;2;0;0;1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;26;30000;0;14;4;1;3;0;-2;-1;1;0;1;1;1;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;28;30000;0;6;4;1;2;0;-1;-1;0;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;4;32;30000;0;3;4;1;4;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;4;30000;0;12;4;1;2;0;1;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;5;30000;0;9;1;1;1;0;-1;1;1;1;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;7;30000;0;4;4;1;2;0;1;0;0;1;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;9;30000;0;6;4;1;4;0;1;0;0;1;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;13;30000;0;4;4;1;4;0;-1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;17;30000;0;5;4;1;2;0;1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;25;30000;0;6;4;1;3;0;-1;-1;0;0;1;0;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;5;32;30000;0;2;1;1;2;0;-2;-2;0;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;7;4;30000;0;10;4;1;3;0;0;0;1;0;1;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;7;5;30000;0;11;4;1;1;0;1;-2;1;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;7;7;30000;0;10;4;1;1;0;-1;-1;0;1;1;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;7;9;30000;0;6;4;1;3;0;-2;0;0;1;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;7;13;30000;0;4;4;1;3;0;1;-2;1;0;0;1;0;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;9;4;30000;0;15;4;1;4;0;0;-2;0;0;0;1;1;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;9;5;30000;0;10;4;1;2;0;-2;0;0;1;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;9;7;30000;0;14;4;1;4;0;0;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;9;9;30000;0;10;4;1;4;0;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;9;13;30000;0;5;4;1;4;0;0;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;10;4;30000;0;20;4;1;2;0;1;-1;0;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;10;10;30000;0;7;4;1;2;0;0;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;4;30000;0;12;2;1;3;0;1;0;0;1;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;5;30000;0;16;2;2;4;0;-2;-1;0;1;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;7;30000;0;14;4;1;1;0;2;0;0;0;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;9;30000;0;7;4;1;3;0;1;-2;1;1;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;13;30000;0;10;4;1;3;0;-2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;17;30000;0;10;4;1;2;0;-2;1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;13;32;30000;0;15;4;1;4;0;-1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;15;4;30000;0;20;4;1;1;0;0;0;0;0;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;17;4;30000;0;22;4;1;2;0;-1;-1;1;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;17;5;30000;0;12;4;1;3;0;1;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;17;13;30000;0;10;4;1;4;0;0;-2;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;17;17;30000;0;10;4;1;3;0;-1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;17;32;30000;0;15;4;1;3;0;1;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;25;4;30000;0;23;4;1;1;0;0;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;25;5;30000;0;21;4;1;2;0;0;0;0;0;1;1;0;2;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;26;4;30000;0;22;4;1;1;0;-2;0;1;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;28;4;30000;0;18;4;1;1;0;-2;0;0;1;1;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;32;4;30000;0;19;4;1;1;0;0;-2;1;0;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;32;5;30000;0;19;4;1;4;0;1;-1;0;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;32;13;30000;0;12;4;1;3;0;1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;32;17;30000;0;13;4;1;3;0;1;1;0;0;0;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;4;32;32;30000;0;25;4;1;4;0;1;-1;0;1;0;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;4;30000;0;10;1;1;2;0;0;1;0;0;1;1;0;0;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;5;30000;0;9;1;1;2;0;-2;-1;0;1;1;1;0;2;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;7;30000;0;15;1;1;1;0;-2;0;0;0;0;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;9;30000;0;12;1;1;5;0;0;-2;0;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;13;30000;0;10;1;1;2;0;0;-1;0;1;0;0;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;17;30000;0;9;1;1;2;0;1;-2;0;1;1;1;1;0;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;25;30000;0;5;5;1;4;0;1;-2;0;0;0;0;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;4;32;30000;0;2;1;1;2;0;0;1;0;0;0;1;0;2;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;4;30000;0;9;1;1;1;0;-2;-1;1;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;5;30000;0;18;5;1;2;0;-1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;7;30000;0;9;5;1;5;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;9;30000;0;25;5;1;5;0;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;13;30000;0;10;1;1;2;0;0;-1;1;0;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;17;30000;0;4;1;1;5;0;0;0;1;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;5;32;30000;0;5;5;1;2;0;-2;-1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;7;4;30000;0;9;5;1;3;0;0;0;0;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;7;5;30000;0;10;5;1;4;0;-1;-1;1;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;7;7;30000;0;14;5;1;4;0;-2;0;1;0;1;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;7;9;30000;0;16;5;1;4;0;-1;-1;1;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;7;13;30000;0;12;5;1;5;0;-1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;9;4;30000;0;12;5;1;5;0;-2;-1;0;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;9;5;30000;0;24;5;1;3;0;1;-2;0;0;1;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;9;7;30000;0;15;5;1;2;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;9;9;30000;0;12;5;1;1;0;1;0;1;1;1;1;0;0;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;4;30000;0;12;5;1;4;0;0;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;5;30000;0;14;5;1;3;0;-1;0;1;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;7;30000;0;24;5;1;2;0;1;0;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;13;30000;0;10;5;1;2;0;-1;0;0;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;17;30000;0;10;5;1;4;0;-2;-1;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;13;32;30000;0;15;5;1;4;0;-2;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;17;4;30000;0;22;5;1;5;0;-1;0;0;0;0;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;17;5;30000;0;12;5;1;4;0;-2;0;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;17;13;30000;0;10;5;1;3;0;0;-1;1;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;17;17;30000;0;10;5;1;5;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;17;32;30000;0;15;5;1;4;0;1;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;25;4;30000;0;29;5;1;1;0;1;-2;0;0;0;1;1;0;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;32;4;30000;0;24;5;1;5;0;-2;-1;1;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;32;5;30000;0;20;5;1;5;0;-1;-1;0;0;1;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;32;13;30000;0;13;5;1;5;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;32;17;30000;0;10;5;1;2;0;1;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;5;32;32;30000;0;15;5;1;2;0;-1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;6;6;30000;0;18;6;1;3;0;0;-2;0;1;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;6;7;30000;0;19;6;1;6;0;-2;-1;1;1;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;6;8;30000;0;10;6;1;2;0;1;1;0;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;7;6;30000;0;28;6;1;5;0;-2;0;1;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;7;7;30000;0;11;6;1;2;0;1;-1;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;7;8;30000;0;14;6;1;4;0;-1;0;1;0;0;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;8;6;30000;0;14;6;1;3;0;0;0;0;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;8;7;30000;0;12;6;1;4;0;-1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;6;8;8;30000;0;26;6;1;4;0;0;-1;0;1;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;4;4;30000;0;9;1;1;6;0;-1;0;1;1;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;4;5;30000;0;10;1;1;2;0;-2;-2;0;0;1;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;4;7;30000;0;9;1;1;5;0;-1;-1;0;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;4;9;30000;0;6;1;1;5;0;0;-2;0;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;4;13;30000;0;19;7;1;2;0;-1;-2;0;1;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;5;4;30000;0;14;7;1;1;0;0;-2;1;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;5;5;30000;0;7;7;1;2;0;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;5;7;30000;0;14;7;1;2;0;-2;0;0;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;5;9;30000;0;10;7;1;4;0;1;0;0;1;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;5;13;30000;0;10;1;2;3;0;1;-2;1;0;1;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;6;6;30000;0;14;7;1;7;0;0;-1;0;0;0;1;1;0;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;6;7;30000;0;14;2;1;3;0;1;-2;1;0;1;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;6;8;30000;0;20;7;1;2;0;0;-1;0;1;1;1;1;0;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;4;30000;0;18;7;1;3;0;-1;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;5;30000;0;13;7;1;6;0;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;6;30000;0;35;7;1;3;0;0;1;1;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;7;30000;0;18;7;1;2;0;2;0;0;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;8;30000;0;21;7;1;3;0;-2;1;0;0;0;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;9;30000;0;7;7;1;4;0;-2;-1;0;0;1;1;0;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;7;13;30000;0;20;7;1;2;0;1;0;1;0;1;1;1;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;8;6;30000;0;19;7;1;3;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;8;7;30000;0;12;7;1;4;0;0;-2;0;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;8;8;30000;0;10;7;1;6;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;9;4;30000;0;16;7;1;2;0;-2;0;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;9;5;30000;0;13;7;1;3;0;0;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;9;7;30000;0;12;7;1;4;0;0;0;0;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;13;4;30000;0;21;7;1;6;0;0;-2;0;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;13;5;30000;0;9;7;1;4;0;1;0;1;0;1;1;1;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;13;7;30000;0;22;7;1;2;0;0;0;1;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;7;13;13;30000;0;5;1;2;3;0;0;-2;1;1;1;1;0;2;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;6;6;30000;0;10;1;2;7;0;0;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;6;7;30000;0;13;8;1;8;0;-2;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;6;8;30000;0;18;8;1;8;0;1;1;0;0;0;1;0;0;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;7;6;30000;0;15;8;1;2;0;0;-1;0;1;0;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;7;7;30000;0;10;2;1;2;0;-2;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;7;8;30000;0;12;2;1;6;0;-1;-1;1;0;1;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;8;6;30000;0;18;8;1;2;0;-2;-1;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;8;7;30000;0;14;8;1;3;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;8;8;8;30000;0;12;8;1;5;0;0;-1;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;4;4;30000;0;17;9;1;3;0;-1;-2;0;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;4;5;30000;0;11;9;1;1;0;-2;-2;1;0;0;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;4;7;30000;0;10;2;1;3;0;1;1;0;0;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;4;9;30000;0;10;1;2;9;0;-2;-1;0;1;1;0;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;4;13;30000;0;10;9;1;2;0;1;0;0;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;5;4;30000;0;17;9;1;3;0;-2;-1;1;0;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;5;5;30000;0;12;2;1;2;0;-1;0;1;0;1;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;5;7;30000;0;18;9;1;4;0;-2;-1;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;5;9;30000;0;14;2;1;3;0;0;-2;0;0;0;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;7;4;30000;0;18;9;1;3;0;-1;0;1;0;1;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;7;5;30000;0;18;9;1;3;0;0;-2;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;7;7;30000;0;10;9;1;3;0;1;-1;0;0;0;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;4;30000;0;24;9;1;7;0;-2;0;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;5;30000;0;15;9;1;2;0;0;-2;1;0;1;1;1;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;9;30000;0;14;9;1;9;0;1;-1;0;1;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;16;30000;0;10;9;1;6;0;1;-1;1;1;1;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;22;30000;0;10;9;1;2;0;-2;1;0;1;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;9;32;30000;0;12;9;1;3;0;-1;-1;0;1;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;13;4;30000;0;17;9;1;3;0;-1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;16;9;30000;0;12;9;1;8;0;-1;-2;1;1;1;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;16;16;30000;0;2;1;8;8;0;-2;-1;0;0;0;0;0;2;1;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;16;22;30000;0;8;9;1;2;0;-1;0;0;1;0;1;1;1;1;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;22;9;30000;0;15;9;1;2;0;1;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;22;16;30000;0;10;9;1;5;0;-2;-2;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;22;22;30000;0;10;9;1;5;0;-1;-1;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;22;32;30000;0;15;9;1;5;0;1;-2;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;32;9;30000;0;13;9;1;4;0;1;-1;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;32;22;30000;0;12;9;1;7;0;-1;-2;1;1;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;9;32;32;30000;0;12;9;1;9;0;-1;-2;1;1;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;10;4;4;30000;0;12;1;2;4;0;-2;-1;0;0;0;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;10;4;10;30000;0;10;1;2;6;0;0;-2;0;0;1;1;1;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;10;10;4;30000;0;24;10;1;5;0;1;1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;10;10;10;30000;0;3;10;1;3;0;-2;-1;1;0;0;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;4;30000;0;16;1;2;5;0;1;1;0;0;0;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;5;30000;0;9;13;1;9;0;-1;0;1;0;1;1;1;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;7;30000;0;16;2;1;12;0;1;0;1;0;0;1;0;0;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;9;30000;0;9;2;1;2;0;0;-1;1;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;13;30000;0;12;13;1;12;0;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;17;30000;0;10;13;1;1;0;-1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;4;32;30000;0;15;13;1;2;0;-1;-1;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;4;30000;0;9;1;3;13;0;-1;-1;1;1;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;5;30000;0;19;3;1;12;0;-2;-2;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;7;30000;0;4;13;1;12;0;1;-1;1;1;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;13;30000;0;10;3;1;9;0;-1;-1;0;0;1;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;17;30000;0;14;2;2;5;0;-1;0;0;1;0;1;0;0;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;5;32;30000;0;40;2;2;7;0;-1;0;0;1;0;1;0;0;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;7;4;30000;0;14;13;1;10;0;1;-2;0;0;1;1;0;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;7;5;30000;0;18;13;1;4;0;-1;0;1;1;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;7;7;30000;0;17;13;1;3;0;-2;1;1;1;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;7;13;30000;0;10;1;4;4;0;-1;-2;1;0;1;1;0;2;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;9;4;30000;0;18;13;1;12;0;-1;0;1;0;1;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;4;30000;0;18;13;1;12;0;0;-2;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;5;30000;0;24;13;1;3;0;0;0;1;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;7;30000;0;20;13;1;8;0;0;0;1;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;13;30000;0;9;13;1;4;0;-2;1;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;17;30000;0;7;13;1;12;0;1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;13;32;30000;0;9;13;1;13;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;17;4;30000;0;18;13;1;11;0;-2;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;17;5;30000;0;19;13;1;13;0;-1;-1;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;17;13;30000;0;15;13;1;9;0;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;17;17;30000;0;15;13;1;5;0;1;-2;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;17;32;30000;0;26;13;1;11;0;-2;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;32;4;30000;0;26;13;1;8;0;-2;-1;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;32;5;30000;0;18;13;1;4;0;-1;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;32;13;30000;0;20;13;1;13;0;1;-1;0;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;32;17;30000;0;26;13;1;9;0;-1;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;13;32;32;30000;0;15;13;1;9;0;-2;-2;0;0;0;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;15;4;4;30000;0;9;2;1;3;0;1;0;1;0;0;1;1;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;15;15;15;30000;0;15;15;1;2;0;-1;0;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;9;9;30000;0;10;16;1;8;0;0;0;1;1;1;1;0;1;1;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;9;16;30000;0;10;16;1;4;0;0;0;0;0;0;1;0;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;9;22;30000;0;20;16;1;7;0;0;-1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;16;9;30000;0;15;16;1;2;0;0;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;16;16;30000;0;12;16;1;2;0;-1;-1;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;16;22;30000;0;11;16;1;14;0;1;-1;1;1;0;1;1;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;22;9;30000;0;13;16;1;14;0;1;0;1;0;0;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;22;16;30000;0;23;16;1;3;0;-2;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;16;22;22;30000;0;31;16;1;7;0;-1;-1;1;0;1;1;1;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;4;4;30000;0;10;17;1;15;0;-2;0;1;0;0;1;0;0;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;4;5;30000;0;9;2;2;9;0;-1;-1;1;1;0;1;0;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;4;13;30000;0;9;3;1;15;0;-2;-1;0;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;4;17;30000;0;10;17;1;3;0;1;1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;4;32;30000;0;7;17;1;1;0;1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;5;4;30000;0;14;3;1;3;0;0;-2;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;5;5;30000;0;24;17;1;11;0;-1;0;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;5;13;30000;0;10;1;5;13;0;-1;-2;0;1;1;1;1;2;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;5;17;30000;0;10;17;1;17;0;-1;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;5;32;30000;0;4;17;1;17;0;-2;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;13;4;30000;0;19;9;1;5;0;0;-1;0;0;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;13;5;30000;0;14;17;1;16;0;-2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;13;13;30000;0;12;17;1;17;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;13;17;30000;0;8;17;1;1;0;-2;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;13;32;30000;0;26;17;1;4;0;-1;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;17;4;30000;0;24;17;1;14;0;0;-2;0;1;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;17;5;30000;0;18;17;1;15;0;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;17;13;30000;0;15;17;1;9;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;17;17;30000;0;24;17;1;17;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;17;32;30000;0;7;17;1;16;0;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;32;4;30000;0;18;17;1;6;0;-2;-2;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;32;5;30000;0;18;17;1;17;0;-1;-2;1;1;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;32;13;30000;0;20;17;1;10;0;-1;0;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;32;17;30000;0;20;17;1;14;0;1;0;0;0;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;17;32;32;30000;0;24;17;1;17;0;-2;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;20;20;20;30000;0;24;20;1;17;0;1;-1;0;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;9;9;30000;0;18;22;1;11;0;1;-1;0;1;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;9;16;30000;0;18;22;1;6;0;-1;-1;1;1;1;1;0;1;1;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;9;22;30000;0;7;22;1;3;0;-1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;9;32;30000;0;1;22;1;14;0;-2;-2;1;1;0;1;0;2;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;16;9;30000;0;13;22;1;10;0;1;0;0;1;1;1;1;1;1;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;16;16;30000;0;7;22;1;3;0;1;-1;1;1;0;1;0;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;16;22;30000;0;24;22;1;9;0;1;0;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;22;9;30000;0;24;22;1;5;0;0;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;22;16;30000;0;15;22;1;15;0;-1;0;1;0;0;1;1;1;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;22;22;30000;0;24;22;1;22;0;0;-2;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;22;32;30000;0;24;22;1;13;0;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;32;9;30000;0;15;22;1;9;0;-1;1;1;1;0;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;32;22;30000;0;24;22;1;19;0;0;-2;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;22;32;32;30000;0;24;22;1;6;0;-2;0;0;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;23;23;23;30000;0;24;23;1;13;0;-1;-2;1;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;24;24;24;30000;0;26;24;1;3;0;1;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;25;4;4;30000;0;19;25;1;10;0;1;1;0;0;1;1;0;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;25;4;5;30000;0;1;25;1;15;0;0;1;0;1;0;0;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;25;5;4;30000;0;5;25;1;14;0;-2;0;0;1;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;25;25;25;30000;0;24;25;1;15;0;1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;26;4;4;30000;0;18;26;1;3;0;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;28;4;4;30000;0;18;28;1;2;0;0;1;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;28;28;28;30000;0;24;28;1;5;0;1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;30;30;30;30000;0;41;30;1;7;0;1;0;1;1;1;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;4;4;30000;0;19;2;2;32;0;-1;-1;0;1;0;1;0;0;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;4;5;30000;0;10;1;4;26;0;1;0;0;0;0;1;1;2;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;4;13;30000;0;9;32;1;5;0;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;4;17;30000;0;13;32;1;22;0;-2;0;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;4;32;30000;0;24;4;1;6;0;-2;1;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;5;4;30000;0;34;2;2;13;0;0;0;1;1;1;1;0;0;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;5;5;30000;0;20;1;5;14;0;1;0;1;1;1;1;0;2;0;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;5;13;30000;0;10;1;5;19;0;-2;-1;0;0;1;1;1;0;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;5;17;30000;0;20;32;1;20;0;-1;1;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;5;32;30000;0;30;32;1;7;0;1;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;9;9;30000;0;24;3;5;26;0;-1;0;0;1;0;1;1;2;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;9;22;30000;0;25;3;6;23;0;-2;0;0;0;1;1;1;2;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;9;32;30000;0;11;5;1;4;0;0;-1;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;13;4;30000;0;18;32;1;30;0;0;-1;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;13;5;30000;0;13;1;13;32;0;0;1;0;1;0;1;1;0;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;13;13;30000;0;6;1;7;31;0;-1;-1;1;0;1;1;0;2;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;13;17;30000;0;8;32;1;25;0;-2;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;13;32;30000;0;35;32;1;10;0;-1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;17;4;30000;0;24;32;1;13;0;1;1;0;0;1;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;17;5;30000;0;18;32;1;10;0;-1;-2;1;0;0;1;1;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;17;13;30000;0;25;32;1;27;0;-2;0;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;17;17;30000;0;25;32;1;11;0;0;0;0;0;0;1;1;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;17;32;30000;0;8;32;1;32;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;22;9;30000;0;28;32;1;11;0;-1;1;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;22;22;30000;0;18;32;1;27;0;1;-2;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;22;32;30000;0;14;32;1;1;0;0;-1;1;1;0;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;4;30000;0;38;32;1;17;0;1;0;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;5;30000;0;26;32;1;22;0;1;-2;1;0;1;1;0;1;0;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;9;30000;0;41;32;1;2;0;0;0;1;0;1;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;13;30000;0;40;32;1;3;0;0;-1;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;17;30000;0;24;32;1;31;0;-2;0;1;0;0;1;0;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;22;30000;0;15;32;1;5;0;0;0;1;1;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;32;32;32;30000;0;40;32;1;28;0;-2;-2;1;0;1;1;1;1;2;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;35;35;35;30000;0;16;35;1;35;0;-1;-1;0;0;0;1;0;1;2;1;0 +NVIDIA A100 80GB PCIe [0x1f79];3;36;36;36;30000;0;8;36;1;36;0;0;0;0;0;1;0;0;1;1;0;0 +NVIDIA A100 80GB PCIe [0x1f79];3;40;40;40;30000;0;8;40;1;40;0;0;0;0;0;0;1;0;1;2;0;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_H100.csv b/src/acc/opencl/smm/params/tune_multiply_H100.csv index b4164dfdc31..7bd1df8c010 100644 --- a/src/acc/opencl/smm/params/tune_multiply_H100.csv +++ b/src/acc/opencl/smm/params/tune_multiply_H100.csv @@ -1,296 +1,296 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -NVIDIA H100 PCIe [0xa32d];3;2;2;2;30000;0;9;2;1;2;0;1;0;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;3;3;3;30000;0;13;3;1;1;0;-1;-1;1;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;4;30000;0;5;4;1;4;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;5;30000;0;11;4;1;3;0;-1;-1;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;7;30000;0;6;4;1;2;0;-1;-1;0;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;9;30000;0;6;4;1;3;0;1;-2;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;10;30000;0;11;4;1;4;0;1;-2;0;0;0;1;1;3;0;2 -NVIDIA H100 PCIe [0xa32d];3;4;4;13;30000;0;6;4;1;4;0;0;0;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;15;30000;0;11;4;1;4;0;-2;0;0;0;0;0;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;17;30000;0;6;4;1;4;0;0;0;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;25;30000;0;11;4;1;2;0;1;2;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;26;30000;0;6;4;1;2;0;-1;-1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;28;30000;0;22;4;1;4;0;0;0;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;4;32;30000;0;3;4;1;4;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;4;30000;0;15;4;1;4;0;0;-1;0;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;5;30000;0;12;4;1;1;0;0;-1;0;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;7;30000;0;11;4;1;1;0;1;-1;0;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;9;30000;0;12;4;1;2;0;1;2;1;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;13;30000;0;6;4;1;4;0;0;-1;1;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;17;30000;0;6;4;1;3;0;1;0;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;25;30000;0;6;4;1;4;0;-2;-2;0;0;0;0;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;5;32;30000;0;3;4;1;3;0;-1;-1;1;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;7;4;30000;0;10;4;1;2;0;0;-1;1;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;7;5;30000;0;14;4;1;1;0;0;0;1;0;1;1;0;0;0;2 -NVIDIA H100 PCIe [0xa32d];3;4;7;7;30000;0;6;4;1;4;0;0;0;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;7;9;30000;0;13;4;1;2;0;1;1;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;7;13;30000;0;11;4;1;4;0;-1;-1;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;9;4;30000;0;12;4;1;1;0;1;-1;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;9;5;30000;0;18;4;1;1;0;-2;0;1;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;9;7;30000;0;11;4;1;3;0;1;-1;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;9;9;30000;0;12;4;1;3;0;1;-1;0;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;9;13;30000;0;6;4;1;2;0;-2;0;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;10;4;30000;0;25;4;1;1;0;0;-2;0;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;10;10;30000;0;10;4;1;3;0;1;-2;1;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;4;30000;0;18;4;1;3;0;0;-2;1;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;5;30000;0;17;4;1;4;0;1;-2;1;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;7;30000;0;14;4;1;1;0;2;-1;1;0;0;1;1;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;9;30000;0;17;4;1;3;0;-2;-1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;13;30000;0;5;4;1;4;0;-2;-2;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;17;30000;0;6;4;1;3;0;1;0;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;13;32;30000;0;3;4;1;3;0;0;-2;0;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;15;4;30000;0;16;4;1;4;0;-2;-2;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;17;4;30000;0;19;4;1;2;0;0;1;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;17;5;30000;0;9;4;1;4;0;-2;-2;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;17;13;30000;0;6;4;1;4;0;0;-1;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;17;17;30000;0;10;4;1;3;0;0;-1;0;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;17;32;30000;0;15;4;1;3;0;-2;0;0;0;0;1;1;2;3;2 -NVIDIA H100 PCIe [0xa32d];3;4;25;4;30000;0;17;4;1;3;0;1;-1;0;0;1;1;1;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;4;25;5;30000;0;17;4;1;2;0;1;-2;0;0;0;1;0;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;4;26;4;30000;0;20;4;1;1;0;0;-1;1;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;28;4;30000;0;20;4;1;4;0;-1;0;1;0;1;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;32;4;30000;0;19;4;1;1;0;0;-2;1;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;32;5;30000;0;15;4;1;1;0;1;-2;0;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;32;13;30000;0;13;4;1;4;0;1;0;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;4;32;17;30000;0;13;4;1;3;0;0;2;0;0;0;1;1;2;3;2 -NVIDIA H100 PCIe [0xa32d];3;4;32;32;30000;0;15;4;1;4;0;0;1;0;0;0;1;0;2;3;2 -NVIDIA H100 PCIe [0xa32d];3;5;4;4;30000;0;12;5;1;5;0;-2;-1;1;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;5;30000;0;11;5;1;3;0;0;0;0;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;7;30000;0;12;5;1;1;0;0;-2;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;9;30000;0;13;5;1;5;0;-2;-2;0;0;0;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;13;30000;0;1;5;1;3;0;-2;-2;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;17;30000;0;1;5;1;3;0;-1;1;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;25;30000;0;1;5;1;5;0;0;-1;0;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;4;32;30000;0;1;5;1;4;0;-2;1;0;0;1;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;4;30000;0;14;5;1;3;0;1;-1;1;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;5;30000;0;14;5;1;2;0;0;-1;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;7;30000;0;6;5;1;5;0;0;0;1;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;9;30000;0;10;5;1;5;0;-2;0;0;0;0;1;1;2;3;1 -NVIDIA H100 PCIe [0xa32d];3;5;5;13;30000;0;6;5;1;4;0;1;-2;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;17;30000;0;6;5;1;3;0;-2;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;5;32;30000;0;6;5;1;5;0;-2;-1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;7;4;30000;0;16;5;1;3;0;1;0;1;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;7;5;30000;0;10;5;1;4;0;-2;-2;0;0;0;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;7;7;30000;0;13;5;1;4;0;1;-1;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;7;9;30000;0;12;5;1;4;0;-2;0;0;0;0;1;0;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;5;7;13;30000;0;6;5;1;5;0;-2;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;9;4;30000;0;15;5;1;4;0;0;0;1;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;9;5;30000;0;11;5;1;5;0;-1;-2;1;0;0;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;9;7;30000;0;15;5;1;1;0;1;-1;0;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;9;9;30000;0;10;5;1;2;0;0;0;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;4;30000;0;14;5;1;2;0;-1;0;0;0;0;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;5;30000;0;15;5;1;3;0;0;-1;1;0;1;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;7;30000;0;11;5;1;3;0;1;0;1;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;13;30000;0;6;5;1;2;0;-2;0;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;17;30000;0;6;5;1;5;0;-2;0;0;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;13;32;30000;0;3;5;1;3;0;-2;0;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;17;4;30000;0;17;5;1;4;0;0;-2;1;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;17;5;30000;0;16;5;1;4;0;-2;0;0;0;1;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;17;13;30000;0;6;5;1;2;0;0;2;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;17;17;30000;0;6;5;1;4;0;-1;0;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;17;32;30000;0;6;5;1;4;0;1;-2;0;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;25;4;30000;0;15;5;1;3;0;0;-1;1;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;5;32;4;30000;0;22;5;1;5;0;-2;-1;1;0;1;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;32;5;30000;0;16;5;1;4;0;-1;0;1;0;1;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;32;13;30000;0;11;5;1;4;0;1;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;32;17;30000;0;13;5;1;3;0;1;-1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;5;32;32;30000;0;15;5;1;5;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;6;6;30000;0;7;6;1;6;0;0;-2;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;6;7;30000;0;11;6;1;4;0;1;-2;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;6;8;30000;0;18;6;1;2;0;-1;1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;7;6;30000;0;14;6;1;6;0;-2;0;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;6;7;7;30000;0;17;6;1;2;0;1;1;1;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;6;7;8;30000;0;6;6;1;6;0;-1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;8;6;30000;0;14;6;1;2;0;0;0;0;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;6;8;7;30000;0;14;6;1;3;0;0;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;6;8;8;30000;0;5;6;1;2;0;0;-2;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;4;4;30000;0;12;7;1;5;0;0;0;0;0;0;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;4;5;30000;0;11;7;1;5;0;-2;-1;0;0;1;1;1;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;4;7;30000;0;11;7;1;4;0;-2;-2;0;0;0;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;4;9;30000;0;14;7;1;1;0;1;0;0;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;4;13;30000;0;1;7;1;4;0;-1;0;1;0;1;0;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;5;4;30000;0;15;7;1;3;0;1;2;1;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;5;5;30000;0;12;7;1;2;0;1;-2;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;5;7;30000;0;14;7;1;2;0;-2;-2;0;0;0;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;5;9;30000;0;14;7;1;4;0;1;-1;0;0;1;1;0;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;5;13;30000;0;12;7;1;1;0;1;-2;0;0;1;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;6;6;30000;0;11;7;1;6;0;0;2;0;0;1;1;1;0;0;1 -NVIDIA H100 PCIe [0xa32d];3;7;6;7;30000;0;11;7;1;2;0;1;-1;1;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;6;8;30000;0;11;7;1;3;0;0;0;0;0;0;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;4;30000;0;18;7;1;2;0;1;-1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;5;30000;0;11;7;1;7;0;1;0;1;0;1;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;6;30000;0;17;7;1;2;0;-2;1;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;7;30000;0;14;7;1;4;0;0;0;0;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;8;30000;0;24;7;1;2;0;-1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;9;30000;0;6;7;1;2;0;-1;-1;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;7;13;30000;0;6;7;1;2;0;-1;2;0;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;8;6;30000;0;10;7;1;2;0;-2;1;0;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;8;7;30000;0;6;7;1;3;0;-1;-2;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;8;8;30000;0;7;7;1;2;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;9;4;30000;0;16;7;1;2;0;-1;-1;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;9;5;30000;0;12;7;1;2;0;0;0;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;9;7;30000;0;9;7;1;6;0;-1;-1;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;13;4;30000;0;14;7;1;6;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;7;13;5;30000;0;11;7;1;2;0;1;1;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;13;7;30000;0;14;7;1;3;0;-1;-2;1;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;7;13;13;30000;0;14;7;1;5;0;-2;-1;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;8;6;6;30000;0;14;8;1;6;0;1;-1;0;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;8;6;7;30000;0;14;8;1;7;0;-1;-2;0;0;0;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;8;6;8;30000;0;11;8;1;4;0;0;-1;0;0;0;1;1;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;8;7;6;30000;0;14;8;1;4;0;1;-1;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;8;7;7;30000;0;14;8;1;1;0;-2;0;0;0;0;1;0;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;8;7;8;30000;0;16;8;1;4;0;-1;0;0;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;8;8;6;30000;0;18;8;1;6;0;0;-1;1;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;8;8;7;30000;0;17;8;1;3;0;-1;1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;8;8;8;30000;0;14;8;1;3;0;0;-2;0;0;1;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;4;4;30000;0;11;9;1;3;0;-1;1;1;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;4;5;30000;0;11;9;1;4;0;1;1;1;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;4;7;30000;0;11;9;1;3;0;1;-2;1;0;0;1;1;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;4;9;30000;0;1;9;1;9;0;-2;-2;0;0;0;0;1;3;0;1 -NVIDIA H100 PCIe [0xa32d];3;9;4;13;30000;0;1;9;1;6;0;-2;0;0;0;0;0;0;3;0;1 -NVIDIA H100 PCIe [0xa32d];3;9;5;4;30000;0;13;9;1;2;0;-2;1;0;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;5;5;30000;0;14;9;1;2;0;0;2;1;0;1;1;0;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;5;7;30000;0;17;9;1;2;0;-1;-2;0;0;1;1;1;0;0;1 -NVIDIA H100 PCIe [0xa32d];3;9;5;9;30000;0;15;9;1;2;0;1;-2;0;0;0;1;1;0;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;7;4;30000;0;14;9;1;3;0;0;-2;1;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;7;5;30000;0;12;9;1;5;0;0;-2;0;0;0;1;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;7;7;30000;0;10;9;1;3;0;0;0;0;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;4;30000;0;18;9;1;9;0;-1;-1;0;0;0;1;1;2;2;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;5;30000;0;21;9;1;4;0;-2;-1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;9;30000;0;7;9;1;3;0;-2;0;1;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;16;30000;0;6;9;1;2;0;-2;0;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;22;30000;0;11;9;1;8;0;1;-2;1;0;1;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;9;32;30000;0;22;9;1;5;0;-2;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;13;4;30000;0;14;9;1;3;0;-1;0;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;16;9;30000;0;18;9;1;6;0;0;0;0;0;0;1;1;2;0;2 -NVIDIA H100 PCIe [0xa32d];3;9;16;16;30000;0;4;9;1;4;0;-1;1;1;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;16;22;30000;0;10;9;1;8;0;1;1;1;0;1;1;1;1;0;1 -NVIDIA H100 PCIe [0xa32d];3;9;22;9;30000;0;20;9;1;4;0;1;0;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;9;22;16;30000;0;13;9;1;4;0;1;0;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;22;22;30000;0;13;9;1;5;0;-1;0;1;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;9;22;32;30000;0;24;9;1;8;0;1;-2;1;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;10;4;4;30000;0;15;10;1;5;0;-1;0;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;10;4;10;30000;0;1;10;1;3;0;-1;-2;0;0;1;0;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;10;10;4;30000;0;14;10;1;10;0;1;-1;0;0;1;1;1;2;2;0 -NVIDIA H100 PCIe [0xa32d];3;10;10;10;30000;0;18;10;1;4;0;-1;-2;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;4;4;30000;0;10;13;1;3;0;1;0;0;0;1;1;0;3;1;0 -NVIDIA H100 PCIe [0xa32d];3;13;4;5;30000;0;1;13;1;8;0;-1;2;0;0;1;0;1;3;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;4;7;30000;0;12;13;1;6;0;-1;-2;0;0;0;1;1;0;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;4;9;30000;0;1;13;1;8;0;-2;1;0;0;1;1;1;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;13;4;13;30000;0;1;13;1;11;0;0;2;1;0;1;0;1;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;4;17;30000;0;1;13;1;5;0;0;2;1;0;1;1;1;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;13;4;32;30000;0;22;13;1;2;0;0;-1;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;4;30000;0;11;13;1;13;0;1;0;1;0;1;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;5;30000;0;14;13;1;7;0;1;0;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;7;30000;0;6;13;1;12;0;0;0;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;13;30000;0;1;13;1;8;0;-1;-2;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;17;30000;0;11;13;1;4;0;-1;0;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;5;32;30000;0;17;13;1;4;0;-2;-2;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;7;4;30000;0;18;13;1;13;0;-2;-1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;7;5;30000;0;10;13;1;4;0;1;0;1;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;7;7;30000;0;14;13;1;9;0;-2;-2;1;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;7;13;30000;0;14;13;1;4;0;-2;2;0;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;9;4;30000;0;14;13;1;8;0;1;-2;0;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;4;30000;0;24;13;1;10;0;-1;-2;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;5;30000;0;20;13;1;6;0;0;-1;1;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;7;30000;0;17;13;1;3;0;1;-2;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;13;30000;0;11;13;1;5;0;-2;1;1;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;17;30000;0;17;13;1;8;0;-2;-2;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;13;32;30000;0;6;13;1;5;0;1;-2;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;17;4;30000;0;18;13;1;9;0;-2;-1;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;17;5;30000;0;17;13;1;5;0;0;2;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;13;17;13;30000;0;11;13;1;10;0;-2;0;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;17;17;30000;0;17;13;1;2;0;-2;1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;17;32;30000;0;17;13;1;12;0;1;0;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;32;4;30000;0;25;13;1;11;0;-2;-2;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;32;5;30000;0;18;13;1;10;0;1;0;1;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;32;13;30000;0;22;13;1;12;0;0;-2;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;32;17;30000;0;25;13;1;10;0;-1;-1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;13;32;32;30000;0;15;13;1;12;0;0;0;1;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;15;4;4;30000;0;9;15;1;11;0;1;-2;1;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;15;15;15;30000;0;12;15;1;7;0;-2;-2;0;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;9;9;30000;0;17;16;1;3;0;-2;1;0;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;16;9;16;30000;0;1;16;1;3;0;-1;1;1;0;1;0;0;3;0;2 -NVIDIA H100 PCIe [0xa32d];3;16;9;22;30000;0;17;16;1;6;0;0;-2;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;16;9;30000;0;17;16;1;10;0;1;-1;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;16;16;30000;0;14;16;1;4;0;-2;0;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;16;16;22;30000;0;25;16;1;5;0;-2;-1;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;22;9;30000;0;17;16;1;3;0;1;1;1;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;22;16;30000;0;9;16;1;13;0;1;-2;1;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;16;22;22;30000;0;15;16;1;16;0;0;-2;0;0;1;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;4;4;30000;0;14;17;1;13;0;-2;0;1;0;0;1;0;0;0;2 -NVIDIA H100 PCIe [0xa32d];3;17;4;5;30000;0;11;17;1;16;0;1;0;0;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;17;4;13;30000;0;1;17;1;8;0;-2;1;0;0;0;0;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;4;17;30000;0;1;17;1;9;0;1;0;1;0;0;0;1;0;3;1 -NVIDIA H100 PCIe [0xa32d];3;17;4;32;30000;0;1;17;1;3;0;-1;0;1;0;1;1;0;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;17;5;4;30000;0;14;17;1;4;0;-2;2;0;0;1;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;17;5;5;30000;0;1;17;1;4;0;-2;1;0;0;1;0;0;3;0;2 -NVIDIA H100 PCIe [0xa32d];3;17;5;13;30000;0;1;17;1;7;0;1;-1;0;0;1;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;5;17;30000;0;1;17;1;5;0;-1;-2;1;0;0;1;0;1;3;1 -NVIDIA H100 PCIe [0xa32d];3;17;5;32;30000;0;1;17;1;2;0;1;1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;13;4;30000;0;19;17;1;5;0;1;1;1;0;1;1;0;0;3;2 -NVIDIA H100 PCIe [0xa32d];3;17;13;5;30000;0;18;17;1;17;0;1;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;13;13;30000;0;12;17;1;17;0;0;-1;0;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;13;17;30000;0;10;17;1;15;0;-2;-2;1;0;0;1;1;2;3;2 -NVIDIA H100 PCIe [0xa32d];3;17;13;32;30000;0;22;17;1;4;0;0;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;17;4;30000;0;24;17;1;11;0;-2;-2;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;17;5;30000;0;24;17;1;5;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;17;13;30000;0;22;17;1;17;0;-1;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;17;17;30000;0;24;17;1;14;0;0;-1;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;17;32;30000;0;11;17;1;9;0;1;-1;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;32;4;30000;0;18;17;1;8;0;1;1;1;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;17;32;5;30000;0;18;17;1;13;0;-1;-2;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;17;32;13;30000;0;15;17;1;4;0;0;0;1;0;1;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;17;32;17;30000;0;15;17;1;16;0;1;0;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;17;32;32;30000;0;22;17;1;11;0;0;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;20;20;20;30000;0;10;20;1;13;0;-1;-1;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;9;9;30000;0;17;22;1;9;0;0;1;0;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;22;9;16;30000;0;10;22;1;17;0;1;0;0;0;0;1;1;2;0;2 -NVIDIA H100 PCIe [0xa32d];3;22;9;22;30000;0;14;22;1;21;0;1;0;0;0;1;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;22;9;32;30000;0;1;22;1;3;0;0;-1;0;0;0;1;0;3;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;16;9;30000;0;13;22;1;11;0;-1;1;1;0;0;1;0;1;1;0 -NVIDIA H100 PCIe [0xa32d];3;22;16;16;30000;0;17;22;1;11;0;-1;0;1;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;16;22;30000;0;22;22;1;3;0;-1;0;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;22;9;30000;0;13;22;1;4;0;-2;2;1;0;1;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;22;16;30000;0;14;22;1;7;0;-1;-1;1;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;22;22;22;30000;0;24;22;1;9;0;0;-1;0;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;22;22;32;30000;0;33;22;1;17;0;1;-2;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;23;23;23;30000;0;22;23;1;23;0;-1;-1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;24;24;24;30000;0;18;24;1;20;0;-2;-2;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;25;4;4;30000;0;1;25;1;16;0;-1;-2;0;0;0;0;0;3;2;0 -NVIDIA H100 PCIe [0xa32d];3;25;4;5;30000;0;1;25;1;3;0;1;-2;1;0;1;1;1;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;25;5;4;30000;0;13;25;1;9;0;0;0;0;0;0;1;0;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;25;25;25;30000;0;26;25;1;10;0;-1;-1;1;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;26;4;4;30000;0;12;26;1;4;0;1;-2;0;0;1;1;0;3;0;2 -NVIDIA H100 PCIe [0xa32d];3;28;4;4;30000;0;1;28;1;26;0;-2;0;1;0;1;1;1;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;28;28;28;30000;0;24;28;1;18;0;1;0;1;0;1;1;1;2;0;2 -NVIDIA H100 PCIe [0xa32d];3;30;30;30;30000;0;11;30;1;19;0;0;0;0;0;0;1;0;2;0;2 -NVIDIA H100 PCIe [0xa32d];3;32;4;4;30000;0;17;32;1;17;0;1;-2;0;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;4;5;30000;0;1;32;1;13;0;-1;1;0;0;0;0;1;3;1;2 -NVIDIA H100 PCIe [0xa32d];3;32;4;13;30000;0;1;32;1;12;0;-1;-1;0;0;0;1;1;3;0;1 -NVIDIA H100 PCIe [0xa32d];3;32;4;17;30000;0;1;32;1;25;0;-2;-1;0;0;0;0;0;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;32;4;32;30000;0;1;32;1;15;0;0;-2;0;0;0;1;0;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;5;4;30000;0;17;32;1;6;0;0;1;0;0;0;1;1;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;5;5;30000;0;18;32;1;24;0;-2;-1;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;5;13;30000;0;1;32;1;29;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;5;17;30000;0;1;32;1;21;0;-1;1;0;0;0;1;0;3;3;2 -NVIDIA H100 PCIe [0xa32d];3;32;5;32;30000;0;24;32;1;32;0;1;-2;1;0;0;1;1;2;0;2 -NVIDIA H100 PCIe [0xa32d];3;32;13;4;30000;0;18;32;1;29;0;0;-1;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;13;5;30000;0;18;32;1;9;0;1;-2;1;0;0;1;1;1;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;13;13;30000;0;22;32;1;26;0;1;-1;0;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;13;17;30000;0;24;32;1;21;0;-2;-1;1;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;13;32;30000;0;5;32;1;19;0;-1;-2;1;0;0;1;0;2;3;2 -NVIDIA H100 PCIe [0xa32d];3;32;17;4;30000;0;17;32;1;9;0;1;-1;0;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;17;5;30000;0;18;32;1;9;0;-2;-2;1;0;0;1;1;2;0;0 -NVIDIA H100 PCIe [0xa32d];3;32;17;13;30000;0;22;32;1;5;0;-2;-2;1;0;1;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;17;17;30000;0;22;32;1;8;0;1;0;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;17;32;30000;0;4;32;1;25;0;1;0;0;0;0;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;32;4;30000;0;37;32;1;21;0;0;0;0;0;1;1;0;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;32;5;30000;0;33;32;1;11;0;0;-1;1;0;0;1;1;1;1;0 -NVIDIA H100 PCIe [0xa32d];3;32;32;13;30000;0;34;32;1;7;0;0;0;1;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;32;17;30000;0;24;32;1;32;0;-1;0;1;0;1;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;32;32;32;30000;0;22;32;1;18;0;1;-2;1;0;0;1;1;2;3;0 -NVIDIA H100 PCIe [0xa32d];3;35;35;35;30000;0;27;35;1;35;0;1;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;36;36;36;30000;0;17;36;1;36;0;0;0;0;0;0;1;0;1;3;0 -NVIDIA H100 PCIe [0xa32d];3;40;40;40;30000;0;8;40;1;30;0;-1;0;0;0;0;1;0;2;3;0 +NVIDIA H100 PCIe [0xa32d];3;2;2;2;30000;0;9;2;1;1;1;0;0;0;1;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;3;3;3;30000;0;14;3;1;3;1;-1;-1;0;1;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;4;30000;0;17;4;1;4;1;0;-1;0;1;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;5;30000;0;12;4;1;4;1;1;0;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;7;30000;0;6;4;1;2;1;0;2;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;9;30000;0;6;4;1;2;1;-2;-2;0;1;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;10;30000;0;9;4;1;1;1;1;-1;0;1;1;0;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;13;30000;0;6;4;1;4;1;0;-2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;15;30000;0;14;4;1;4;1;-2;-1;0;0;0;0;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;17;30000;0;6;4;1;4;1;0;2;1;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;25;30000;0;6;4;1;2;1;-1;1;1;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;26;30000;0;6;4;1;4;1;1;0;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;28;30000;0;6;4;1;4;1;0;0;0;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;4;32;30000;0;6;4;1;4;1;-1;-2;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;4;30000;0;15;4;1;1;1;-2;2;0;1;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;5;30000;0;14;4;1;3;1;-2;0;1;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;7;30000;0;14;4;1;1;1;0;-1;0;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;9;30000;0;12;4;1;1;1;0;3;1;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;13;30000;0;6;4;1;3;1;-1;4;0;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;17;30000;0;6;4;1;3;1;1;-1;0;1;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;25;30000;0;6;4;1;4;1;0;2;1;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;5;32;30000;0;3;4;1;3;1;0;-1;1;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;7;4;30000;0;17;4;1;2;1;0;4;0;1;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;7;5;30000;0;17;4;1;3;1;1;0;1;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;7;7;30000;0;11;4;1;3;1;0;0;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;7;9;30000;0;15;4;1;3;1;0;0;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;7;13;30000;0;14;4;1;2;1;0;1;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;9;4;30000;0;18;4;1;1;1;-1;3;0;1;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;9;5;30000;0;11;4;1;2;1;1;-1;0;1;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;9;7;30000;0;11;4;1;1;1;-2;3;0;1;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;9;9;30000;0;12;4;1;3;1;0;-1;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;9;13;30000;0;6;4;1;2;1;-2;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;10;4;30000;0;17;4;1;2;1;-1;-1;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;10;10;30000;0;11;4;1;3;1;1;-2;1;0;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;4;30000;0;15;4;1;3;1;0;0;0;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;5;30000;0;15;4;1;3;1;-2;-2;1;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;7;30000;0;16;4;1;2;1;-1;2;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;9;30000;0;14;4;1;4;1;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;13;30000;0;6;4;1;4;1;-2;0;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;17;30000;0;6;4;1;4;1;-1;0;0;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;13;32;30000;0;12;4;1;3;1;-1;2;0;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;15;4;30000;0;16;4;1;2;1;1;0;0;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;17;4;30000;0;19;4;1;1;1;-2;3;0;1;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;17;5;30000;0;16;4;1;4;1;-2;4;0;0;0;1;1;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;17;13;30000;0;6;4;1;3;1;1;3;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;17;17;30000;0;10;4;1;3;1;-2;-2;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;17;32;30000;0;15;4;1;2;1;-2;-2;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;25;4;30000;0;19;4;1;1;1;1;0;1;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;25;5;30000;0;14;4;1;4;25;0;0;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;26;4;30000;0;20;4;1;1;1;0;-1;1;0;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;28;4;30000;0;20;4;1;4;1;-1;0;0;1;1;1;1;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;32;4;30000;0;19;4;1;1;1;0;-2;1;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;32;5;30000;0;19;4;1;2;1;0;3;1;0;1;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;32;13;30000;0;12;4;1;4;1;1;2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;4;32;17;30000;0;13;4;1;2;1;-1;4;0;1;0;1;1;1;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;4;32;32;30000;0;15;4;1;4;1;0;1;0;0;0;1;0;1;2;1;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;4;30000;0;16;5;1;4;1;-2;-1;1;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;5;30000;0;11;5;1;2;1;0;0;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;7;30000;0;12;5;1;1;1;0;-2;0;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;9;30000;0;13;5;1;3;1;1;-1;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;13;30000;0;11;5;1;1;5;1;-2;0;1;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;17;30000;0;11;5;1;5;5;-1;5;1;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;25;30000;0;11;5;1;2;5;0;0;0;1;0;1;1;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;4;32;30000;0;12;5;1;5;5;-1;0;0;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;4;30000;0;14;5;1;3;1;1;-1;1;1;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;5;30000;0;6;5;1;3;1;1;-1;0;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;7;30000;0;6;5;1;5;1;0;3;1;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;9;30000;0;14;5;1;5;1;-2;4;0;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;13;30000;0;5;5;1;5;1;-2;-2;1;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;17;30000;0;6;5;1;5;1;-2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;5;32;30000;0;6;5;1;4;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;7;4;30000;0;16;5;1;3;1;0;-2;1;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;7;5;30000;0;17;5;1;3;1;-2;0;0;0;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;7;7;30000;0;5;5;1;4;1;1;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;7;9;30000;0;12;5;1;2;1;-2;0;0;1;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;7;13;30000;0;6;5;1;5;1;-2;-1;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;9;4;30000;0;15;5;1;3;1;1;4;1;0;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;9;5;30000;0;14;5;1;4;1;0;-2;0;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;9;7;30000;0;11;5;1;1;1;0;-1;0;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;9;9;30000;0;10;5;1;2;1;1;2;0;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;4;30000;0;18;5;1;2;1;-1;-1;0;1;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;5;30000;0;15;5;1;4;1;1;-2;0;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;7;30000;0;14;5;1;1;1;0;-2;1;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;13;30000;0;10;5;1;3;1;1;2;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;17;30000;0;10;5;1;5;1;-2;-1;0;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;13;32;30000;0;4;5;1;3;1;-2;0;0;1;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;17;4;30000;0;17;5;1;4;1;-1;-1;1;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;17;5;30000;0;16;5;1;4;1;1;0;0;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;17;13;30000;0;10;5;1;4;1;0;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;17;17;30000;0;10;5;1;5;1;-1;2;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;17;32;30000;0;10;5;1;4;1;1;-2;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;25;4;30000;0;21;5;1;3;1;-1;0;1;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;32;4;30000;0;17;5;1;2;1;-2;1;1;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;32;5;30000;0;18;5;1;4;1;-1;-2;1;0;1;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;32;13;30000;0;12;5;1;4;1;-1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;32;17;30000;0;12;5;1;3;1;0;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;5;32;32;30000;0;15;5;1;5;1;0;-2;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;6;6;30000;0;11;6;1;2;1;0;-1;0;1;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;6;7;30000;0;11;6;1;3;1;1;-2;0;1;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;6;8;30000;0;10;6;1;2;1;1;-1;1;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;7;6;30000;0;6;6;1;5;1;0;0;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;7;7;30000;0;6;6;1;6;1;0;3;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;7;8;30000;0;6;6;1;4;1;-2;2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;8;6;30000;0;10;6;1;3;1;-2;-1;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;8;7;30000;0;14;6;1;4;1;1;0;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;6;8;8;30000;0;6;6;1;3;1;-1;2;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;4;4;30000;0;14;7;1;7;1;0;0;0;0;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;4;5;30000;0;11;7;1;6;1;-2;3;0;1;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;4;7;30000;0;14;7;1;6;1;-2;-1;0;0;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;4;9;30000;0;13;7;1;5;1;1;4;0;1;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;4;13;30000;0;11;7;1;6;7;0;-2;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;5;4;30000;0;15;7;1;1;1;-1;-2;0;1;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;5;5;30000;0;11;7;1;1;1;1;0;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;5;7;30000;0;17;7;1;2;1;-2;-2;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;5;9;30000;0;11;7;1;3;1;0;-1;0;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;5;13;30000;0;12;7;1;2;1;1;-2;0;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;6;6;30000;0;14;7;1;6;1;-1;2;0;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;6;7;30000;0;11;7;1;7;1;0;4;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;6;8;30000;0;14;7;1;3;1;-1;0;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;4;30000;0;9;7;1;3;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;5;30000;0;14;7;1;6;1;-2;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;6;30000;0;10;7;1;2;1;-1;2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;7;30000;0;14;7;1;4;1;1;-1;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;8;30000;0;22;7;1;6;1;-2;0;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;9;30000;0;14;7;1;2;1;0;2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;7;13;30000;0;10;7;1;3;1;-2;-2;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;8;6;30000;0;14;7;1;2;1;0;1;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;8;7;30000;0;10;7;1;2;1;1;4;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;8;8;30000;0;10;7;1;6;1;-1;4;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;9;4;30000;0;15;7;1;3;1;-2;-1;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;9;5;30000;0;10;7;1;2;1;-2;2;0;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;9;7;30000;0;14;7;1;4;1;-1;-2;1;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;13;4;30000;0;17;7;1;6;1;0;-2;0;1;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;13;5;30000;0;11;7;1;2;1;1;2;1;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;13;7;30000;0;14;7;1;2;1;1;-1;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;7;13;13;30000;0;14;7;1;5;1;-2;-1;0;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;6;6;30000;0;11;8;1;1;1;0;-1;0;1;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;6;7;30000;0;14;8;1;6;1;1;-2;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;6;8;30000;0;11;8;1;3;1;-1;-1;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;7;6;30000;0;14;8;1;4;1;-1;-1;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;7;7;30000;0;14;8;1;5;1;-2;-2;0;1;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;7;8;30000;0;14;8;1;5;1;-1;0;0;1;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;8;6;30000;0;10;8;1;3;1;1;1;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;8;7;30000;0;14;8;1;3;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;8;8;8;30000;0;14;8;1;6;1;0;-1;0;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;4;4;30000;0;11;9;1;4;1;1;0;0;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;4;5;30000;0;11;9;1;3;1;-1;1;0;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;4;7;30000;0;11;9;1;4;1;-2;0;0;1;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;4;9;30000;0;11;8;1;7;9;1;2;0;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;4;13;30000;0;11;9;1;7;9;-1;-2;0;1;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;5;4;30000;0;14;9;1;1;1;0;0;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;5;5;30000;0;14;9;1;3;1;0;-1;0;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;5;7;30000;0;11;8;1;7;9;-1;3;0;0;1;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;5;9;30000;0;15;9;1;5;1;1;-2;0;0;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;7;4;30000;0;14;9;1;2;1;0;-1;1;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;7;5;30000;0;10;9;1;7;1;0;2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;7;7;30000;0;11;9;1;5;1;-1;2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;4;30000;0;18;9;1;7;1;-1;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;5;30000;0;22;9;1;7;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;9;30000;0;22;9;1;2;1;-1;-1;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;16;30000;0;6;9;1;8;1;1;0;1;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;22;30000;0;6;9;1;8;1;1;0;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;9;32;30000;0;22;9;1;7;1;-2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;13;4;30000;0;14;9;1;3;1;-2;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;16;9;30000;0;18;9;1;6;1;1;0;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;16;16;30000;0;10;9;1;4;1;-2;3;1;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;16;22;30000;0;10;9;1;2;1;1;1;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;22;9;30000;0;18;9;1;5;1;1;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;22;16;30000;0;12;9;1;3;1;1;0;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;22;22;30000;0;13;9;1;7;1;-1;-1;1;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;9;22;32;30000;0;24;9;1;8;1;-1;-2;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;10;4;4;30000;0;15;10;1;7;1;-1;0;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;10;4;10;30000;0;11;10;1;3;10;-2;3;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;10;10;4;30000;0;14;10;1;9;1;1;-1;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;10;10;10;30000;0;18;10;1;9;1;-1;-2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;4;30000;0;10;13;1;3;1;1;6;0;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;5;30000;0;11;13;1;6;13;1;5;0;1;1;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;7;30000;0;11;13;1;12;1;-1;6;0;0;1;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;9;30000;0;6;13;1;11;13;-2;2;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;13;30000;0;6;13;1;11;13;0;6;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;17;30000;0;3;13;1;6;13;1;4;1;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;4;32;30000;0;9;13;1;7;1;-1;3;1;0;1;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;4;30000;0;9;13;1;5;1;0;3;0;1;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;5;30000;0;14;13;1;3;1;-1;4;0;1;1;1;1;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;7;30000;0;11;13;1;10;1;1;6;1;0;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;13;30000;0;10;8;1;4;13;1;4;0;1;0;1;1;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;17;30000;0;10;8;1;4;1;1;0;0;0;1;1;1;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;5;32;30000;0;6;8;1;7;1;1;3;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;7;4;30000;0;11;8;1;2;1;1;2;0;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;7;5;30000;0;14;13;1;10;1;1;3;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;7;7;30000;0;14;8;1;12;1;-2;4;1;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;7;13;30000;0;14;13;1;4;1;-2;2;0;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;9;4;30000;0;14;8;1;11;1;1;2;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;4;30000;0;25;13;1;10;1;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;5;30000;0;21;13;1;10;1;1;-1;1;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;7;30000;0;18;13;1;13;13;0;-2;0;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;13;30000;0;5;13;1;7;1;-2;0;1;1;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;17;30000;0;17;13;1;10;1;1;0;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;13;32;30000;0;24;13;1;7;1;-2;-1;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;17;4;30000;0;18;13;1;9;1;-2;0;1;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;17;5;30000;0;17;13;1;4;1;0;1;1;0;1;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;17;13;30000;0;18;13;1;8;1;1;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;17;17;30000;0;17;13;1;2;1;-2;1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;17;32;30000;0;22;13;1;12;1;1;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;32;4;30000;0;25;13;1;13;1;-2;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;32;5;30000;0;22;13;1;11;1;1;-1;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;32;13;30000;0;22;13;1;13;1;1;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;32;17;30000;0;25;13;1;4;1;-2;4;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;13;32;32;30000;0;15;13;1;11;1;0;0;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;15;4;4;30000;0;9;15;1;11;1;0;2;1;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;15;15;15;30000;0;12;15;1;9;1;-2;-1;0;0;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;9;9;30000;0;12;16;1;2;1;0;4;0;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;9;16;30000;0;14;16;1;2;16;1;5;0;1;1;1;1;1;2;1;0 +NVIDIA H100 PCIe [0xa32d];3;16;9;22;30000;0;15;8;1;4;16;1;0;0;1;0;1;0;0;2;1;0 +NVIDIA H100 PCIe [0xa32d];3;16;16;9;30000;0;18;16;1;8;1;0;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;16;16;30000;0;13;16;1;3;1;-2;-2;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;16;22;30000;0;24;16;1;10;1;-2;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;22;9;30000;0;17;16;1;10;1;1;-1;1;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;22;16;30000;0;18;16;1;9;1;0;-2;1;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;16;22;22;30000;0;15;16;1;16;1;0;0;0;0;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;4;4;30000;0;10;17;1;8;1;-1;5;0;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;4;5;30000;0;13;17;1;7;1;-1;6;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;4;13;30000;0;9;17;1;6;17;0;6;0;0;1;1;0;2;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;17;4;17;30000;0;12;17;1;16;17;-2;3;0;1;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;4;32;30000;0;7;8;1;13;17;0;0;1;0;1;1;0;1;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;17;5;4;30000;0;14;8;1;16;1;-1;2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;5;5;30000;0;10;17;1;16;17;-2;4;0;0;1;1;1;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;5;13;30000;0;11;17;1;14;17;1;3;0;0;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;5;17;30000;0;6;8;1;16;17;-1;3;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;5;32;30000;0;20;17;1;13;17;-2;6;1;1;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;13;4;30000;0;15;17;1;13;1;1;-2;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;13;5;30000;0;18;17;1;6;1;-2;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;13;13;30000;0;19;8;1;14;1;-2;4;1;1;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;13;17;30000;0;10;17;1;12;1;-1;-2;1;0;0;1;1;1;2;1;0 +NVIDIA H100 PCIe [0xa32d];3;17;13;32;30000;0;22;17;1;14;1;-1;0;1;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;17;4;30000;0;23;17;1;12;1;-2;-2;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;17;5;30000;0;24;17;1;8;1;0;-1;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;17;13;30000;0;18;17;1;16;1;1;0;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;17;17;30000;0;22;17;1;15;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;17;32;30000;0;11;17;1;15;1;0;-1;0;1;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;32;4;30000;0;22;17;1;11;1;0;-2;1;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;32;5;30000;0;26;17;1;2;1;1;-2;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;32;13;30000;0;12;17;1;12;1;-1;0;1;0;0;1;0;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;32;17;30000;0;22;17;1;15;1;-2;-2;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;17;32;32;30000;0;24;17;1;15;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;20;20;20;30000;0;22;20;1;18;1;1;-2;0;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;9;9;30000;0;12;22;1;13;1;-1;4;0;0;1;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;9;16;30000;0;18;8;1;9;1;-2;5;1;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;9;22;30000;0;20;22;1;13;22;-1;5;0;1;0;1;1;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;9;32;30000;0;20;8;1;14;22;-1;4;0;0;0;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;16;9;30000;0;22;8;1;5;1;-1;5;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;16;16;30000;0;22;8;1;10;1;-1;3;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;16;22;30000;0;34;8;1;12;1;1;6;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;22;9;30000;0;17;22;1;11;0;-2;-1;1;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;22;16;30000;0;24;22;1;11;1;0;-1;0;1;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;22;22;30000;0;24;22;1;15;0;-1;-2;0;0;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;22;22;32;30000;0;22;22;1;17;0;1;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;23;23;23;30000;0;22;23;1;19;1;-1;-1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;24;24;24;30000;0;24;24;1;22;0;-2;-2;0;0;1;1;1;1;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;25;4;4;30000;0;10;8;1;8;25;1;4;0;0;1;1;1;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;25;4;5;30000;0;9;25;1;11;25;-1;6;0;1;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;25;5;4;30000;0;9;8;1;21;1;-1;1;0;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;25;25;25;30000;0;25;25;1;6;1;-1;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;26;4;4;30000;0;9;8;1;26;26;-2;3;1;0;1;1;0;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;28;4;4;30000;0;13;28;1;16;1;-2;5;1;1;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;28;28;28;30000;0;24;28;1;19;0;0;0;0;0;1;1;0;1;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;30;30;30;30000;0;25;30;1;18;1;-1;0;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;4;4;30000;0;11;8;1;15;32;1;4;1;1;0;1;1;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;4;5;30000;0;13;8;1;29;32;1;6;1;0;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;4;13;30000;0;12;8;1;8;32;1;4;0;0;0;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;4;17;30000;0;13;8;1;28;32;1;-1;0;1;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;4;32;30000;0;24;32;1;29;32;-1;5;0;1;0;1;1;0;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;32;5;4;30000;0;18;32;1;26;1;1;4;0;0;1;1;1;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;5;5;30000;0;18;32;1;10;1;0;4;1;0;0;1;0;2;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;5;13;30000;0;12;32;1;25;32;-2;6;0;1;1;1;0;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;5;17;30000;0;22;8;1;16;32;-2;0;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;5;32;30000;0;24;32;1;9;32;-1;6;0;0;1;1;1;2;0;1;0 +NVIDIA H100 PCIe [0xa32d];3;32;13;4;30000;0;24;8;1;1;1;-1;6;1;1;0;1;1;0;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;13;5;30000;0;22;32;1;11;1;0;6;1;0;0;1;1;2;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;13;13;30000;0;20;8;1;21;1;1;5;0;1;0;1;0;0;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;13;17;30000;0;22;8;1;9;1;-2;6;0;1;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;13;32;30000;0;5;8;1;24;1;-2;6;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;17;4;30000;0;18;32;1;2;0;-1;-1;0;0;0;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;17;5;30000;0;22;32;1;9;0;-1;1;0;0;1;1;1;1;0;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;17;13;30000;0;22;32;1;22;0;-1;0;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;17;17;30000;0;22;32;1;7;0;0;1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;17;32;30000;0;33;32;1;27;0;-1;-2;0;1;1;1;0;1;1;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;32;4;30000;0;33;32;1;10;0;1;1;0;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;32;5;30000;0;33;32;1;11;0;0;-1;1;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;32;13;30000;0;34;32;1;10;0;0;1;0;0;0;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;32;17;30000;0;24;32;1;31;0;0;-2;1;0;1;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;32;32;32;30000;0;25;32;1;31;1;-1;-2;1;0;1;1;1;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;35;35;35;30000;0;22;35;1;33;0;1;0;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;36;36;36;30000;0;22;36;1;23;0;0;0;0;0;0;1;0;1;2;0;0 +NVIDIA H100 PCIe [0xa32d];3;40;40;40;30000;0;44;40;1;34;0;-1;0;0;0;0;1;0;1;2;0;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_Mi250.csv b/src/acc/opencl/smm/params/tune_multiply_Mi250.csv new file mode 100644 index 00000000000..0d42a4acb78 --- /dev/null +++ b/src/acc/opencl/smm/params/tune_multiply_Mi250.csv @@ -0,0 +1,362 @@ +DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC +gfx90a [0x989f];3;3;3;3;30000;0;18;3;1;3;1;1;4;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;3;3;4;30000;0;24;3;1;3;0;-1;-1;0;0;0;1;0;0;2;0;0 +gfx90a [0x989f];3;3;3;5;30000;0;25;3;1;2;1;1;2;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;3;3;6;30000;0;25;3;1;2;1;-2;-1;0;1;0;1;0;0;0;0;0 +gfx90a [0x989f];3;3;3;7;30000;0;29;3;1;3;1;1;0;0;0;1;1;0;2;2;1;0 +gfx90a [0x989f];3;3;3;8;30000;0;9;3;1;3;1;-1;3;1;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;3;3;9;30000;0;11;3;1;2;1;1;4;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;3;3;10;30000;0;9;3;1;2;1;-2;-1;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;3;3;11;30000;0;8;3;1;3;1;1;-1;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;3;3;12;30000;0;6;3;1;2;1;-1;5;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;3;3;16;30000;0;6;3;1;1;1;-2;0;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;3;3;23;30000;0;42;3;1;3;1;0;-2;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;3;4;3;30000;0;20;3;1;1;1;-2;-2;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;3;4;4;30000;0;9;3;1;3;1;0;3;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;3;5;3;30000;0;15;3;1;2;1;0;0;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;3;5;5;30000;0;24;3;1;3;1;-2;0;1;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;3;6;3;30000;0;15;3;1;1;1;-2;-1;0;0;1;1;0;0;2;0;0 +gfx90a [0x989f];3;3;6;6;30000;0;29;3;1;1;1;-2;-2;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;3;7;3;30000;0;17;3;1;1;1;1;-2;1;0;0;1;0;0;2;1;0 +gfx90a [0x989f];3;3;7;7;30000;0;29;3;1;3;1;-1;2;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;3;8;3;30000;0;15;3;1;2;1;0;0;0;1;1;1;0;2;2;0;0 +gfx90a [0x989f];3;3;8;8;30000;0;29;3;1;2;1;0;-2;1;0;1;1;0;2;2;0;0 +gfx90a [0x989f];3;3;9;3;30000;0;14;3;1;2;1;-1;-2;1;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;3;9;9;30000;0;30;3;1;1;1;0;3;0;1;0;1;0;0;2;1;0 +gfx90a [0x989f];3;3;10;3;30000;0;18;3;1;3;1;1;2;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;3;10;10;30000;0;25;3;1;1;1;1;-1;0;1;1;1;0;2;2;0;0 +gfx90a [0x989f];3;3;11;3;30000;0;15;3;1;3;1;-1;-2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;3;11;11;30000;0;30;3;1;1;1;1;0;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;3;12;3;30000;0;15;3;1;3;1;1;-2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;3;12;12;30000;0;30;3;1;1;1;-2;2;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;3;16;3;30000;0;12;3;1;2;1;-2;-2;1;1;0;1;0;0;0;0;0 +gfx90a [0x989f];3;3;16;16;30000;0;50;3;1;3;0;1;-1;0;1;0;1;1;2;2;1;0 +gfx90a [0x989f];3;3;23;3;30000;0;15;3;1;3;1;0;-2;1;1;0;1;0;0;2;1;0 +gfx90a [0x989f];3;3;23;23;30000;0;50;3;1;3;1;-1;0;1;1;0;1;0;0;2;1;0 +gfx90a [0x989f];3;4;3;3;30000;0;22;4;1;4;1;-1;-2;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;4;3;4;30000;0;25;4;1;1;1;-1;2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;4;4;3;30000;0;16;4;1;2;1;1;6;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;4;4;4;30000;0;11;4;1;4;1;1;6;1;1;1;1;0;2;2;1;0 +gfx90a [0x989f];3;4;4;5;30000;0;21;4;1;4;1;-2;-1;0;0;1;1;0;0;2;0;0 +gfx90a [0x989f];3;4;4;6;30000;0;13;4;1;4;1;0;2;1;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;4;4;7;30000;0;29;4;1;2;1;0;-1;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;4;4;8;30000;0;12;4;1;2;1;0;6;1;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;4;4;9;30000;0;12;4;1;4;1;0;-1;1;1;1;1;0;0;2;1;0 +gfx90a [0x989f];3;4;4;10;30000;0;29;4;1;2;1;-2;5;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;4;4;11;30000;0;12;4;1;2;1;-2;0;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;4;4;12;30000;0;29;4;1;3;1;-2;-2;0;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;4;4;16;30000;0;6;4;1;3;1;-1;-2;0;0;0;1;0;0;0;0;0 +gfx90a [0x989f];3;4;4;23;30000;0;30;4;1;3;1;-2;0;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;4;5;4;30000;0;20;4;1;4;1;0;5;0;1;1;1;0;2;2;1;0 +gfx90a [0x989f];3;4;5;5;30000;0;24;4;1;3;1;0;4;0;1;1;1;0;0;2;0;0 +gfx90a [0x989f];3;4;6;4;30000;0;20;4;1;2;1;0;1;1;1;1;1;0;2;2;1;0 +gfx90a [0x989f];3;4;6;6;30000;0;24;4;1;3;1;0;-1;1;0;0;1;0;2;0;1;0 +gfx90a [0x989f];3;4;7;4;30000;0;23;4;1;1;1;-2;-1;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;4;7;7;30000;0;25;4;1;4;1;-1;-1;0;1;1;1;0;2;2;1;0 +gfx90a [0x989f];3;4;8;4;30000;0;18;4;1;4;1;-1;0;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;4;8;8;30000;0;12;4;1;4;1;-2;3;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;4;9;4;30000;0;21;4;1;4;1;1;0;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;4;9;9;30000;0;15;4;1;1;1;0;3;1;1;1;1;0;0;2;0;0 +gfx90a [0x989f];3;4;10;4;30000;0;20;4;1;4;1;-2;-1;0;0;1;1;0;2;0;1;0 +gfx90a [0x989f];3;4;10;10;30000;0;30;4;1;2;1;-2;6;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;4;11;4;30000;0;19;4;1;1;1;0;3;0;1;0;1;0;0;2;1;0 +gfx90a [0x989f];3;4;11;11;30000;0;24;4;1;2;1;-2;2;1;1;1;1;0;0;2;0;0 +gfx90a [0x989f];3;4;12;4;30000;0;20;4;1;4;1;0;-2;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;4;12;12;30000;0;40;4;1;4;1;-1;-1;0;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;4;16;4;30000;0;20;4;1;3;1;1;-2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;4;16;16;30000;0;25;4;1;4;1;0;2;0;0;0;1;0;2;1;1;0 +gfx90a [0x989f];3;4;23;4;30000;0;24;4;1;1;1;0;3;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;4;23;23;30000;0;40;4;1;2;1;-1;5;1;0;0;1;0;0;0;1;0 +gfx90a [0x989f];3;5;3;3;30000;0;18;5;1;4;1;0;-2;1;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;5;3;5;30000;0;18;5;1;2;1;-1;2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;5;4;4;30000;0;20;5;1;5;1;1;0;0;0;1;1;0;0;0;1;0 +gfx90a [0x989f];3;5;4;5;30000;0;9;5;1;4;1;-1;0;1;1;0;1;0;0;0;0;0 +gfx90a [0x989f];3;5;5;3;30000;0;18;5;1;4;1;-2;6;0;0;0;1;0;2;2;0;0 +gfx90a [0x989f];3;5;5;4;30000;0;10;5;1;5;1;1;-2;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;5;5;5;30000;0;10;5;1;3;1;1;0;0;1;1;1;1;0;0;0;0 +gfx90a [0x989f];3;5;5;6;30000;0;12;5;1;2;1;-1;2;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;5;5;7;30000;0;9;5;1;1;1;-2;-1;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;5;8;30000;0;24;5;1;3;1;0;4;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;5;9;30000;0;24;5;1;4;1;1;-1;1;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;5;5;10;30000;0;20;5;1;1;1;-2;0;1;0;0;1;0;2;2;0;0 +gfx90a [0x989f];3;5;5;11;30000;0;25;5;1;1;1;-2;-2;0;0;0;1;0;2;2;1;0 +gfx90a [0x989f];3;5;5;12;30000;0;4;5;1;3;1;1;0;1;0;0;1;1;2;0;0;0 +gfx90a [0x989f];3;5;5;16;30000;0;12;5;1;4;1;0;2;1;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;5;5;23;30000;0;2;5;1;1;5;-2;0;1;0;1;1;0;2;0;1;0 +gfx90a [0x989f];3;5;6;5;30000;0;20;5;1;3;1;-2;-2;0;0;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;6;6;30000;0;24;5;1;3;1;0;-1;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;7;5;30000;0;12;5;1;3;1;0;-2;1;0;0;1;0;0;0;1;0 +gfx90a [0x989f];3;5;7;7;30000;0;12;5;1;2;1;0;2;1;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;5;8;5;30000;0;13;5;1;3;1;-2;6;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;8;8;30000;0;10;5;1;3;1;0;0;1;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;5;9;5;30000;0;24;5;1;3;0;-2;-1;0;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;5;9;9;30000;0;25;5;1;4;1;1;4;1;0;1;1;0;0;0;1;0 +gfx90a [0x989f];3;5;10;5;30000;0;20;5;1;3;1;1;3;0;0;0;1;0;0;2;0;0 +gfx90a [0x989f];3;5;10;10;30000;0;30;5;1;1;0;-2;-1;1;0;1;1;1;0;0;1;0 +gfx90a [0x989f];3;5;11;5;30000;0;15;5;1;2;1;0;-1;1;0;1;1;0;2;0;0;0 +gfx90a [0x989f];3;5;11;11;30000;0;25;5;1;3;0;-2;-1;0;0;0;1;0;0;0;0;0 +gfx90a [0x989f];3;5;12;5;30000;0;25;5;1;4;1;-1;3;1;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;5;12;12;30000;0;25;5;1;2;1;-2;2;0;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;5;16;5;30000;0;24;5;1;3;0;-2;0;0;0;0;1;1;2;2;0;0 +gfx90a [0x989f];3;5;16;16;30000;0;24;5;1;4;0;1;0;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;5;23;5;30000;0;20;5;1;5;1;-1;-2;1;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;5;23;23;30000;0;24;5;1;1;1;-2;0;0;1;1;1;1;2;1;0;0 +gfx90a [0x989f];3;6;3;3;30000;0;12;6;1;2;1;1;0;0;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;6;3;6;30000;0;18;6;1;3;1;-2;-1;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;6;4;4;30000;0;18;6;1;2;1;1;2;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;6;4;6;30000;0;15;6;1;5;1;1;4;1;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;6;5;5;30000;0;9;6;1;6;1;-2;2;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;6;5;6;30000;0;15;6;1;4;1;0;-2;0;0;0;1;0;2;0;1;0 +gfx90a [0x989f];3;6;6;3;30000;0;12;6;1;2;1;-1;3;1;1;0;1;0;0;0;0;0 +gfx90a [0x989f];3;6;6;4;30000;0;15;6;1;3;1;-1;3;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;6;6;5;30000;0;12;6;1;1;1;0;6;1;0;1;1;0;2;2;0;0 +gfx90a [0x989f];3;6;6;6;30000;0;12;6;1;1;1;-2;-1;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;6;6;7;30000;0;12;6;1;5;1;-1;0;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;6;6;8;30000;0;20;6;1;5;1;1;-2;1;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;6;6;9;30000;0;12;6;1;1;1;0;5;1;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;6;6;10;30000;0;12;6;1;3;1;-2;1;1;1;1;1;0;0;2;1;0 +gfx90a [0x989f];3;6;6;11;30000;0;24;6;1;5;1;0;0;1;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;6;6;12;30000;0;15;6;1;1;0;-2;0;0;0;0;1;1;2;1;0;0 +gfx90a [0x989f];3;6;6;16;30000;0;4;6;1;1;0;-2;-2;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;6;6;23;30000;0;15;6;1;1;1;0;3;0;1;1;1;0;2;2;0;0 +gfx90a [0x989f];3;6;7;6;30000;0;20;6;1;6;1;1;4;0;1;0;1;1;0;0;1;0 +gfx90a [0x989f];3;6;7;7;30000;0;12;6;1;6;1;1;2;1;0;0;1;0;2;2;0;0 +gfx90a [0x989f];3;6;8;6;30000;0;15;6;1;6;1;1;-2;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;6;8;8;30000;0;20;6;1;6;1;-1;-2;0;0;1;1;0;0;0;0;0 +gfx90a [0x989f];3;6;9;6;30000;0;13;6;1;6;1;-1;-1;1;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;6;9;9;30000;0;24;6;1;2;0;-1;0;0;1;1;1;1;0;0;1;0 +gfx90a [0x989f];3;6;10;6;30000;0;20;6;1;6;1;-2;3;1;0;1;1;0;2;0;0;0 +gfx90a [0x989f];3;6;10;10;30000;0;25;6;1;4;1;0;0;0;1;0;1;1;2;0;1;0 +gfx90a [0x989f];3;6;11;6;30000;0;15;6;1;2;0;0;-1;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;6;11;11;30000;0;25;6;1;1;0;0;-2;0;1;1;1;1;2;0;0;0 +gfx90a [0x989f];3;6;12;6;30000;0;20;6;1;6;1;-1;2;0;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;6;12;12;30000;0;15;6;1;6;1;-2;-2;1;0;0;1;0;0;0;1;0 +gfx90a [0x989f];3;6;16;6;30000;0;20;6;1;5;1;0;-1;0;1;0;1;1;0;2;1;0 +gfx90a [0x989f];3;6;16;16;30000;0;26;6;1;6;1;0;0;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;6;23;6;30000;0;24;6;1;1;0;-2;0;0;0;0;1;1;0;0;1;0 +gfx90a [0x989f];3;6;23;23;30000;0;24;6;1;1;1;1;-2;0;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;7;3;3;30000;0;16;7;1;3;1;-1;4;0;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;7;3;7;30000;0;15;7;1;6;1;0;0;0;1;0;1;0;0;2;1;0 +gfx90a [0x989f];3;7;4;4;30000;0;22;7;1;3;1;1;-1;0;1;1;1;1;0;2;0;0 +gfx90a [0x989f];3;7;4;7;30000;0;12;7;1;3;1;1;3;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;7;5;5;30000;0;12;7;1;2;1;0;1;0;1;1;1;0;2;0;0;0 +gfx90a [0x989f];3;7;5;7;30000;0;13;7;1;5;1;1;-1;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;7;6;6;30000;0;9;7;1;1;1;0;3;1;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;7;6;7;30000;0;15;7;1;3;1;-1;1;1;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;7;7;3;30000;0;15;7;1;7;1;-1;2;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;7;7;4;30000;0;18;7;1;3;1;1;1;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;7;5;30000;0;15;7;1;6;1;0;-2;0;1;0;1;0;2;0;1;0 +gfx90a [0x989f];3;7;7;6;30000;0;15;7;1;6;1;-2;-2;0;1;0;1;0;0;0;1;0 +gfx90a [0x989f];3;7;7;7;30000;0;12;7;1;3;1;1;2;0;1;0;1;1;0;0;0;0 +gfx90a [0x989f];3;7;7;8;30000;0;24;7;1;6;0;-2;-1;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;7;9;30000;0;15;7;1;4;0;1;-2;0;0;1;1;0;2;0;1;0 +gfx90a [0x989f];3;7;7;10;30000;0;12;7;1;1;1;-1;0;1;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;7;7;11;30000;0;15;7;1;1;1;0;-2;0;0;1;1;1;2;2;1;0 +gfx90a [0x989f];3;7;7;12;30000;0;12;7;1;1;0;-1;-2;1;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;7;7;16;30000;0;15;7;1;1;0;-1;-1;1;1;0;1;1;2;1;0;0 +gfx90a [0x989f];3;7;7;23;30000;0;1;7;1;1;1;1;6;0;1;1;0;1;2;2;1;0 +gfx90a [0x989f];3;7;8;7;30000;0;12;7;1;5;1;1;-2;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;7;8;8;30000;0;24;7;1;6;0;-1;-1;0;0;1;1;1;0;2;1;0 +gfx90a [0x989f];3;7;9;7;30000;0;20;7;1;7;1;-2;0;0;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;7;9;9;30000;0;20;7;1;7;0;-1;-1;0;0;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;10;7;30000;0;20;7;1;7;1;1;-2;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;10;10;30000;0;15;7;1;1;1;0;0;0;0;0;1;0;2;0;1;0 +gfx90a [0x989f];3;7;11;7;30000;0;20;7;1;5;1;-2;0;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;11;11;30000;0;20;7;1;1;0;-2;-1;0;0;1;1;1;0;0;1;0 +gfx90a [0x989f];3;7;12;7;30000;0;24;7;1;2;0;1;0;0;0;0;1;1;0;0;0;0 +gfx90a [0x989f];3;7;12;12;30000;0;24;7;1;6;1;1;-2;0;1;0;1;1;0;2;1;0 +gfx90a [0x989f];3;7;16;7;30000;0;24;7;1;7;0;0;0;0;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;7;16;16;30000;0;24;7;1;1;1;1;-2;0;0;0;1;1;2;2;0;0 +gfx90a [0x989f];3;7;23;7;30000;0;25;7;1;3;1;0;1;1;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;7;23;23;30000;0;24;7;1;1;1;0;-2;1;0;1;1;1;2;0;1;0 +gfx90a [0x989f];3;8;3;3;30000;0;12;8;1;4;1;-2;3;0;1;1;1;0;2;0;1;0 +gfx90a [0x989f];3;8;3;8;30000;0;6;8;1;2;1;-2;-1;0;0;1;1;1;0;2;1;0 +gfx90a [0x989f];3;8;4;4;30000;0;12;8;1;3;1;0;0;0;0;1;1;0;0;2;1;0 +gfx90a [0x989f];3;8;4;8;30000;0;9;8;1;4;1;1;4;1;0;1;1;1;0;2;1;0 +gfx90a [0x989f];3;8;5;5;30000;0;12;8;1;2;1;-2;4;0;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;8;5;8;30000;0;10;8;1;7;1;-1;6;0;1;0;1;1;2;0;1;0 +gfx90a [0x989f];3;8;6;6;30000;0;12;8;1;6;1;-2;2;0;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;8;6;8;30000;0;15;8;1;5;1;0;-2;0;1;1;1;1;0;2;0;0 +gfx90a [0x989f];3;8;7;7;30000;0;12;8;1;8;1;-1;0;1;0;0;1;1;0;2;1;0 +gfx90a [0x989f];3;8;7;8;30000;0;20;8;1;4;1;-2;0;0;0;0;1;1;0;2;1;0 +gfx90a [0x989f];3;8;8;3;30000;0;20;8;1;7;1;-1;-1;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;8;8;4;30000;0;22;8;1;5;0;1;-1;0;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;8;8;5;30000;0;15;8;1;5;1;-2;0;1;1;0;1;1;0;0;1;0 +gfx90a [0x989f];3;8;8;6;30000;0;15;8;1;3;0;-2;-1;0;1;0;1;1;2;2;1;0 +gfx90a [0x989f];3;8;8;7;30000;0;15;8;1;7;1;-1;-1;1;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;8;8;8;30000;0;10;8;1;4;1;1;1;0;1;0;1;1;0;0;1;0 +gfx90a [0x989f];3;8;8;16;30000;0;24;8;1;8;0;-2;0;0;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;8;8;23;30000;0;2;8;1;1;1;-2;-2;0;1;1;1;0;2;1;0;0 +gfx90a [0x989f];3;8;16;8;30000;0;24;8;1;2;0;-2;1;0;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;8;16;16;30000;0;20;8;1;1;1;1;0;1;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;8;23;8;30000;0;24;8;1;8;0;1;0;1;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;8;23;23;30000;0;20;8;1;1;1;-1;-1;1;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;9;3;3;30000;0;13;9;1;4;1;-1;-2;0;0;0;1;0;0;0;0;0 +gfx90a [0x989f];3;9;3;9;30000;0;12;9;1;1;1;-1;0;0;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;9;4;4;30000;0;12;9;1;3;1;1;0;0;0;0;1;1;2;0;0;0 +gfx90a [0x989f];3;9;4;9;30000;0;6;9;1;9;0;0;-1;0;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;9;5;5;30000;0;11;9;1;7;1;-1;0;0;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;9;5;9;30000;0;12;9;1;1;1;-2;0;1;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;9;6;6;30000;0;15;9;1;4;1;-1;1;0;0;1;1;1;2;0;1;0 +gfx90a [0x989f];3;9;6;9;30000;0;10;9;1;1;1;-1;-2;1;1;0;1;1;0;2;1;0 +gfx90a [0x989f];3;9;7;7;30000;0;12;9;1;1;1;-2;-1;1;1;0;1;1;0;0;1;0 +gfx90a [0x989f];3;9;7;9;30000;0;13;9;1;1;1;-2;0;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;9;9;3;30000;0;15;9;1;8;1;-2;0;0;1;1;1;1;0;0;0;0 +gfx90a [0x989f];3;9;9;4;30000;0;13;9;1;7;0;-1;-1;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;9;9;5;30000;0;15;9;1;2;1;0;1;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;9;9;6;30000;0;24;9;1;2;0;0;-2;0;0;0;1;1;0;0;1;0 +gfx90a [0x989f];3;9;9;7;30000;0;13;9;1;3;0;-2;1;0;0;1;1;1;2;2;1;0 +gfx90a [0x989f];3;9;9;9;30000;0;10;9;1;4;0;0;1;0;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;9;9;16;30000;0;12;9;1;1;1;0;-2;1;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;9;9;23;30000;0;3;9;1;8;1;0;-2;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;9;16;9;30000;0;13;9;1;1;0;0;0;1;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;9;16;16;30000;0;20;9;1;1;1;-2;0;0;0;0;1;0;2;2;0;0 +gfx90a [0x989f];3;9;23;9;30000;0;24;9;1;1;1;0;-2;1;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;9;23;23;30000;0;3;8;1;7;1;0;3;1;1;0;1;0;1;2;1;0 +gfx90a [0x989f];3;10;3;3;30000;0;10;10;1;8;1;0;-2;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;10;3;10;30000;0;12;10;1;1;1;-1;0;0;0;1;1;1;2;0;1;0 +gfx90a [0x989f];3;10;4;4;30000;0;13;10;1;3;1;-2;-1;1;1;0;1;1;0;2;0;0 +gfx90a [0x989f];3;10;4;10;30000;0;12;10;1;1;1;-1;0;0;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;10;5;5;30000;0;15;10;1;3;1;-1;-2;0;1;1;1;1;0;0;1;0 +gfx90a [0x989f];3;10;5;10;30000;0;15;10;1;1;1;1;0;0;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;10;6;6;30000;0;9;10;1;1;1;-1;-1;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;10;6;10;30000;0;6;10;1;9;0;0;1;0;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;10;7;7;30000;0;24;10;1;8;1;1;0;0;0;1;1;1;2;2;0;0 +gfx90a [0x989f];3;10;7;10;30000;0;12;10;1;1;1;1;-2;0;1;1;1;1;2;0;0;0 +gfx90a [0x989f];3;10;10;3;30000;0;15;10;1;10;0;1;-1;1;1;1;1;1;0;0;0;0 +gfx90a [0x989f];3;10;10;4;30000;0;20;10;1;4;0;-1;1;0;0;1;1;1;2;0;0;0 +gfx90a [0x989f];3;10;10;5;30000;0;15;10;1;3;0;0;0;0;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;10;10;6;30000;0;20;10;1;10;0;-1;0;0;0;0;1;1;2;0;0;0 +gfx90a [0x989f];3;10;10;7;30000;0;12;10;1;1;1;0;0;1;0;1;1;1;2;2;1;0 +gfx90a [0x989f];3;10;10;10;30000;0;10;10;1;9;1;0;-2;0;1;1;1;1;0;1;0;0 +gfx90a [0x989f];3;10;10;16;30000;0;15;10;1;1;1;-1;0;0;0;0;1;0;2;2;0;0 +gfx90a [0x989f];3;10;10;23;30000;0;3;10;1;7;1;-1;-2;0;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;10;16;10;30000;0;20;10;1;1;1;-2;0;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;10;16;16;30000;0;15;10;1;1;1;0;0;1;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;10;23;10;30000;0;24;10;1;7;0;-1;-1;0;1;1;1;1;0;0;1;0 +gfx90a [0x989f];3;10;23;23;30000;0;3;10;1;9;1;-2;0;1;0;1;1;0;1;2;0;0 +gfx90a [0x989f];3;11;3;3;30000;0;9;11;1;10;1;-1;0;1;1;0;1;0;2;2;1;0 +gfx90a [0x989f];3;11;3;11;30000;0;10;11;1;1;1;1;-2;0;0;1;1;1;0;2;1;0 +gfx90a [0x989f];3;11;4;4;30000;0;13;11;1;5;1;-2;-1;0;0;1;1;0;2;0;1;0 +gfx90a [0x989f];3;11;4;11;30000;0;12;11;1;1;1;-2;0;0;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;11;5;5;30000;0;10;11;1;9;0;0;-2;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;11;5;11;30000;0;12;11;1;1;1;-2;0;0;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;11;6;6;30000;0;12;11;1;6;1;-1;0;0;0;1;1;1;2;1;0;0 +gfx90a [0x989f];3;11;6;11;30000;0;12;11;1;1;1;0;0;1;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;11;7;7;30000;0;13;11;1;1;1;-2;0;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;11;7;11;30000;0;4;11;1;1;0;-2;2;0;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;11;11;3;30000;0;20;11;1;3;1;-1;0;0;0;0;1;1;2;0;1;0 +gfx90a [0x989f];3;11;11;4;30000;0;20;11;1;10;1;-2;-2;0;1;1;1;1;0;0;1;0 +gfx90a [0x989f];3;11;11;5;30000;0;20;11;1;3;1;-2;0;0;1;0;1;1;2;0;1;0 +gfx90a [0x989f];3;11;11;6;30000;0;20;11;1;1;1;-2;0;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;11;11;7;30000;0;6;8;1;2;1;-1;0;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;11;11;11;30000;0;12;11;1;8;1;-2;-2;0;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;11;11;16;30000;0;4;8;1;4;1;-1;2;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;11;11;23;30000;0;15;11;1;1;1;-1;-1;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;11;16;11;30000;0;15;11;1;1;1;0;-2;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;11;16;16;30000;0;4;8;1;1;1;-1;4;1;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;11;23;11;30000;0;24;11;1;6;1;-2;-2;0;1;0;1;1;2;1;0;0 +gfx90a [0x989f];3;11;23;23;30000;0;3;8;1;10;1;-1;2;0;1;0;1;0;1;2;1;0 +gfx90a [0x989f];3;12;3;3;30000;0;15;12;1;2;0;-1;-2;0;1;0;1;0;0;0;0;0 +gfx90a [0x989f];3;12;3;12;30000;0;12;12;1;1;1;-1;-2;0;0;1;1;1;0;2;1;0 +gfx90a [0x989f];3;12;4;4;30000;0;13;12;1;12;0;-1;0;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;12;4;12;30000;0;15;12;1;1;12;0;0;0;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;12;5;5;30000;0;10;12;1;7;1;0;0;0;1;1;1;1;0;0;0;0 +gfx90a [0x989f];3;12;5;12;30000;0;12;12;1;1;1;1;-2;0;0;1;1;1;2;0;0;0 +gfx90a [0x989f];3;12;6;6;30000;0;13;12;1;10;1;1;-2;0;0;0;1;1;0;0;1;0 +gfx90a [0x989f];3;12;6;12;30000;0;15;12;1;1;1;0;-2;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;12;7;7;30000;0;15;12;1;1;1;0;0;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;12;7;12;30000;0;12;12;1;1;1;-2;0;1;1;1;1;1;0;2;1;0 +gfx90a [0x989f];3;12;12;3;30000;0;20;12;1;12;0;-2;-2;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;12;12;4;30000;0;20;12;1;9;0;0;-2;0;0;0;1;0;2;0;0;0 +gfx90a [0x989f];3;12;12;5;30000;0;15;12;1;7;1;0;0;0;1;0;1;1;0;2;1;0 +gfx90a [0x989f];3;12;12;6;30000;0;26;12;1;7;1;-1;-2;0;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;12;12;7;30000;0;15;12;1;1;1;1;0;1;1;0;1;1;2;0;1;0 +gfx90a [0x989f];3;12;12;12;30000;0;12;12;1;8;1;1;0;0;1;0;1;1;0;1;0;0 +gfx90a [0x989f];3;12;12;16;30000;0;24;12;1;7;1;0;0;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;12;12;23;30000;0;3;12;1;2;0;-2;2;0;1;0;1;0;1;0;0;0 +gfx90a [0x989f];3;12;16;12;30000;0;10;8;1;10;1;0;0;1;0;0;1;0;1;0;0;0 +gfx90a [0x989f];3;12;16;16;30000;0;15;12;1;1;1;0;0;1;1;1;1;1;2;2;0;0 +gfx90a [0x989f];3;12;23;12;30000;0;24;12;1;11;1;-1;-2;0;1;0;1;0;2;2;0;0 +gfx90a [0x989f];3;12;23;23;30000;0;5;8;1;4;1;0;1;0;1;1;1;0;1;2;1;0 +gfx90a [0x989f];3;13;13;13;30000;0;12;13;1;12;1;-2;-1;0;1;0;1;1;0;2;1;0 +gfx90a [0x989f];3;13;13;23;30000;0;12;13;1;1;1;-1;0;1;0;0;1;0;2;0;1;0 +gfx90a [0x989f];3;13;23;13;30000;0;8;13;1;3;1;1;0;0;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;13;23;23;30000;0;3;8;1;9;1;-2;2;1;0;1;1;0;1;2;1;0 +gfx90a [0x989f];3;14;14;14;30000;0;10;14;1;12;1;0;-2;0;1;1;1;1;0;2;0;0 +gfx90a [0x989f];3;14;14;23;30000;0;15;14;1;1;1;1;0;0;0;0;1;1;2;0;0;0 +gfx90a [0x989f];3;14;14;29;30000;0;5;14;1;3;14;-1;2;0;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;14;14;32;30000;0;2;8;1;11;1;-2;0;1;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;14;23;14;30000;0;13;8;1;10;1;-2;3;0;1;0;1;0;1;0;0;0 +gfx90a [0x989f];3;14;23;23;30000;0;4;8;1;7;1;-2;1;0;0;1;1;0;1;0;1;0 +gfx90a [0x989f];3;14;29;14;30000;0;30;8;1;4;1;-1;1;1;0;0;1;1;1;0;1;0 +gfx90a [0x989f];3;14;29;29;30000;0;3;8;1;6;1;1;2;0;1;0;1;0;1;2;1;0 +gfx90a [0x989f];3;14;29;32;30000;0;3;8;1;6;1;-1;-1;0;0;1;1;0;1;2;1;0 +gfx90a [0x989f];3;14;32;14;30000;0;30;8;1;10;1;-2;4;1;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;14;32;29;30000;0;3;8;1;6;1;0;5;0;1;1;1;0;1;2;1;0 +gfx90a [0x989f];3;14;32;32;30000;0;40;8;1;4;1;1;4;0;1;0;1;1;1;0;1;0 +gfx90a [0x989f];3;15;15;15;30000;0;4;8;1;2;1;-1;1;0;1;1;1;0;1;0;1;0 +gfx90a [0x989f];3;15;15;23;30000;0;4;8;1;3;1;0;0;1;1;0;1;0;1;2;1;0 +gfx90a [0x989f];3;15;23;15;30000;0;3;15;1;10;1;0;5;1;0;1;1;0;1;2;1;0 +gfx90a [0x989f];3;15;23;23;30000;0;4;8;1;6;1;-2;3;1;1;1;1;0;1;2;1;0 +gfx90a [0x989f];3;16;3;3;30000;0;15;16;1;10;0;-1;-2;0;1;0;1;1;0;0;0;0 +gfx90a [0x989f];3;16;3;16;30000;0;13;16;1;10;1;0;0;0;0;1;1;1;0;0;1;0 +gfx90a [0x989f];3;16;4;4;30000;0;12;16;1;6;1;0;-1;0;1;0;1;1;0;0;1;0 +gfx90a [0x989f];3;16;4;16;30000;0;4;8;1;6;1;0;-1;1;0;0;1;1;1;0;1;0 +gfx90a [0x989f];3;16;5;5;30000;0;15;8;1;4;1;-1;2;0;1;1;1;0;1;2;0;0 +gfx90a [0x989f];3;16;5;16;30000;0;8;8;1;6;1;-1;2;0;1;0;1;0;1;0;0;0 +gfx90a [0x989f];3;16;6;6;30000;0;15;16;1;1;1;1;-2;1;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;16;6;16;30000;0;12;16;1;1;1;1;0;0;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;16;7;7;30000;0;10;16;1;1;0;-2;0;0;1;1;1;1;2;2;1;0 +gfx90a [0x989f];3;16;7;16;30000;0;24;16;1;13;1;0;0;1;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;16;8;8;30000;0;24;16;1;3;0;-2;-1;0;0;0;1;1;2;2;1;0 +gfx90a [0x989f];3;16;8;16;30000;0;5;8;1;2;1;0;0;1;0;1;1;0;1;2;0;0 +gfx90a [0x989f];3;16;9;9;30000;0;6;8;1;3;1;-2;1;1;1;0;1;1;1;0;0;0 +gfx90a [0x989f];3;16;9;16;30000;0;4;8;1;7;1;0;2;1;1;1;1;0;1;2;0;0 +gfx90a [0x989f];3;16;10;10;30000;0;30;16;1;9;0;-1;2;0;1;0;1;0;1;0;0;0 +gfx90a [0x989f];3;16;10;16;30000;0;8;8;1;6;1;0;0;0;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;16;11;11;30000;0;6;8;1;4;1;-1;2;0;1;0;1;1;1;0;0;0 +gfx90a [0x989f];3;16;11;16;30000;0;30;8;1;4;1;-2;2;1;0;0;1;1;1;2;0;0 +gfx90a [0x989f];3;16;12;12;30000;0;6;8;1;15;1;-2;2;1;1;1;1;0;1;0;0;0 +gfx90a [0x989f];3;16;12;16;30000;0;12;16;1;1;1;-1;-2;0;1;0;1;1;2;2;1;0 +gfx90a [0x989f];3;16;16;3;30000;0;25;16;1;9;0;-1;-2;1;0;1;1;1;0;0;1;0 +gfx90a [0x989f];3;16;16;4;30000;0;22;16;1;2;0;1;-1;1;1;0;1;1;2;2;1;0 +gfx90a [0x989f];3;16;16;5;30000;0;20;16;1;1;1;-2;-2;1;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;16;16;6;30000;0;25;16;1;9;0;-1;2;1;1;0;1;1;1;0;0;0 +gfx90a [0x989f];3;16;16;7;30000;0;15;16;1;1;0;0;0;1;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;16;16;8;30000;0;24;16;1;8;1;0;1;1;0;1;1;1;2;0;1;0 +gfx90a [0x989f];3;16;16;9;30000;0;25;8;1;8;1;-2;3;1;0;1;1;0;1;2;0;0 +gfx90a [0x989f];3;16;16;10;30000;0;25;8;1;4;1;-1;4;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;16;16;11;30000;0;26;8;1;8;1;-1;4;1;1;1;1;0;1;0;0;0 +gfx90a [0x989f];3;16;16;12;30000;0;14;8;1;6;1;1;0;0;0;0;1;0;1;2;0;0 +gfx90a [0x989f];3;16;16;16;30000;0;12;16;1;2;1;1;-1;0;1;1;1;1;2;0;1;0 +gfx90a [0x989f];3;16;16;23;30000;0;3;8;1;7;1;-1;3;1;1;0;1;1;1;2;0;0 +gfx90a [0x989f];3;16;23;16;30000;0;31;8;1;4;1;-1;-1;1;1;1;1;0;1;2;1;0 +gfx90a [0x989f];3;16;23;23;30000;0;3;8;1;11;1;-1;3;0;0;0;1;1;1;0;0;0 +gfx90a [0x989f];3;17;17;17;30000;0;12;17;1;17;1;-1;-1;0;1;0;1;0;0;2;0;0 +gfx90a [0x989f];3;17;17;23;30000;0;3;8;1;15;1;-1;0;1;1;1;1;0;1;0;1;0 +gfx90a [0x989f];3;17;17;32;30000;0;4;8;1;14;17;0;3;1;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;17;17;35;30000;0;5;17;1;4;17;-2;3;1;0;1;1;1;1;0;1;0 +gfx90a [0x989f];3;17;23;17;30000;0;4;17;1;5;1;0;-1;0;1;1;1;0;1;2;0;0 +gfx90a [0x989f];3;17;23;23;30000;0;3;17;1;17;1;0;0;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;17;32;17;30000;0;20;17;1;1;1;1;-1;1;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;17;32;35;30000;0;3;8;1;13;1;1;-2;0;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;17;35;17;30000;0;25;17;1;16;1;0;-1;1;1;0;1;1;1;2;0;0 +gfx90a [0x989f];3;17;35;32;30000;0;3;17;1;14;1;1;-1;1;1;0;1;0;1;2;0;0 +gfx90a [0x989f];3;17;35;35;30000;0;30;17;1;1;1;0;0;0;1;1;1;0;0;0;0;0 +gfx90a [0x989f];3;18;18;18;30000;0;30;18;1;11;0;0;4;0;1;0;1;0;1;0;1;0 +gfx90a [0x989f];3;18;18;23;30000;0;7;8;1;17;1;0;1;0;0;1;1;1;1;2;1;0 +gfx90a [0x989f];3;18;23;18;30000;0;4;18;1;15;1;-2;-2;1;0;1;1;0;1;2;0;0 +gfx90a [0x989f];3;18;23;23;30000;0;3;8;1;16;1;-1;6;0;0;0;1;0;1;2;1;0 +gfx90a [0x989f];3;19;19;19;30000;0;4;8;1;7;1;-2;4;1;1;0;1;1;1;2;1;0 +gfx90a [0x989f];3;19;19;23;30000;0;5;8;1;5;1;-2;0;0;0;1;1;0;1;0;1;0 +gfx90a [0x989f];3;23;23;23;30000;0;1;1;12;9;0;-2;0;0;1;0;1;1;2;1;1;0 +gfx90a [0x989f];3;32;32;32;30000;0;25;32;1;20;1;-2;0;0;1;0;1;0;2;0;0;0 +gfx90a [0x989f];3;35;17;17;30000;0;15;35;1;29;1;1;0;0;1;0;1;0;2;1;0;0 +gfx90a [0x989f];3;35;17;32;30000;0;20;35;1;1;1;0;-2;1;1;0;1;1;2;0;0;0 +gfx90a [0x989f];3;35;17;35;30000;0;7;35;1;31;1;-2;4;1;0;0;1;1;1;2;1;0 +gfx90a [0x989f];3;35;32;17;30000;0;39;35;1;35;1;1;4;0;1;1;1;1;1;0;0;0 +gfx90a [0x989f];3;35;32;35;30000;0;3;35;1;31;1;-2;0;1;1;0;1;1;1;2;0;0 +gfx90a [0x989f];3;35;35;17;30000;0;33;35;1;20;1;1;4;1;1;1;1;0;1;0;0;0 +gfx90a [0x989f];3;35;35;32;30000;0;15;35;1;35;35;-2;0;0;1;0;1;1;2;2;0;0 +gfx90a [0x989f];3;35;35;35;30000;0;2;35;1;30;0;1;-1;0;1;0;1;0;1;2;0;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_P100.csv b/src/acc/opencl/smm/params/tune_multiply_P100.csv index b183fe487b6..ad038b17ef7 100644 --- a/src/acc/opencl/smm/params/tune_multiply_P100.csv +++ b/src/acc/opencl/smm/params/tune_multiply_P100.csv @@ -1,251 +1,251 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -Tesla P100-PCIE-16GB [0x2f6c];3;2;2;2;30000;23.4;17;2;1;2;0;-2;0;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;3;3;1;30000;33.4;20;3;1;2;0;-2;-2;0;1;0;1;1;3;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;3;3;3;30000;61.7;20;3;1;2;0;-2;-2;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;4;4;4;30000;144.3;17;4;1;2;0;0;0;0;1;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;5;30000;184.7;30;5;1;3;0;0;0;0;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;7;30000;190.1;31;5;1;3;0;-1;-2;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;13;30000;218.9;60;5;1;4;0;-2;-1;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;16;30000;217.4;60;5;1;4;0;-2;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;24;30000;222.9;30;5;1;5;0;0;-2;1;1;1;1;1;2;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;5;5;26;30000;227.5;40;5;1;4;0;-1;-2;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;7;5;30000;246.9;20;5;1;2;0;0;-2;0;1;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;7;7;30000;270.9;25;5;1;3;0;-2;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;7;13;30000;294.2;30;5;1;5;0;0;-1;0;1;1;1;1;1;0;2 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;5;30000;396.8;20;5;1;4;0;0;-2;1;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;7;30000;449.7;26;5;1;4;0;1;-2;1;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;13;30000;498.4;40;5;1;2;0;0;-2;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;16;30000;461.2;20;5;1;3;0;0;-2;1;1;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;24;30000;494.4;60;5;1;4;0;-1;-1;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;13;26;30000;486.0;30;5;1;4;0;-1;2;1;1;0;1;1;1;3;1 -Tesla P100-PCIE-16GB [0x2f6c];3;5;16;5;30000;454.9;24;5;1;3;0;-2;0;1;1;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;16;13;30000;578.2;25;5;1;2;0;1;0;1;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;16;16;30000;597.7;30;5;1;2;0;-2;-2;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;16;24;30000;597.0;30;5;1;3;0;-2;-2;1;1;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;16;26;30000;594.9;30;5;1;4;0;-2;-1;1;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;24;5;30000;553.6;24;5;1;3;0;0;0;1;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;24;13;30000;677.3;40;5;1;4;0;-1;-2;0;0;0;1;1;1;3;1 -Tesla P100-PCIE-16GB [0x2f6c];3;5;24;16;30000;664.1;50;5;1;3;0;1;-1;0;1;1;1;1;2;0;1 -Tesla P100-PCIE-16GB [0x2f6c];3;5;24;24;30000;734.9;50;5;1;5;0;-1;-1;0;1;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;24;26;30000;724.8;50;5;1;2;0;-1;0;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;26;5;30000;556.3;24;5;1;2;0;-2;0;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;26;13;30000;753.2;60;5;1;2;0;1;1;1;1;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;26;16;30000;744.1;30;5;1;4;0;1;-2;1;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;5;26;24;30000;658.7;60;5;1;4;0;-1;0;0;0;1;1;1;2;3;1 -Tesla P100-PCIE-16GB [0x2f6c];3;5;26;26;30000;521.7;7;5;1;3;0;-1;-2;1;1;1;1;1;1;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;6;6;6;30000;272.0;25;6;1;5;0;1;0;0;1;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;5;5;30000;158.7;30;7;1;5;0;0;-1;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;5;7;30000;165.6;30;7;1;7;0;-2;-1;0;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;5;13;30000;190.0;1;7;1;5;0;-1;-1;1;0;0;1;0;2;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;7;7;5;30000;331.1;25;7;1;2;0;-2;0;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;7;7;30000;354.4;26;7;1;4;0;-1;-2;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;7;13;30000;394.8;30;7;1;5;0;0;-2;0;0;1;1;1;2;0;1 -Tesla P100-PCIE-16GB [0x2f6c];3;7;13;5;30000;494.5;25;7;1;6;0;-1;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;13;7;30000;571.0;26;7;1;3;0;-2;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;7;13;13;30000;654.0;30;7;1;2;0;1;0;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;8;8;8;30000;471.1;30;8;1;7;0;0;-1;1;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;9;9;30000;545.1;30;9;1;6;0;0;-2;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;9;16;30000;577.2;30;9;1;8;0;0;-1;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;9;22;30000;566.3;40;9;1;4;0;-1;-1;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;9;32;30000;546.8;50;9;1;5;0;0;0;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;16;9;30000;791.8;30;9;1;7;0;0;-2;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;16;16;30000;856.2;30;9;1;8;0;-1;0;1;1;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;16;22;30000;879.6;50;9;1;4;0;0;0;0;1;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;22;9;30000;945.7;40;9;1;8;0;-2;0;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;22;16;30000;1062.4;40;9;1;3;0;-2;-1;1;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;22;22;30000;1065.8;60;9;1;5;0;0;0;0;1;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;22;32;30000;1072.5;60;9;1;2;0;0;-2;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;32;9;30000;1113.6;50;9;1;6;0;1;0;1;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;32;22;30000;1351.2;60;9;1;3;0;-2;0;1;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;9;32;32;30000;1398.1;60;9;1;8;0;-2;0;1;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;10;10;10;30000;637.6;30;10;1;2;0;-1;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;5;30000;245.9;20;13;1;2;0;1;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;7;30000;262.0;24;13;1;12;0;-1;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;8;30000;268.9;25;13;1;11;0;-1;-1;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;13;30000;278.8;30;13;1;4;0;-1;2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;16;30000;457.6;30;13;1;9;0;-2;-1;0;1;0;1;1;2;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;24;30000;464.2;40;13;1;13;0;-1;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;5;26;30000;437.1;53;13;1;6;0;1;-2;0;0;1;1;1;1;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;13;7;5;30000;347.6;25;13;1;12;0;-1;-2;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;7;7;30000;364.8;24;13;1;5;0;-2;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;7;13;30000;433.8;30;13;1;13;0;1;0;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;8;5;30000;388.2;25;13;1;11;0;-2;-1;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;5;30000;716.0;26;13;1;12;0;-1;-2;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;7;30000;808.8;40;13;1;6;0;0;-2;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;13;30000;838.5;50;13;1;5;0;-2;-2;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;16;30000;875.5;50;13;1;8;0;1;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;24;30000;749.0;17;13;1;10;0;-1;0;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;13;26;30000;746.5;5;13;1;6;0;-2;2;1;0;1;1;1;1;0;2 -Tesla P100-PCIE-16GB [0x2f6c];3;13;16;5;30000;770.1;25;13;1;12;0;1;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;16;13;30000;982.7;50;13;1;13;0;-1;-1;1;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;16;16;30000;973.6;60;13;1;7;0;0;-1;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;16;24;30000;1050.2;60;13;1;8;0;0;0;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;16;26;30000;975.0;53;13;1;2;0;-1;0;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;24;5;30000;825.2;50;13;1;6;0;-1;2;0;1;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;24;13;30000;1175.7;40;13;1;6;0;-1;-2;1;1;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;24;16;30000;1263.4;40;13;1;4;0;-2;1;1;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;24;24;30000;1356.1;60;13;1;7;0;1;-1;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;24;26;30000;1209.2;53;13;1;6;0;-1;2;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;26;5;30000;874.1;30;13;1;11;0;-2;-1;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;26;13;30000;1295.5;60;13;1;13;0;-2;-2;1;1;1;1;1;1;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;26;16;30000;1376.1;60;13;1;4;0;1;-2;1;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;26;24;30000;1084.3;54;13;1;8;0;-1;-1;0;0;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;13;26;26;30000;1427.8;60;13;1;11;0;1;0;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;14;14;30000;908.2;50;14;1;3;0;1;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;14;16;30000;947.5;30;14;1;14;0;0;0;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;14;29;30000;834.1;5;14;1;6;0;0;0;0;0;0;1;1;1;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;16;14;30000;987.5;40;14;1;13;0;-1;-2;1;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;16;16;30000;1013.9;60;14;1;7;0;-2;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;16;29;30000;893.9;4;14;1;4;0;0;0;1;1;1;1;1;1;0;2 -Tesla P100-PCIE-16GB [0x2f6c];3;14;29;14;30000;1441.8;60;14;1;7;0;-2;-2;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;29;16;30000;1521.6;60;14;1;13;0;1;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;14;29;29;30000;1489.4;50;14;1;9;0;0;-1;1;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;15;15;15;30000;973.0;30;15;1;12;0;-2;-2;0;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;5;5;0;194.0;23;16;1;0;0;0;0;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;5;13;30000;581.2;50;16;1;16;0;-1;1;0;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;5;16;30000;592.4;40;16;1;12;0;-1;0;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;5;24;30000;439.1;6;16;1;14;0;1;1;0;0;1;1;1;2;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;5;26;30000;581.3;60;16;1;15;0;0;0;0;0;1;1;1;2;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;16;8;5;30000;462.6;25;16;1;8;0;-2;-2;0;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;8;8;30000;511.4;30;16;1;15;0;0;-2;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;9;9;30000;562.2;30;16;1;16;0;1;0;0;0;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;9;16;30000;634.9;40;16;1;7;0;0;2;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;9;22;30000;632.4;50;16;1;10;0;-2;-2;0;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;13;5;30000;786.7;24;16;1;15;0;-2;2;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;13;13;30000;1056.9;25;16;1;2;0;1;1;1;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;13;16;30000;1147.4;30;16;1;4;0;0;-2;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;13;24;30000;852.4;5;16;1;10;0;-1;-2;1;0;0;1;1;2;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;13;26;30000;1097.1;40;16;1;15;0;1;2;1;0;1;1;0;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;14;14;30000;1136.9;25;16;1;12;0;1;-2;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;14;16;30000;1169.5;30;16;1;14;0;-1;2;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;14;29;30000;901.8;7;16;1;10;0;1;0;0;0;0;1;0;1;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;5;30000;860.6;25;16;1;16;0;-1;-2;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;9;30000;1044.8;50;16;1;7;0;0;0;0;0;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;13;30000;1059.9;50;16;1;15;0;-2;0;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;14;30000;1083.5;40;16;1;15;0;0;-1;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;16;30000;1099.0;40;16;1;14;0;-1;0;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;22;30000;1128.1;60;16;1;10;0;1;-2;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;24;30000;1110.8;40;16;1;15;0;0;-2;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;26;30000;1104.1;50;16;1;11;0;0;-2;1;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;29;30000;977.5;5;16;1;6;0;1;-2;0;1;1;1;1;1;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;16;55;30000;1030.9;1;16;1;7;0;1;1;0;0;1;1;0;1;0;1 -Tesla P100-PCIE-16GB [0x2f6c];3;16;22;9;30000;1267.6;30;16;1;2;0;0;-1;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;22;16;30000;1382.6;50;16;1;8;0;1;1;1;1;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;22;22;30000;1411.9;60;16;1;12;0;1;-2;1;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;24;5;30000;877.9;25;16;1;11;0;0;-2;1;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;24;13;30000;1361.4;40;16;1;13;0;1;-2;1;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;24;16;30000;1463.5;60;16;1;4;0;-2;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;24;24;30000;1164.1;36;16;1;10;0;-1;0;0;0;1;1;0;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;24;26;30000;1158.0;7;16;1;15;0;1;0;0;0;1;1;1;1;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;26;5;30000;969.1;30;16;1;10;0;-1;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;26;13;30000;1469.9;50;16;1;5;0;1;0;1;1;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;26;16;30000;1548.9;60;16;1;6;0;-1;0;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;26;24;30000;1554.5;60;16;1;11;0;0;-1;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;26;26;30000;1486.2;50;16;1;11;0;0;-1;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;29;14;30000;1578.2;50;16;1;4;0;-1;1;1;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;29;16;30000;1569.0;50;16;1;9;0;0;0;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;29;29;30000;1555.2;50;16;1;10;0;-1;-2;0;0;1;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;29;55;30000;1359.1;17;16;1;15;0;1;0;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;55;16;30000;1411.0;45;16;1;3;0;-2;1;1;0;1;1;1;2;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;55;29;30000;1505.1;23;16;1;13;0;0;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;16;55;55;30000;1634.4;36;16;1;13;0;-1;0;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;20;20;20;30000;1396.9;50;20;1;8;0;-2;-2;0;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;9;9;30000;620.0;30;22;1;14;0;1;0;0;0;0;1;1;2;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;9;16;30000;635.4;40;22;1;21;0;-2;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;9;22;30000;642.7;60;22;1;18;0;-2;-1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;9;32;30000;603.6;27;22;1;17;0;-1;0;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;16;9;30000;955.7;50;22;1;12;0;-2;-2;1;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;16;16;30000;1124.4;50;22;1;11;0;-1;-2;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;16;22;30000;1161.8;60;22;1;21;0;0;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;22;9;30000;1371.4;60;22;1;8;0;0;2;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;22;16;30000;1475.2;50;22;1;8;0;-1;-2;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;22;22;30000;1550.1;60;22;1;19;0;0;-1;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;22;32;30000;1421.8;40;22;1;1;0;-2;0;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;32;9;30000;1594.6;50;22;1;3;0;0;1;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;32;22;30000;2044.8;60;22;1;10;0;-2;0;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;22;32;32;30000;2052.0;60;22;1;15;0;0;0;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;23;23;23;30000;1657.8;50;23;1;17;0;0;0;0;0;1;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;5;5;30000;557.5;24;24;1;1;0;-1;-1;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;5;13;30000;657.2;40;24;1;22;0;0;0;1;1;0;1;1;1;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;24;5;16;30000;652.6;50;24;1;13;0;0;-1;1;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;5;24;30000;600.1;53;24;1;1;0;-2;1;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;5;26;30000;621.4;60;24;1;20;0;0;-2;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;13;5;30000;857.0;30;24;1;20;0;1;2;1;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;13;13;30000;1145.1;25;24;1;22;0;1;1;1;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;13;16;30000;991.2;45;24;1;19;0;-1;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;13;24;30000;1111.6;50;24;1;6;0;-1;-1;0;0;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;13;26;30000;1022.9;25;24;1;22;0;-2;2;0;1;1;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;16;5;30000;980.0;40;24;1;10;0;-1;0;0;0;1;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;16;13;30000;1524.4;50;24;1;21;0;-2;2;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;16;16;30000;1541.4;60;24;1;12;0;0;-1;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;16;24;30000;1506.5;50;24;1;24;0;-1;2;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;16;26;30000;1178.7;26;24;1;24;0;0;0;1;0;1;1;1;1;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;24;5;30000;1051.1;50;24;1;23;0;1;-2;1;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;24;13;30000;1584.1;50;24;1;7;0;-1;-1;1;1;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;24;16;30000;1630.0;60;24;1;5;0;0;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;24;24;30000;1606.4;50;24;1;1;0;1;0;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;24;26;30000;1483.6;46;24;1;4;0;-1;0;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;26;5;30000;1069.4;40;24;1;20;0;0;-1;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;26;13;30000;1516.6;40;24;1;23;0;-1;-1;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;26;16;30000;1617.3;40;24;1;21;0;1;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;26;24;30000;1806.5;60;24;1;13;0;-2;0;0;0;0;1;0;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;24;26;26;30000;1777.9;60;24;1;17;0;1;0;1;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;25;25;25;30000;1779.6;60;25;1;12;0;-2;2;0;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;5;5;30000;534.8;20;26;1;1;0;-1;0;1;0;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;5;13;30000;691.2;40;26;1;13;0;-1;-2;1;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;5;16;30000;693.3;40;26;1;21;0;0;2;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;5;24;30000;520.0;25;26;1;23;0;1;-2;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;5;26;30000;524.8;3;26;1;25;0;1;1;1;1;0;1;1;2;3;2 -Tesla P100-PCIE-16GB [0x2f6c];3;26;13;5;30000;939.0;40;26;1;9;0;-1;-1;0;1;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;13;13;30000;1240.9;40;26;1;7;0;-2;0;0;0;0;1;1;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;13;16;30000;1178.2;50;26;1;22;0;0;-2;1;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;13;24;30000;1030.6;24;26;1;26;0;1;2;0;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;13;26;30000;1253.7;60;26;1;1;0;1;0;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;16;5;30000;976.2;40;26;1;11;0;0;-2;1;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;16;13;30000;1571.2;50;26;1;26;0;1;1;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;16;16;30000;1174.4;47;26;1;4;0;-1;2;1;0;1;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;16;24;30000;1579.9;60;26;1;23;0;1;-1;0;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;16;26;30000;1195.7;25;26;1;18;0;-2;-2;0;1;1;1;0;1;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;24;5;30000;1085.3;50;26;1;26;0;0;0;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;24;13;30000;1443.2;50;26;1;1;0;1;2;1;1;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;24;16;30000;1652.9;60;26;1;9;0;0;0;0;0;1;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;24;24;30000;1443.9;30;26;1;15;0;0;2;0;0;0;1;0;2;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;24;26;30000;1482.0;36;26;1;23;0;1;0;0;1;0;1;1;2;2;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;26;5;30000;1076.0;50;26;1;23;0;0;-1;0;0;0;1;0;2;1;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;26;13;30000;1654.9;60;26;1;23;0;0;-2;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;26;16;30000;1613.0;53;26;1;26;0;-1;0;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;26;24;30000;1521.5;25;26;1;17;0;1;-1;0;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;26;26;26;30000;1825.8;60;26;1;22;0;1;0;0;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;28;28;28;30000;2017.4;60;28;1;25;0;0;0;0;0;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;14;14;30000;1063.5;50;29;1;28;0;0;-1;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;14;16;30000;1124.0;60;29;1;27;0;0;0;1;1;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;14;29;30000;1086.7;7;29;1;26;0;-2;0;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;16;14;30000;1190.2;55;29;1;1;0;1;2;1;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;16;16;30000;1402.8;50;29;1;5;0;1;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;16;29;30000;1226.1;30;29;1;14;0;-2;0;1;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;16;55;30000;1096.1;9;29;1;22;0;0;0;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;29;14;30000;1676.4;40;29;1;24;0;-1;0;1;1;1;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;29;16;30000;1869.9;60;29;1;10;0;1;2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;29;29;30000;1741.8;40;29;1;25;0;-2;0;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;29;55;30000;1646.8;37;29;1;28;0;1;-2;1;1;1;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;55;16;30000;1872.0;40;29;1;27;0;0;0;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;55;29;30000;2156.0;31;29;1;17;0;0;0;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;29;55;55;30000;2066.8;5;29;1;25;0;0;0;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;30;30;30;30000;1919.2;40;30;1;1;0;-2;0;0;0;0;1;1;2;0;0 -Tesla P100-PCIE-16GB [0x2f6c];3;32;32;9;30000;1831.3;60;32;1;6;0;-1;1;1;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;32;32;22;30000;2073.6;40;32;1;1;0;-1;-1;0;1;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;32;32;32;30000;2187.8;50;32;1;1;0;1;0;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;35;35;35;30000;1744.5;18;35;1;33;0;2;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;36;36;36;30000;1823.8;36;36;1;24;0;-1;-2;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;40;40;40;0;1912.2;34;40;1;0;0;0;0;0;0;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;16;16;30000;1311.0;25;55;1;32;0;0;0;1;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;16;29;30000;1499.1;22;55;1;19;0;-1;0;1;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;16;55;30000;1080.8;8;55;1;19;0;-1;0;1;0;1;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;29;16;30000;1699.5;34;55;1;19;0;-1;-1;0;1;0;1;1;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;29;29;30000;1710.1;9;55;1;52;0;0;0;0;0;0;1;1;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;29;55;30000;1030.0;8;55;1;33;0;0;0;0;0;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;55;16;30000;2125.2;46;55;1;51;0;0;-2;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;55;29;30000;2243.0;8;55;1;29;0;0;0;0;1;0;1;0;1;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;55;55;55;30000;1768.7;8;55;1;42;0;0;0;0;0;0;1;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;64;64;64;30000;1239.7;55;64;1;1;0;0;0;0;0;0;0;0;2;3;0 -Tesla P100-PCIE-16GB [0x2f6c];3;78;78;78;30000;524.9;1;78;1;43;0;-1;1;0;1;0;1;1;0;3;2 +Tesla P100-PCIE-16GB [0x2f6c];3;2;2;2;30000;23.4;17;2;1;2;0;-2;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;3;3;1;30000;33.4;20;3;1;2;0;-2;-2;0;1;0;1;1;2;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;3;3;3;30000;61.7;20;3;1;2;0;-2;-2;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;4;4;4;30000;144.3;17;4;1;2;0;0;0;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;5;30000;184.7;30;5;1;3;0;0;0;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;7;30000;190.1;31;5;1;3;0;-1;-2;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;13;30000;218.9;60;5;1;4;0;-2;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;16;30000;217.4;60;5;1;4;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;24;30000;222.9;30;5;1;5;0;0;-2;1;1;1;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;5;26;30000;227.5;40;5;1;4;0;-1;-2;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;7;5;30000;246.9;20;5;1;2;0;0;-2;0;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;7;7;30000;270.9;25;5;1;3;0;-2;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;7;13;30000;294.2;30;5;1;5;0;0;-1;0;1;1;1;1;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;5;30000;396.8;20;5;1;4;0;0;-2;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;7;30000;449.7;26;5;1;4;0;1;-2;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;13;30000;498.4;40;5;1;2;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;16;30000;461.2;20;5;1;3;0;0;-2;1;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;24;30000;494.4;60;5;1;4;0;-1;-1;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;13;26;30000;486.0;30;5;1;4;0;-1;-1;1;1;0;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;16;5;30000;454.9;24;5;1;3;0;-2;0;1;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;16;13;30000;578.2;25;5;1;2;0;1;0;1;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;16;16;30000;597.7;30;5;1;2;0;-2;-2;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;16;24;30000;597.0;30;5;1;3;0;-2;-2;1;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;16;26;30000;594.9;30;5;1;4;0;-2;-1;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;24;5;30000;553.6;24;5;1;3;0;0;0;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;24;13;30000;677.3;40;5;1;4;0;-1;-2;0;0;0;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;24;16;30000;664.1;50;5;1;3;0;1;-1;0;1;1;1;1;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;24;24;30000;734.9;50;5;1;5;0;-1;-1;0;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;24;26;30000;724.8;50;5;1;2;0;-1;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;26;5;30000;556.3;24;5;1;2;0;-2;0;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;26;13;30000;753.2;60;5;1;2;0;1;1;1;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;26;16;30000;744.1;30;5;1;4;0;1;-2;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;26;24;30000;658.7;60;5;1;4;0;-1;0;0;0;1;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;5;26;26;30000;521.7;7;5;1;3;0;-1;-2;1;1;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;6;6;6;30000;272.0;25;6;1;5;0;1;0;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;5;5;30000;158.7;30;7;1;5;0;0;-1;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;5;7;30000;165.6;30;7;1;7;0;-2;-1;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;5;13;30000;190.0;1;7;1;5;0;-1;-1;1;0;0;1;0;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;7;5;30000;331.1;25;7;1;2;0;-2;0;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;7;7;30000;354.4;26;7;1;4;0;-1;-2;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;7;13;30000;394.8;30;7;1;5;0;0;-2;0;0;1;1;1;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;13;5;30000;494.5;25;7;1;6;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;13;7;30000;571.0;26;7;1;3;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;7;13;13;30000;654.0;30;7;1;2;0;1;0;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;8;8;8;30000;471.1;30;8;1;7;0;0;-1;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;9;9;30000;545.1;30;9;1;6;0;0;-2;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;9;16;30000;577.2;30;9;1;8;0;0;-1;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;9;22;30000;566.3;40;9;1;4;0;-1;-1;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;9;32;30000;546.8;50;9;1;5;0;0;0;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;16;9;30000;791.8;30;9;1;7;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;16;16;30000;856.2;30;9;1;8;0;-1;0;1;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;16;22;30000;879.6;50;9;1;4;0;0;0;0;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;22;9;30000;945.7;40;9;1;8;0;-2;0;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;22;16;30000;1062.4;40;9;1;3;0;-2;-1;1;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;22;22;30000;1065.8;60;9;1;5;0;0;0;0;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;22;32;30000;1072.5;60;9;1;2;0;0;-2;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;32;9;30000;1113.6;50;9;1;6;0;1;0;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;32;22;30000;1351.2;60;9;1;3;0;-2;0;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;9;32;32;30000;1398.1;60;9;1;8;0;-2;0;1;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;10;10;10;30000;637.6;30;10;1;2;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;5;30000;245.9;20;13;1;2;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;7;30000;262.0;24;13;1;12;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;8;30000;268.9;25;13;1;11;0;-1;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;13;30000;278.8;30;13;1;4;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;16;30000;457.6;30;13;1;9;0;-2;-1;0;1;0;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;24;30000;464.2;40;13;1;13;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;5;26;30000;437.1;53;13;1;6;0;1;-2;0;0;1;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;7;5;30000;347.6;25;13;1;12;0;-1;-2;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;7;7;30000;364.8;24;13;1;5;0;-2;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;7;13;30000;433.8;30;13;1;13;0;1;0;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;8;5;30000;388.2;25;13;1;11;0;-2;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;5;30000;716.0;26;13;1;12;0;-1;-2;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;7;30000;808.8;40;13;1;6;0;0;-2;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;13;30000;838.5;50;13;1;5;0;-2;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;16;30000;875.5;50;13;1;8;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;24;30000;749.0;17;13;1;10;0;-1;0;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;13;26;30000;746.5;5;13;1;6;0;-2;-1;1;0;1;1;1;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;16;5;30000;770.1;25;13;1;12;0;1;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;16;13;30000;982.7;50;13;1;13;0;-1;-1;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;16;16;30000;973.6;60;13;1;7;0;0;-1;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;16;24;30000;1050.2;60;13;1;8;0;0;0;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;16;26;30000;975.0;53;13;1;2;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;24;5;30000;825.2;50;13;1;6;0;-1;-1;0;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;24;13;30000;1175.7;40;13;1;6;0;-1;-2;1;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;24;16;30000;1263.4;40;13;1;4;0;-2;1;1;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;24;24;30000;1356.1;60;13;1;7;0;1;-1;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;24;26;30000;1209.2;53;13;1;6;0;-1;-1;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;26;5;30000;874.1;30;13;1;11;0;-2;-1;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;26;13;30000;1295.5;60;13;1;13;0;-2;-2;1;1;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;26;16;30000;1376.1;60;13;1;4;0;1;-2;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;26;24;30000;1084.3;54;13;1;8;0;-1;-1;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;13;26;26;30000;1427.8;60;13;1;11;0;1;0;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;14;14;30000;908.2;50;14;1;3;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;14;16;30000;947.5;30;14;1;14;0;0;0;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;14;29;30000;834.1;5;14;1;6;0;0;0;0;0;0;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;16;14;30000;987.5;40;14;1;13;0;-1;-2;1;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;16;16;30000;1013.9;60;14;1;7;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;16;29;30000;893.9;4;14;1;4;0;0;0;1;1;1;1;1;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;29;14;30000;1441.8;60;14;1;7;0;-2;-2;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;29;16;30000;1521.6;60;14;1;13;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;14;29;29;30000;1489.4;50;14;1;9;0;0;-1;1;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;15;15;15;30000;973.0;30;15;1;12;0;-2;-2;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;5;5;0;194.0;23;16;1;0;0;0;0;0;0;0;1;0;0;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;5;13;30000;581.2;50;16;1;16;0;-1;1;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;5;16;30000;592.4;40;16;1;12;0;-1;0;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;5;24;30000;439.1;6;16;1;14;0;1;1;0;0;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;5;26;30000;581.3;60;16;1;15;0;0;0;0;0;1;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;8;5;30000;462.6;25;16;1;8;0;-2;-2;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;8;8;30000;511.4;30;16;1;15;0;0;-2;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;9;9;30000;562.2;30;16;1;16;0;1;0;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;9;16;30000;634.9;40;16;1;7;0;0;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;9;22;30000;632.4;50;16;1;10;0;-2;-2;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;13;5;30000;786.7;24;16;1;15;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;13;13;30000;1056.9;25;16;1;2;0;1;1;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;13;16;30000;1147.4;30;16;1;4;0;0;-2;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;13;24;30000;852.4;5;16;1;10;0;-1;-2;1;0;0;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;13;26;30000;1097.1;40;16;1;15;0;1;-1;1;0;1;1;0;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;14;14;30000;1136.9;25;16;1;12;0;1;-2;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;14;16;30000;1169.5;30;16;1;14;0;-1;-1;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;14;29;30000;901.8;7;16;1;10;0;1;0;0;0;0;1;0;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;5;30000;860.6;25;16;1;16;0;-1;-2;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;9;30000;1044.8;50;16;1;7;0;0;0;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;13;30000;1059.9;50;16;1;15;0;-2;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;14;30000;1083.5;40;16;1;15;0;0;-1;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;16;30000;1099.0;40;16;1;14;0;-1;0;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;22;30000;1128.1;60;16;1;10;0;1;-2;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;24;30000;1110.8;40;16;1;15;0;0;-2;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;26;30000;1104.1;50;16;1;11;0;0;-2;1;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;29;30000;977.5;5;16;1;6;0;1;-2;0;1;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;16;55;30000;1030.9;1;16;1;7;0;1;1;0;0;1;1;0;1;0;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;22;9;30000;1267.6;30;16;1;2;0;0;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;22;16;30000;1382.6;50;16;1;8;0;1;1;1;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;22;22;30000;1411.9;60;16;1;12;0;1;-2;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;24;5;30000;877.9;25;16;1;11;0;0;-2;1;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;24;13;30000;1361.4;40;16;1;13;0;1;-2;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;24;16;30000;1463.5;60;16;1;4;0;-2;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;24;24;30000;1164.1;36;16;1;10;0;-1;0;0;0;1;1;0;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;24;26;30000;1158.0;7;16;1;15;0;1;0;0;0;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;26;5;30000;969.1;30;16;1;10;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;26;13;30000;1469.9;50;16;1;5;0;1;0;1;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;26;16;30000;1548.9;60;16;1;6;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;26;24;30000;1554.5;60;16;1;11;0;0;-1;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;26;26;30000;1486.2;50;16;1;11;0;0;-1;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;29;14;30000;1578.2;50;16;1;4;0;-1;1;1;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;29;16;30000;1569.0;50;16;1;9;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;29;29;30000;1555.2;50;16;1;10;0;-1;-2;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;29;55;30000;1359.1;17;16;1;15;0;1;0;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;55;16;30000;1411.0;45;16;1;3;0;-2;1;1;0;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;55;29;30000;1505.1;23;16;1;13;0;0;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;16;55;55;30000;1634.4;36;16;1;13;0;-1;0;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;20;20;20;30000;1396.9;50;20;1;8;0;-2;-2;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;9;9;30000;620.0;30;22;1;14;0;1;0;0;0;0;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;9;16;30000;635.4;40;22;1;21;0;-2;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;9;22;30000;642.7;60;22;1;18;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;9;32;30000;603.6;27;22;1;17;0;-1;0;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;16;9;30000;955.7;50;22;1;12;0;-2;-2;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;16;16;30000;1124.4;50;22;1;11;0;-1;-2;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;16;22;30000;1161.8;60;22;1;21;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;22;9;30000;1371.4;60;22;1;8;0;0;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;22;16;30000;1475.2;50;22;1;8;0;-1;-2;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;22;22;30000;1550.1;60;22;1;19;0;0;-1;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;22;32;30000;1421.8;40;22;1;1;0;-2;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;32;9;30000;1594.6;50;22;1;3;0;0;1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;32;22;30000;2044.8;60;22;1;10;0;-2;0;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;22;32;32;30000;2052.0;60;22;1;15;0;0;0;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;23;23;23;30000;1657.8;50;23;1;17;0;0;0;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;5;5;30000;557.5;24;24;1;1;0;-1;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;5;13;30000;657.2;40;24;1;22;0;0;0;1;1;0;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;5;16;30000;652.6;50;24;1;13;0;0;-1;1;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;5;24;30000;600.1;53;24;1;1;0;-2;1;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;5;26;30000;621.4;60;24;1;20;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;13;5;30000;857.0;30;24;1;20;0;1;-1;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;13;13;30000;1145.1;25;24;1;22;0;1;1;1;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;13;16;30000;991.2;45;24;1;19;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;13;24;30000;1111.6;50;24;1;6;0;-1;-1;0;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;13;26;30000;1022.9;25;24;1;22;0;-2;-1;0;1;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;16;5;30000;980.0;40;24;1;10;0;-1;0;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;16;13;30000;1524.4;50;24;1;21;0;-2;-1;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;16;16;30000;1541.4;60;24;1;12;0;0;-1;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;16;24;30000;1506.5;50;24;1;24;0;-1;-1;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;16;26;30000;1178.7;26;24;1;24;0;0;0;1;0;1;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;24;5;30000;1051.1;50;24;1;23;0;1;-2;1;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;24;13;30000;1584.1;50;24;1;7;0;-1;-1;1;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;24;16;30000;1630.0;60;24;1;5;0;0;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;24;24;30000;1606.4;50;24;1;1;0;1;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;24;26;30000;1483.6;46;24;1;4;0;-1;0;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;26;5;30000;1069.4;40;24;1;20;0;0;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;26;13;30000;1516.6;40;24;1;23;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;26;16;30000;1617.3;40;24;1;21;0;1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;26;24;30000;1806.5;60;24;1;13;0;-2;0;0;0;0;1;0;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;24;26;26;30000;1777.9;60;24;1;17;0;1;0;1;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;25;25;25;30000;1779.6;60;25;1;12;0;-2;-1;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;5;5;30000;534.8;20;26;1;1;0;-1;0;1;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;5;13;30000;691.2;40;26;1;13;0;-1;-2;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;5;16;30000;693.3;40;26;1;21;0;0;-1;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;5;24;30000;520.0;25;26;1;23;0;1;-2;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;5;26;30000;524.8;3;26;1;25;0;1;1;1;1;0;1;1;1;2;1;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;13;5;30000;939.0;40;26;1;9;0;-1;-1;0;1;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;13;13;30000;1240.9;40;26;1;7;0;-2;0;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;13;16;30000;1178.2;50;26;1;22;0;0;-2;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;13;24;30000;1030.6;24;26;1;26;0;1;-1;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;13;26;30000;1253.7;60;26;1;1;0;1;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;16;5;30000;976.2;40;26;1;11;0;0;-2;1;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;16;13;30000;1571.2;50;26;1;26;0;1;1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;16;16;30000;1174.4;47;26;1;4;0;-1;-1;1;0;1;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;16;24;30000;1579.9;60;26;1;23;0;1;-1;0;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;16;26;30000;1195.7;25;26;1;18;0;-2;-2;0;1;1;1;0;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;24;5;30000;1085.3;50;26;1;26;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;24;13;30000;1443.2;50;26;1;1;0;1;-1;1;1;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;24;16;30000;1652.9;60;26;1;9;0;0;0;0;0;1;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;24;24;30000;1443.9;30;26;1;15;0;0;-1;0;0;0;1;0;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;24;26;30000;1482.0;36;26;1;23;0;1;0;0;1;0;1;1;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;26;5;30000;1076.0;50;26;1;23;0;0;-1;0;0;0;1;0;1;1;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;26;13;30000;1654.9;60;26;1;23;0;0;-2;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;26;16;30000;1613.0;53;26;1;26;0;-1;0;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;26;24;30000;1521.5;25;26;1;17;0;1;-1;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;26;26;26;30000;1825.8;60;26;1;22;0;1;0;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;28;28;28;30000;2017.4;60;28;1;25;0;0;0;0;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;14;14;30000;1063.5;50;29;1;28;0;0;-1;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;14;16;30000;1124.0;60;29;1;27;0;0;0;1;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;14;29;30000;1086.7;7;29;1;26;0;-2;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;16;14;30000;1190.2;55;29;1;1;0;1;-1;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;16;16;30000;1402.8;50;29;1;5;0;1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;16;29;30000;1226.1;30;29;1;14;0;-2;0;1;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;16;55;30000;1096.1;9;29;1;22;0;0;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;29;14;30000;1676.4;40;29;1;24;0;-1;0;1;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;29;16;30000;1869.9;60;29;1;10;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;29;29;30000;1741.8;40;29;1;25;0;-2;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;29;55;30000;1646.8;37;29;1;28;0;1;-2;1;1;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;55;16;30000;1872.0;40;29;1;27;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;55;29;30000;2156.0;31;29;1;17;0;0;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;29;55;55;30000;2066.8;5;29;1;25;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;30;30;30;30000;1919.2;40;30;1;1;0;-2;0;0;0;0;1;1;1;0;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;32;32;9;30000;1831.3;60;32;1;6;0;-1;1;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;32;32;22;30000;2073.6;40;32;1;1;0;-1;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;32;32;32;30000;2187.8;50;32;1;1;0;1;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;35;35;35;30000;1744.5;18;35;1;33;0;2;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;36;36;36;30000;1823.8;36;36;1;24;0;-1;-2;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;40;40;40;0;1912.2;34;40;1;0;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;16;16;30000;1311.0;25;55;1;32;0;0;0;1;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;16;29;30000;1499.1;22;55;1;19;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;16;55;30000;1080.8;8;55;1;19;0;-1;0;1;0;1;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;29;16;30000;1699.5;34;55;1;19;0;-1;-1;0;1;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;29;29;30000;1710.1;9;55;1;52;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;29;55;30000;1030.0;8;55;1;33;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;55;16;30000;2125.2;46;55;1;51;0;0;-2;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;55;29;30000;2243.0;8;55;1;29;0;0;0;0;1;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;55;55;55;30000;1768.7;8;55;1;42;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;64;64;64;30000;1239.7;55;64;1;1;0;0;0;0;0;0;0;0;1;2;0;0 +Tesla P100-PCIE-16GB [0x2f6c];3;78;78;78;30000;524.9;1;78;1;43;0;-1;1;0;1;0;1;1;0;2;1;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_PVC.csv b/src/acc/opencl/smm/params/tune_multiply_PVC.csv index d05eacf6c53..2ce34c51e2a 100644 --- a/src/acc/opencl/smm/params/tune_multiply_PVC.csv +++ b/src/acc/opencl/smm/params/tune_multiply_PVC.csv @@ -1,376 +1,383 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;2;2;2;30000;0;4;2;1;1;0;-1;2;0;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;3;3;1;30000;0;5;3;1;2;0;-1;-2;0;1;0;1;0;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;3;3;3;30000;0;5;3;1;2;0;-1;-2;1;1;0;1;0;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;4;30000;0;10;4;1;2;0;-2;1;0;1;1;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;5;30000;0;11;4;1;4;0;1;-1;0;1;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;7;30000;0;9;4;1;2;0;1;0;0;0;1;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;9;30000;0;9;4;1;2;0;-2;0;0;0;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;10;30000;0;9;4;1;2;0;-1;2;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;13;30000;0;8;4;1;1;0;0;-1;1;0;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;15;30000;0;8;4;1;1;0;-2;0;1;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;17;30000;0;8;4;1;1;0;-1;-2;0;1;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;25;30000;0;8;4;1;2;0;-2;2;0;1;0;1;0;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;26;30000;0;9;4;1;1;0;-1;0;0;1;1;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;28;30000;0;9;4;1;1;0;1;0;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;32;30000;0;8;4;1;1;0;0;-1;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;4;30000;0;10;4;1;2;0;-1;-2;1;0;0;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;5;30000;0;10;4;1;3;0;-2;-2;0;1;0;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;7;30000;0;10;4;1;3;0;-2;-1;0;1;0;1;0;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;9;30000;0;9;4;1;1;0;-2;0;0;0;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;13;30000;0;8;4;1;1;0;-1;-2;1;1;1;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;17;30000;0;8;4;1;1;0;-2;0;1;1;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;25;30000;0;5;4;1;1;0;-1;0;1;1;0;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;32;30000;0;8;4;1;1;0;-2;-1;0;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;4;30000;0;11;4;1;2;0;-1;-2;0;1;0;1;1;3;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;5;30000;0;14;4;1;1;0;-2;-2;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;7;30000;0;12;4;1;1;0;-1;0;0;0;1;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;9;30000;0;9;4;1;2;0;-1;2;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;13;30000;0;8;4;1;1;0;-1;-2;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;4;30000;0;14;4;1;1;0;-1;-2;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;5;30000;0;12;4;1;4;0;-1;-1;0;0;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;7;30000;0;12;4;1;2;0;-1;1;0;1;0;1;1;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;9;30000;0;8;4;1;1;0;-1;-2;0;0;0;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;13;30000;0;8;4;1;4;0;-1;0;0;1;0;1;0;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;10;4;30000;0;16;4;1;4;0;-1;-1;0;1;0;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;10;10;30000;0;9;4;1;3;0;1;0;0;1;0;1;1;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;4;30000;0;16;4;1;2;0;-1;-2;0;0;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;5;30000;0;14;4;1;1;0;-2;0;0;0;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;7;30000;0;12;4;1;1;0;2;0;0;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;9;30000;0;8;4;1;2;0;-2;-2;0;1;0;1;1;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;13;30000;0;8;4;1;1;0;-2;-2;0;1;0;1;1;0;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;17;30000;0;8;4;1;1;0;-1;-1;0;1;1;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;32;30000;0;8;4;1;1;0;-1;-1;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;15;4;30000;0;14;4;1;2;0;-2;2;0;1;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;4;30000;0;12;4;1;3;0;-1;-2;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;5;30000;0;14;4;1;2;0;0;1;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;13;30000;0;8;4;1;1;0;1;-1;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;17;30000;0;8;4;1;1;0;0;-1;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;32;30000;0;8;4;1;1;0;-2;0;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;25;4;30000;0;14;4;1;2;0;-2;0;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;25;5;30000;0;12;4;1;2;0;0;0;0;1;0;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;26;4;30000;0;14;4;1;4;0;0;0;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;28;4;30000;0;17;4;1;1;0;-1;0;0;1;0;1;1;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;4;30000;0;17;4;1;2;0;0;1;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;5;30000;0;21;4;1;1;0;-1;-1;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;13;30000;0;8;4;1;1;0;-1;-2;0;1;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;17;30000;0;8;4;1;1;0;1;-1;1;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;32;30000;0;8;4;1;1;0;1;2;1;0;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;4;30000;0;14;5;1;1;0;-1;-2;0;0;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;5;30000;0;12;5;1;2;0;0;0;0;0;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;7;30000;0;12;5;1;1;0;-1;-2;0;1;1;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;9;30000;0;12;5;1;1;0;-2;-1;0;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;13;30000;0;8;5;1;1;0;-2;-2;0;0;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;17;30000;0;12;5;1;1;0;-2;-1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;25;30000;0;8;5;1;1;0;-2;-1;1;1;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;32;30000;0;8;5;1;3;0;-1;-1;0;0;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;4;30000;0;12;5;1;1;0;-1;-1;0;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;5;30000;0;9;5;1;2;0;-1;-1;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;7;30000;0;12;5;1;1;0;-1;-2;0;0;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;9;30000;0;11;5;1;1;0;-2;-1;0;1;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;13;30000;0;9;5;1;1;0;-2;2;1;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;16;30000;0;8;5;1;1;0;-2;-1;0;0;0;1;0;0;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;17;30000;0;8;5;1;1;0;-1;0;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;24;30000;0;8;5;1;1;0;-1;-1;0;0;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;26;30000;0;8;5;1;1;0;-1;0;1;0;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;32;30000;0;8;5;1;1;0;-1;-1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;4;30000;0;12;5;1;1;0;0;0;0;0;0;1;0;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;5;30000;0;13;5;1;1;0;-2;-2;0;1;0;1;0;3;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;7;30000;0;12;5;1;1;0;-2;-2;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;9;30000;0;8;5;1;1;0;0;-1;1;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;13;30000;0;8;5;1;2;0;1;0;1;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;4;30000;0;16;5;1;1;0;1;0;0;1;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;5;30000;0;16;5;1;1;0;-1;0;1;1;0;1;0;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;7;30000;0;12;5;1;1;0;-1;-2;0;1;0;1;0;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;9;30000;0;12;5;1;1;0;-1;0;1;1;1;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;4;30000;0;16;5;1;1;0;-2;-1;0;1;0;1;0;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;5;30000;0;17;5;1;1;0;-2;-1;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;7;30000;0;12;5;1;1;0;-1;-1;1;1;0;1;1;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;13;30000;0;8;5;1;1;0;-2;-1;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;16;30000;0;8;5;1;1;0;-1;0;1;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;17;30000;0;8;5;1;1;0;-2;-1;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;24;30000;0;8;5;1;1;0;-2;-1;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;26;30000;0;8;5;1;1;0;-1;-2;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;32;30000;0;8;5;1;1;0;-2;0;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;5;30000;0;16;5;1;1;0;-1;-1;1;1;1;1;1;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;13;30000;0;8;5;1;1;0;-1;-1;1;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;16;30000;0;8;5;1;1;0;-2;-1;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;24;30000;0;8;5;1;1;0;-1;-2;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;26;30000;0;8;5;1;1;0;-2;-1;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;4;30000;0;14;5;1;5;0;-2;-1;0;1;0;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;5;30000;0;17;5;1;1;0;-2;-1;0;1;0;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;13;30000;0;8;5;1;1;0;-2;-2;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;17;30000;0;8;5;1;1;0;-2;-2;0;1;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;32;30000;0;8;5;1;1;0;1;0;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;5;30000;0;23;5;1;1;0;1;0;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;13;30000;0;17;5;1;1;0;1;0;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;16;30000;0;8;5;1;1;0;1;0;1;0;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;25;4;30000;0;22;5;1;1;0;-2;0;0;1;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;5;30000;0;17;5;1;1;0;-1;-1;0;1;0;1;1;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;13;30000;0;8;5;1;1;0;1;0;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;16;30000;0;8;5;1;1;0;-1;0;1;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;4;30000;0;22;5;1;1;0;-1;0;0;1;1;1;1;3;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;5;30000;0;22;5;1;1;0;-1;-2;1;1;0;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;13;30000;0;8;5;1;1;0;0;0;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;17;30000;0;8;5;1;1;0;-2;0;0;1;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;32;30000;0;8;5;1;1;0;-2;0;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;6;30000;0;9;6;1;3;0;0;1;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;7;30000;0;12;6;1;1;0;-1;0;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;8;30000;0;13;6;1;1;0;0;0;0;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;6;30000;0;14;6;1;1;0;-1;-2;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;7;30000;0;9;6;1;3;0;0;-1;0;1;1;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;8;30000;0;9;6;1;6;0;-1;0;1;1;1;1;0;2;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;6;30000;0;14;6;1;2;0;0;0;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;7;30000;0;15;6;1;1;0;-2;0;0;1;1;1;1;0;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;8;30000;0;16;6;1;5;0;1;-2;0;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;4;30000;0;16;7;1;5;0;-2;-1;0;1;0;1;0;0;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;5;30000;0;14;7;1;7;0;-1;0;0;1;0;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;7;30000;0;12;7;1;3;0;-2;1;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;9;30000;0;9;7;1;2;0;-2;-1;0;1;1;1;0;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;13;30000;0;9;7;1;3;0;-2;0;0;1;0;1;0;2;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;4;30000;0;16;7;1;1;0;1;0;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;5;30000;0;16;7;1;1;0;1;-2;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;7;30000;0;16;7;1;1;0;-2;-2;0;1;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;9;30000;0;11;7;1;1;0;-1;-2;0;1;1;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;13;30000;0;8;7;1;5;0;-2;-2;0;1;0;1;0;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;6;30000;0;16;7;1;7;0;-1;-1;0;1;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;7;30000;0;12;7;1;1;0;-1;-2;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;8;30000;0;16;7;1;5;0;-1;-1;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;4;30000;0;14;7;1;1;0;-2;-2;1;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;5;30000;0;16;7;1;1;0;-1;-2;0;1;0;1;1;3;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;6;30000;0;16;7;1;1;0;-2;-1;0;1;1;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;7;30000;0;9;7;1;3;0;0;0;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;8;30000;0;13;7;1;1;0;-1;-1;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;9;30000;0;13;7;1;2;0;-1;0;0;1;1;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;13;30000;0;8;7;1;2;0;0;2;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;6;30000;0;16;7;1;1;0;-2;-1;1;1;1;1;0;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;7;30000;0;16;7;1;4;0;0;0;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;8;30000;0;15;7;1;4;0;-1;-1;0;1;1;1;0;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;4;30000;0;18;7;1;2;0;-1;-1;0;1;1;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;5;30000;0;18;7;1;1;0;-1;-2;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;7;30000;0;12;7;1;1;0;1;-2;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;4;30000;0;21;7;1;1;0;0;-2;0;1;0;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;5;30000;0;17;7;1;6;0;-2;-1;1;1;1;1;1;3;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;7;30000;0;14;7;1;1;0;1;-1;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;13;30000;0;11;7;1;1;0;0;-2;1;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;6;30000;0;16;8;1;4;0;-1;-1;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;7;30000;0;10;8;1;4;0;0;2;1;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;8;30000;0;9;8;1;6;0;-1;0;0;1;1;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;6;30000;0;15;8;1;4;0;-1;-1;1;1;0;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;7;30000;0;13;8;1;2;0;-2;-1;0;1;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;8;30000;0;16;8;1;1;0;-1;0;0;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;6;30000;0;12;8;1;2;0;1;-2;1;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;7;30000;0;16;8;1;1;0;-2;-2;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;8;30000;0;4;8;1;4;0;-1;1;0;1;0;1;1;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;4;30000;0;18;9;1;2;0;-1;0;0;1;0;1;0;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;5;30000;0;16;9;1;8;0;-1;-2;1;1;1;1;1;3;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;7;30000;0;12;9;1;1;0;-2;-2;0;1;1;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;9;30000;0;9;9;1;3;0;-2;1;1;1;1;1;1;3;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;13;30000;0;8;9;1;9;0;-1;0;0;1;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;4;30000;0;21;9;1;4;0;-2;-1;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;5;30000;0;16;9;1;1;0;-1;0;1;1;1;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;7;30000;0;9;9;1;9;0;-2;-1;1;1;0;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;9;30000;0;9;9;1;3;0;-1;-2;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;4;30000;0;18;9;1;1;0;-1;-1;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;5;30000;0;13;9;1;4;0;1;2;1;1;1;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;7;30000;0;11;9;1;1;0;-2;-2;1;1;0;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;4;30000;0;16;9;1;8;0;-1;-2;0;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;5;30000;0;16;9;1;5;0;0;-1;1;1;0;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;9;30000;0;9;9;1;5;0;-1;0;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;16;30000;0;11;9;1;5;0;-1;-2;1;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;22;30000;0;8;9;1;2;0;-1;0;0;1;0;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;32;30000;0;8;9;1;1;0;-1;0;0;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;13;4;30000;0;22;9;1;4;0;-1;0;1;1;0;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;9;30000;0;18;9;1;3;0;-1;-2;1;0;1;1;0;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;16;30000;0;14;9;1;1;0;-2;-1;1;1;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;22;30000;0;14;9;1;7;0;-1;-1;1;1;0;1;0;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;9;30000;0;16;9;1;1;0;0;-2;1;0;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;16;30000;0;9;9;1;1;0;1;2;1;0;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;22;30000;0;8;9;1;1;0;-1;-2;1;1;1;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;32;30000;0;8;9;1;1;0;-2;-2;1;1;1;1;1;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;9;30000;0;20;9;1;6;0;0;-1;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;22;30000;0;8;9;1;1;0;-2;2;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;32;30000;0;8;9;1;1;0;0;-1;1;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;4;4;30000;0;14;10;1;5;0;-2;-1;0;1;1;1;1;3;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;4;10;30000;0;10;10;1;5;0;0;-2;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;10;4;30000;0;16;10;1;2;0;-1;-1;1;1;1;1;1;0;2;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;10;10;30000;0;8;10;1;3;0;-1;1;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;4;30000;0;16;13;1;8;0;-1;-1;0;1;1;1;1;0;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;5;30000;0;14;13;1;5;0;-1;-1;0;1;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;7;30000;0;9;13;1;12;0;-1;0;1;1;0;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;9;30000;0;10;13;1;5;0;-1;1;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;13;30000;0;9;13;1;4;0;-2;0;0;1;1;1;1;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;17;30000;0;10;13;1;13;0;-1;0;1;1;0;1;0;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;32;30000;0;9;13;1;13;0;-2;1;0;1;1;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;4;30000;0;13;13;1;5;0;-1;1;0;1;0;1;0;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;5;30000;0;9;13;1;4;0;-1;0;1;1;1;1;1;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;7;30000;0;9;13;1;9;0;-1;-2;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;13;30000;0;9;13;1;6;0;-1;-2;0;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;16;30000;0;9;13;1;3;0;-2;0;0;1;1;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;17;30000;0;9;13;1;6;0;-2;0;0;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;24;30000;0;8;13;1;3;0;-1;-1;0;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;26;30000;0;8;13;1;7;0;-1;-2;0;1;0;1;0;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;32;30000;0;10;13;1;1;0;-2;-1;1;1;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;4;30000;0;14;13;1;1;0;-2;-2;0;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;5;30000;0;23;13;1;4;0;-1;0;0;1;1;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;7;30000;0;16;13;1;2;0;-1;0;1;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;13;30000;0;10;13;1;8;0;-2;-2;1;1;0;1;1;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;9;4;30000;0;15;13;1;11;0;-1;0;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;4;30000;0;26;13;1;1;0;-1;-2;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;5;30000;0;23;13;1;5;0;-1;0;1;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;7;30000;0;18;13;1;1;0;-1;0;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;13;30000;0;8;13;1;5;0;-1;1;0;1;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;17;30000;0;8;13;1;1;0;-1;0;1;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;32;30000;0;8;13;1;1;0;-2;0;1;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;16;5;30000;0;21;13;1;2;0;-2;0;1;1;0;1;1;0;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;4;30000;0;22;13;1;3;0;-1;-2;1;1;0;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;5;30000;0;20;13;1;9;0;0;0;1;1;1;1;0;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;13;30000;0;16;13;1;4;0;0;-1;1;1;0;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;17;30000;0;8;13;1;2;0;-1;-1;0;1;0;1;0;3;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;32;30000;0;9;13;1;1;0;0;2;1;1;1;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;24;5;30000;0;23;13;1;6;0;1;-1;1;1;1;1;0;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;26;5;30000;0;18;13;1;6;0;0;-1;1;1;0;1;0;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;4;30000;0;25;13;1;11;0;0;0;1;1;0;1;1;2;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;5;30000;0;29;13;1;6;0;1;-2;1;1;0;1;0;2;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;13;30000;0;9;13;1;1;0;-2;2;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;17;30000;0;8;13;1;1;0;-2;1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;32;30000;0;21;13;1;1;0;0;0;1;0;0;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;15;4;4;30000;0;14;15;1;1;0;-2;2;0;1;1;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;15;15;15;30000;0;8;15;1;12;0;-1;-1;0;1;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;5;30000;0;17;16;1;13;0;-2;-2;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;13;30000;0;9;16;1;16;0;-2;-2;0;1;0;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;16;30000;0;9;16;1;9;0;-2;0;0;1;0;1;0;3;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;24;30000;0;8;16;1;14;0;-1;0;1;1;1;1;0;3;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;26;30000;0;8;16;1;14;0;-2;0;1;1;0;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;7;3;30000;0;23;16;1;5;0;-1;-2;0;1;1;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;9;30000;0;14;16;1;8;0;-1;-1;0;1;0;1;0;2;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;16;30000;0;9;16;1;11;0;-1;0;0;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;22;30000;0;6;16;1;10;0;0;0;0;1;0;1;1;3;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;13;5;30000;0;20;16;1;10;0;-1;0;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;5;30000;0;32;16;1;1;0;-2;2;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;9;30000;0;21;16;1;13;0;-1;-1;0;1;1;1;0;1;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;16;30000;0;8;16;1;5;0;-2;2;0;1;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;22;30000;0;21;16;1;1;0;-1;0;1;1;1;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;9;30000;0;9;16;1;5;0;-2;2;0;1;1;1;0;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;16;30000;0;9;16;1;1;0;1;1;1;1;1;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;22;30000;0;11;16;1;15;0;0;-2;0;1;0;1;1;3;1;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;24;5;30000;0;18;16;1;13;0;-2;-2;1;1;1;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;26;5;30000;0;19;16;1;7;0;1;-2;1;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;4;30000;0;16;17;1;7;0;-1;-1;0;1;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;5;30000;0;14;17;1;2;0;-1;1;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;13;30000;0;9;17;1;6;0;-1;0;1;1;0;1;0;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;17;30000;0;8;17;1;10;0;-2;0;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;32;30000;0;8;17;1;1;0;-2;2;0;1;0;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;4;30000;0;17;17;1;10;0;-1;-2;0;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;5;30000;0;16;17;1;15;0;-2;-2;1;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;13;30000;0;15;17;1;10;0;-1;-2;0;1;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;17;30000;0;8;17;1;10;0;-1;-2;0;1;1;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;32;30000;0;8;17;1;1;0;-1;-2;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;4;30000;0;15;17;1;16;0;1;-2;1;1;1;1;0;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;5;30000;0;19;17;1;2;0;-1;0;1;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;13;30000;0;14;17;1;7;0;-1;-2;0;1;0;1;1;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;17;30000;0;8;17;1;16;0;-1;0;1;1;0;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;32;30000;0;8;17;1;1;0;-1;-2;1;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;4;30000;0;21;17;1;11;0;1;-2;0;1;1;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;5;30000;0;22;17;1;7;0;-2;2;0;1;0;1;0;2;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;13;30000;0;41;17;1;7;0;0;-2;0;1;0;1;0;2;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;17;30000;0;4;17;1;6;0;1;-1;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;32;30000;0;8;17;1;4;0;-2;2;1;1;0;1;0;3;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;4;30000;0;26;17;1;12;0;0;-2;1;1;0;1;1;2;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;5;30000;0;21;17;1;11;0;-1;-2;1;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;13;30000;0;22;17;1;5;0;-1;2;0;1;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;17;30000;0;41;17;1;11;0;-1;1;1;1;0;1;1;1;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;32;30000;0;11;17;1;1;0;0;1;1;0;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;20;20;20;30000;0;3;20;1;16;0;-1;0;1;1;1;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;9;30000;0;9;22;1;6;0;-1;0;1;1;0;1;0;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;16;30000;0;23;22;1;11;0;-1;2;0;1;0;1;1;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;22;30000;0;8;22;1;11;0;-1;2;0;1;0;1;1;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;32;30000;0;8;22;1;1;0;-1;0;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;9;30000;0;19;22;1;4;0;-2;2;1;1;1;1;0;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;16;30000;0;9;22;1;21;0;-2;0;0;1;1;1;1;0;0;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;22;30000;0;9;22;1;10;0;-2;-1;0;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;9;30000;0;42;22;1;11;0;0;2;0;1;0;1;0;1;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;16;30000;0;15;22;1;1;0;-1;1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;22;30000;0;8;22;1;1;0;-2;1;0;0;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;32;30000;0;8;22;1;1;0;-1;1;0;0;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;9;30000;0;30;22;1;14;0;-2;0;1;0;1;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;22;30000;0;8;22;1;16;0;1;0;0;1;1;1;0;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;32;30000;0;8;22;1;1;0;1;1;0;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;23;23;23;30000;0;8;23;1;1;0;-1;1;1;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;5;30000;0;16;24;1;11;0;-2;2;1;0;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;13;30000;0;8;24;1;6;0;-1;0;0;1;1;1;1;3;2;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;16;30000;0;8;24;1;14;0;-1;0;0;1;0;1;1;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;13;5;30000;0;19;24;1;13;0;-2;-2;1;1;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;16;5;30000;0;27;24;1;1;0;-1;0;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;24;30000;0;13;24;1;13;0;0;-2;0;0;0;1;0;2;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;26;30000;0;11;24;1;9;0;0;0;0;0;0;1;1;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;32;30000;0;8;24;1;1;0;-1;1;0;1;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;24;30000;0;8;24;1;1;0;-2;1;1;0;0;1;1;2;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;26;30000;0;11;24;1;24;0;-1;0;0;0;0;1;1;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;32;30000;0;8;24;1;1;0;-1;1;0;0;1;1;0;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;24;30000;0;11;24;1;6;0;1;-1;0;0;1;1;0;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;26;30000;0;9;24;1;15;0;-2;-1;0;0;0;1;1;2;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;32;30000;0;17;24;1;21;0;0;0;0;0;0;1;1;1;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;4;4;30000;0;15;25;1;9;0;-1;-2;1;1;0;1;1;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;4;5;30000;0;12;25;1;4;0;-1;1;0;1;0;1;0;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;5;4;30000;0;16;25;1;18;0;-2;-1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;25;25;30000;0;8;25;1;1;0;-1;1;1;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;4;4;30000;0;15;26;1;15;0;-1;0;0;1;1;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;5;30000;0;14;26;1;6;0;-1;0;0;0;0;1;0;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;13;30000;0;15;26;1;16;0;-1;0;0;0;1;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;16;30000;0;15;26;1;15;0;-1;-2;0;0;0;1;0;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;13;5;30000;0;20;26;1;3;0;-2;2;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;16;5;30000;0;22;26;1;8;0;-2;1;1;1;0;1;1;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;24;30000;0;11;26;1;23;0;-2;-2;1;0;0;1;0;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;26;30000;0;8;26;1;1;0;-2;1;0;0;1;1;1;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;32;30000;0;5;26;1;15;0;-1;0;1;0;0;1;1;1;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;24;30000;0;8;26;1;1;0;-1;1;0;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;26;30000;0;14;26;1;1;0;-2;1;1;0;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;32;30000;0;15;26;1;1;0;1;1;1;0;1;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;24;30000;0;8;26;1;14;0;-1;0;1;0;0;1;1;2;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;26;30000;0;12;26;1;25;0;0;-2;1;0;0;1;1;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;32;30000;0;15;26;1;1;0;0;1;1;0;0;1;1;0;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;28;4;4;30000;0;11;28;1;28;0;-1;-2;1;1;1;1;1;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;28;28;28;30000;0;15;28;1;1;0;0;2;0;0;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;30;30;30;30000;0;9;30;1;1;0;-1;1;1;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;4;30000;0;12;32;1;22;0;-1;0;0;0;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;5;30000;0;8;32;1;22;0;-1;-1;0;0;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;13;30000;0;8;32;1;1;0;-1;-1;0;0;0;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;17;30000;0;8;32;1;1;0;-2;-1;0;0;0;1;0;3;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;32;30000;0;8;32;1;1;0;-1;-2;0;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;4;30000;0;13;32;1;4;0;-1;-1;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;5;30000;0;12;32;1;9;0;-1;-1;0;1;0;1;0;0;2;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;13;30000;0;9;32;1;22;0;-2;-2;0;1;0;1;0;3;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;17;30000;0;8;32;1;22;0;-1;2;0;1;1;1;1;0;3;1 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;32;30000;0;8;32;1;20;0;-1;-1;1;1;0;1;1;0;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;4;30000;0;22;32;1;3;0;-1;1;0;1;0;1;0;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;5;30000;0;22;32;1;30;0;-1;0;1;1;1;1;1;3;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;13;30000;0;21;32;1;30;0;-1;0;1;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;17;30000;0;9;32;1;10;0;-2;2;1;1;0;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;32;30000;0;9;32;1;19;0;-2;2;0;1;1;1;0;3;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;4;30000;0;41;32;1;28;0;1;-2;0;0;1;1;1;0;3;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;5;30000;0;44;32;1;15;0;-2;2;0;1;1;1;0;1;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;13;30000;0;12;32;1;14;0;0;1;0;1;0;1;0;1;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;17;30000;0;16;32;1;20;0;1;-1;0;1;1;1;1;2;2;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;32;30000;0;2;32;1;1;0;-2;0;0;0;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;22;22;30000;0;10;3;1;24;0;1;-1;0;1;0;1;0;1;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;22;32;30000;0;8;2;2;1;0;-1;-1;1;0;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;24;30000;0;15;32;1;1;0;0;1;0;0;0;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;26;30000;0;16;32;1;1;0;1;1;1;0;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;32;30000;0;15;32;1;1;0;0;1;1;0;0;1;0;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;24;30000;0;15;32;1;1;0;1;1;0;0;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;26;30000;0;15;32;1;1;0;-2;1;0;0;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;32;30000;0;15;32;1;1;0;-2;1;0;0;1;1;1;3;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;4;30000;0;17;32;1;19;0;-1;-2;0;1;1;1;1;2;1;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;5;30000;0;23;32;1;15;0;-2;0;0;1;0;1;1;3;3;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;9;30000;0;26;32;1;2;0;0;-1;1;0;1;1;0;2;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;13;30000;0;13;32;1;7;0;-2;2;0;1;1;1;1;2;0;2 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;17;30000;0;11;32;1;1;0;-1;1;1;1;1;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;22;30000;0;8;32;1;1;0;-2;1;1;1;0;1;0;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;24;30000;0;8;32;1;1;0;-2;1;0;1;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;26;30000;0;9;32;1;1;0;-2;1;1;0;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;32;30000;0;8;32;1;1;0;-1;1;0;0;0;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;35;35;35;30000;0;30;35;1;1;0;0;2;1;0;1;1;1;0;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;36;36;36;30000;0;9;2;3;1;0;1;1;1;0;0;1;0;0;1;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;40;40;40;30000;0;8;5;1;1;0;0;1;1;0;0;1;1;1;0;0 -Intel(R) Data Center GPU Max 1550 [0x0bd5];3;45;45;45;30000;0;11;45;1;1;0;0;1;1;0;1;1;0;2;3;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;2;2;2;30000;0;4;2;1;1;0;0;0;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;3;3;1;30000;0;5;3;1;1;1;-2;4;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;3;3;3;30000;0;5;3;1;3;1;-1;-1;0;1;0;1;0;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;4;30000;0;5;4;1;1;1;-2;-1;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;5;30000;0;11;4;1;4;0;0;-1;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;7;30000;0;11;4;1;2;1;-1;2;0;0;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;9;30000;0;9;4;1;4;1;-2;-2;0;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;10;30000;0;9;4;1;2;0;-1;-1;0;1;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;13;30000;0;8;4;1;1;0;0;-1;1;0;0;1;0;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;15;30000;0;8;4;1;1;1;-2;0;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;17;30000;0;8;4;1;1;1;-1;5;0;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;25;30000;0;8;4;1;1;1;-1;-1;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;26;30000;0;8;4;1;1;1;-1;-1;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;28;30000;0;8;4;1;1;1;-2;4;0;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;4;32;30000;0;8;4;1;1;1;-2;4;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;4;30000;0;11;4;1;4;1;0;-1;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;5;30000;0;10;4;1;3;1;-1;6;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;7;30000;0;12;4;1;3;1;-2;5;0;0;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;9;30000;0;9;4;1;1;1;-2;2;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;13;30000;0;8;4;1;1;1;-1;-1;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;17;30000;0;8;4;1;1;1;-2;4;1;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;25;30000;0;8;4;1;1;1;-2;4;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;5;32;30000;0;8;4;1;1;1;-2;-1;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;4;30000;0;11;4;1;2;0;-1;-2;0;1;0;1;1;2;1;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;5;30000;0;12;4;1;1;1;-2;-1;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;7;30000;0;12;4;1;2;1;-1;0;0;1;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;9;30000;0;9;4;1;2;1;1;-1;1;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;7;13;30000;0;8;4;1;1;0;-1;-2;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;4;30000;0;14;4;1;1;0;-1;-2;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;5;30000;0;12;4;1;4;0;-1;-1;0;0;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;7;30000;0;11;4;1;4;1;-1;6;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;9;30000;0;8;4;1;1;0;-1;-2;0;0;0;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;9;13;30000;0;8;4;1;1;1;-1;4;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;10;4;30000;0;16;4;1;1;1;-2;-2;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;10;10;30000;0;9;4;1;1;1;-1;-2;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;4;30000;0;16;4;1;2;0;-1;-2;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;5;30000;0;14;4;1;4;1;-1;0;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;7;30000;0;12;4;1;3;1;-2;4;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;9;30000;0;8;4;1;2;0;-2;-2;0;1;0;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;13;30000;0;8;4;1;1;1;0;3;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;17;30000;0;8;4;1;1;1;-2;3;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;13;32;30000;0;8;4;1;1;1;-2;0;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;15;4;30000;0;14;4;1;2;0;-2;-1;0;1;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;4;30000;0;14;4;1;1;1;1;3;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;5;30000;0;14;4;1;2;1;0;1;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;13;30000;0;8;4;1;1;1;1;5;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;17;30000;0;8;4;1;1;0;-1;2;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;17;32;30000;0;8;4;1;1;0;-2;0;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;25;4;30000;0;14;4;1;2;0;-2;0;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;25;5;30000;0;14;4;1;1;1;1;0;0;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;26;4;30000;0;14;4;1;4;0;0;0;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;28;4;30000;0;17;4;1;1;0;-1;0;0;1;0;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;4;30000;0;20;4;1;2;1;0;0;1;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;5;30000;0;21;4;1;1;1;-2;0;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;13;30000;0;8;4;1;1;1;1;0;0;1;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;17;30000;0;8;4;1;1;1;-2;-1;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;4;32;32;30000;0;8;4;1;1;1;0;-2;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;4;30000;0;12;5;1;1;0;-1;0;1;0;1;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;5;30000;0;13;5;1;1;1;-2;2;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;7;30000;0;12;5;1;1;1;-1;-1;0;1;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;9;30000;0;12;5;1;1;1;-1;0;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;13;30000;0;9;5;1;1;1;-2;4;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;17;30000;0;8;5;1;1;1;-2;-1;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;25;30000;0;8;5;1;1;1;-2;-2;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;4;32;30000;0;8;5;1;1;1;-2;5;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;4;30000;0;12;5;1;1;1;-2;-1;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;5;30000;0;9;5;1;3;1;-1;0;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;7;30000;0;11;5;1;1;1;-1;4;0;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;9;30000;0;12;5;1;1;1;-2;0;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;13;30000;0;9;5;1;1;0;-2;-1;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;16;30000;0;8;5;1;1;1;-2;-2;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;17;30000;0;8;5;1;1;1;-2;-2;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;24;30000;0;8;5;1;1;0;-1;-1;0;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;26;30000;0;8;5;1;1;0;-1;0;1;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;5;32;30000;0;8;5;1;1;1;-2;-1;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;4;30000;0;12;5;1;1;1;-2;4;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;5;30000;0;12;5;1;1;1;-2;4;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;7;30000;0;12;5;1;1;1;-2;0;0;1;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;9;30000;0;11;5;1;1;1;0;3;0;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;7;13;30000;0;8;5;1;1;1;1;0;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;4;30000;0;16;5;1;1;1;1;3;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;5;30000;0;16;5;1;1;1;-1;3;0;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;7;30000;0;12;5;1;1;1;-2;-1;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;9;9;30000;0;12;5;1;1;0;-1;0;1;1;1;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;4;30000;0;16;5;1;1;1;-1;-1;0;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;5;30000;0;17;5;1;1;1;-2;-1;1;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;7;30000;0;14;5;1;1;1;-1;-2;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;13;30000;0;8;5;1;1;1;-2;0;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;16;30000;0;8;5;1;1;1;-1;2;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;17;30000;0;8;5;1;1;1;-2;-1;1;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;24;30000;0;8;5;1;1;1;-2;5;1;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;26;30000;0;8;5;1;1;1;-1;2;0;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;13;32;30000;0;8;5;1;1;1;-1;0;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;5;30000;0;16;5;1;1;0;-1;-1;1;1;1;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;13;30000;0;8;5;1;1;1;-2;-2;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;16;30000;0;8;5;1;1;1;-2;-1;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;24;30000;0;8;5;1;1;1;-2;-2;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;16;26;30000;0;8;5;1;1;1;-1;4;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;4;30000;0;17;5;1;1;1;1;-1;0;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;5;30000;0;14;5;1;1;1;-1;2;1;1;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;13;30000;0;8;5;1;1;1;-1;4;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;17;30000;0;8;5;1;1;1;-1;2;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;17;32;30000;0;8;5;1;1;1;-1;-2;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;5;30000;0;22;5;1;1;1;0;0;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;13;30000;0;17;5;1;1;1;1;5;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;24;16;30000;0;17;5;1;1;1;-1;2;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;25;4;30000;0;21;5;1;1;1;1;3;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;5;30000;0;22;5;1;1;1;-1;-2;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;13;30000;0;8;5;1;1;1;0;0;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;26;16;30000;0;8;5;1;1;1;0;2;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;4;30000;0;22;5;1;1;1;-1;3;1;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;5;30000;0;23;5;1;1;1;-1;0;1;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;13;30000;0;8;5;1;1;1;1;0;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;17;30000;0;8;5;1;1;1;0;4;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;5;32;32;30000;0;8;5;1;1;1;-1;0;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;6;30000;0;9;6;1;2;1;-2;-2;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;7;30000;0;10;6;1;1;1;-1;-2;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;6;8;30000;0;14;6;1;1;1;-1;-2;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;6;30000;0;14;6;1;1;1;-2;-2;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;7;30000;0;11;6;1;1;1;-1;4;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;7;8;30000;0;11;6;1;5;1;0;3;0;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;6;30000;0;16;6;1;4;1;-2;5;0;0;1;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;7;30000;0;16;6;1;1;1;-1;3;0;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;6;8;8;30000;0;16;6;1;5;1;0;0;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;4;30000;0;16;7;1;1;1;-2;6;0;0;0;1;0;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;5;30000;0;16;7;1;3;1;-2;-1;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;7;30000;0;10;7;1;1;1;-1;0;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;9;30000;0;12;7;1;2;1;-2;1;0;0;1;1;0;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;4;13;30000;0;10;7;1;1;1;0;5;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;4;30000;0;16;7;1;5;1;1;3;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;5;30000;0;17;7;1;1;1;-2;0;0;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;7;30000;0;14;7;1;1;1;-2;-1;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;9;30000;0;11;7;1;1;1;-2;3;1;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;5;13;30000;0;8;7;1;6;1;0;2;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;6;30000;0;16;7;1;1;1;-1;0;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;7;30000;0;11;7;1;1;1;-1;2;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;6;8;30000;0;11;7;1;7;1;-1;6;0;0;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;4;30000;0;16;7;1;1;1;-2;4;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;5;30000;0;17;7;1;1;1;-1;-1;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;6;30000;0;16;7;1;1;1;-2;-2;1;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;7;30000;0;9;7;1;2;1;0;-2;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;8;30000;0;16;7;1;1;1;-2;3;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;9;30000;0;11;7;1;7;1;0;3;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;7;13;30000;0;11;7;1;1;1;-1;5;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;6;30000;0;16;7;1;1;1;-2;-1;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;7;30000;0;16;7;1;1;1;-2;0;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;8;8;30000;0;16;7;1;2;1;-2;-1;0;1;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;4;30000;0;16;7;1;1;1;-1;2;0;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;5;30000;0;17;7;1;1;1;-1;4;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;9;7;30000;0;17;7;1;1;1;-1;4;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;4;30000;0;17;7;1;1;1;0;-1;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;5;30000;0;17;7;1;2;1;-2;1;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;7;30000;0;14;7;1;1;1;-1;-1;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;7;13;13;30000;0;8;7;1;1;1;-2;-1;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;6;30000;0;16;8;1;1;1;-1;2;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;7;30000;0;13;8;1;5;1;0;0;0;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;6;8;30000;0;10;8;1;5;1;-1;4;0;1;1;1;0;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;6;30000;0;16;8;1;1;1;-1;2;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;7;30000;0;13;8;1;2;1;0;2;1;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;7;8;30000;0;16;8;1;1;1;-2;3;0;0;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;6;30000;0;18;8;1;1;1;-2;2;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;7;30000;0;15;8;1;1;1;-2;-1;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;8;8;8;30000;0;4;8;1;3;0;-1;1;0;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;4;30000;0;12;1;4;1;0;-1;0;0;1;0;1;1;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;5;30000;0;16;9;1;1;1;-1;-2;0;1;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;7;30000;0;14;9;1;1;1;-2;-1;0;1;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;9;30000;0;9;9;1;5;1;-1;0;0;1;0;1;0;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;4;13;30000;0;8;9;1;2;1;-1;-1;0;1;1;1;0;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;4;30000;0;16;9;1;1;1;-2;-2;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;5;30000;0;16;9;1;1;1;-1;-2;0;1;1;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;7;30000;0;16;9;1;1;1;-1;-2;0;1;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;5;9;30000;0;11;9;1;1;1;-1;-2;1;1;1;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;4;30000;0;18;9;1;1;1;-1;-1;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;5;30000;0;16;9;1;1;1;-1;-2;1;0;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;7;7;30000;0;13;9;1;1;1;-2;-1;0;0;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;4;30000;0;20;9;1;7;1;1;-1;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;5;30000;0;17;9;1;1;1;-1;-1;1;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;9;30000;0;9;9;1;4;1;-1;1;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;16;30000;0;11;9;1;5;0;-1;-2;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;22;30000;0;8;9;1;2;0;-1;0;0;1;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;9;32;30000;0;8;9;1;1;0;-1;-1;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;13;4;30000;0;20;9;1;1;1;-1;0;1;1;0;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;9;30000;0;18;9;1;6;1;-2;-1;1;1;1;1;0;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;16;30000;0;15;9;1;1;1;-2;-1;1;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;16;22;30000;0;12;9;1;1;1;1;0;1;1;1;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;9;30000;0;17;9;1;6;1;0;-1;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;16;30000;0;8;9;1;6;1;1;0;1;0;0;1;0;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;22;30000;0;9;9;1;3;1;-1;-1;1;0;0;1;0;1;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;22;32;30000;0;8;9;1;1;1;1;-1;0;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;9;30000;0;22;9;1;9;1;-2;-2;1;0;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;22;30000;0;21;9;1;1;1;1;0;1;0;1;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;9;32;32;30000;0;8;9;1;1;1;1;-1;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;4;4;30000;0;16;10;1;1;1;-2;-2;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;4;10;30000;0;9;10;1;2;1;-1;-1;0;0;1;1;1;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;10;4;30000;0;20;10;1;2;1;-1;-2;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;10;10;10;30000;0;8;10;1;6;1;-1;-2;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;4;30000;0;16;13;1;8;1;-1;-2;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;5;30000;0;14;13;1;5;0;-1;-1;0;1;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;7;30000;0;13;13;1;12;1;-2;0;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;9;30000;0;10;13;1;4;1;-1;1;0;0;0;1;0;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;13;30000;0;9;13;1;4;1;-1;1;1;0;0;1;0;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;17;30000;0;8;13;1;13;1;-2;-2;0;1;0;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;4;32;30000;0;8;13;1;8;1;-2;0;0;1;1;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;4;30000;0;16;13;1;5;1;-1;1;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;5;30000;0;16;13;1;10;1;-1;-2;0;0;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;7;30000;0;13;13;1;2;1;-1;-1;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;13;30000;0;9;13;1;6;0;-1;-2;0;1;0;1;1;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;16;30000;0;8;13;1;10;1;-2;-1;1;0;0;1;0;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;17;30000;0;9;13;1;6;0;-2;0;0;1;0;1;1;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;24;30000;0;8;13;1;3;0;-1;-1;0;1;0;1;1;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;26;30000;0;8;13;1;7;0;-1;-2;0;1;0;1;0;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;5;32;30000;0;8;13;1;1;1;-2;0;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;4;30000;0;17;13;1;1;1;-2;-1;0;0;1;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;5;30000;0;17;13;1;1;1;-2;-2;0;1;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;7;30000;0;16;13;1;2;0;-1;0;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;7;13;30000;0;9;13;1;4;1;-2;-2;1;1;1;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;9;4;30000;0;16;13;1;1;1;-1;0;1;1;1;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;4;30000;0;26;13;1;1;0;-1;-2;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;5;30000;0;18;13;1;7;1;-1;-2;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;7;30000;0;23;13;1;1;1;-2;-1;1;1;1;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;13;30000;0;8;13;1;3;1;-1;0;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;17;30000;0;8;13;1;1;0;-2;-1;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;13;32;30000;0;8;13;1;1;1;-1;-2;1;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;16;5;30000;0;21;13;1;8;1;-1;-2;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;4;30000;0;22;13;1;3;0;-1;-2;1;1;0;1;0;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;5;30000;0;18;13;1;10;1;1;-2;1;0;1;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;13;30000;0;9;13;1;9;1;1;-1;0;1;0;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;17;30000;0;8;13;1;1;0;-2;1;1;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;17;32;30000;0;11;13;1;1;0;-1;-1;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;24;5;30000;0;23;13;1;6;0;1;-1;1;1;1;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;26;5;30000;0;26;13;1;4;1;0;0;1;1;0;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;4;30000;0;25;13;1;11;0;0;0;1;1;0;1;1;1;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;5;30000;0;30;13;1;9;1;0;0;1;0;0;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;13;30000;0;10;13;1;1;0;1;1;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;17;30000;0;8;13;1;1;0;-1;1;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;13;32;32;30000;0;8;13;1;1;1;-2;1;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;15;4;4;30000;0;16;15;1;1;1;-2;-1;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;15;15;15;30000;0;8;15;1;11;0;-2;-2;0;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;5;30000;0;16;16;1;14;1;-2;-1;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;13;30000;0;8;8;1;13;1;-1;2;0;0;0;1;1;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;16;30000;0;8;16;1;11;1;-2;-1;0;1;1;1;1;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;24;30000;0;8;16;1;7;1;-1;-1;1;1;1;1;0;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;5;26;30000;0;8;16;1;14;0;-2;0;1;1;0;1;0;0;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;7;3;30000;0;23;16;1;5;0;-1;-2;0;1;1;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;9;30000;0;14;16;1;5;1;-1;-1;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;16;30000;0;8;16;1;1;0;-1;-2;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;9;22;30000;0;8;16;1;1;1;-1;-2;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;13;5;30000;0;20;16;1;10;0;-1;0;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;5;30000;0;30;16;1;1;1;-1;-2;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;9;30000;0;26;16;1;1;1;-1;0;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;16;30000;0;8;16;1;3;1;-2;1;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;16;22;30000;0;21;16;1;1;0;-2;0;1;0;1;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;9;30000;0;9;16;1;1;1;0;1;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;16;30000;0;8;16;1;1;0;0;1;1;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;22;22;30000;0;8;16;1;1;1;0;1;1;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;24;5;30000;0;21;16;1;14;1;-1;0;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;16;26;5;30000;0;22;16;1;6;1;1;-1;1;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;4;30000;0;16;17;1;9;1;-1;-1;0;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;5;30000;0;17;17;1;3;1;-1;-2;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;13;30000;0;9;17;1;1;1;-1;0;0;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;17;30000;0;8;17;1;6;1;-1;0;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;4;32;30000;0;8;17;1;1;1;-2;0;1;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;4;30000;0;17;17;1;10;0;-1;-2;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;5;30000;0;16;17;1;14;0;-1;-1;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;13;30000;0;8;17;1;5;1;-1;1;0;1;0;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;17;30000;0;8;17;1;2;0;-1;-2;0;1;0;1;1;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;5;32;30000;0;8;17;1;1;1;-2;0;1;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;4;30000;0;19;17;1;1;1;-1;0;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;5;30000;0;22;17;1;2;1;-1;0;1;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;13;30000;0;14;17;1;1;1;-2;0;1;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;17;30000;0;14;17;1;1;1;-2;-2;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;13;32;30000;0;8;17;1;1;1;-1;0;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;4;30000;0;21;17;1;6;1;-2;1;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;5;30000;0;22;17;1;11;1;-2;0;0;0;1;1;1;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;13;30000;0;9;17;1;1;0;0;1;1;1;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;17;30000;0;8;17;1;14;1;-1;-1;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;32;30000;0;8;17;1;1;1;-1;1;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;17;35;30000;0;8;17;1;1;1;-1;1;1;1;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;4;30000;0;36;17;1;10;1;-2;-1;0;0;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;5;30000;0;20;17;1;1;0;-2;1;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;13;30000;0;11;17;1;1;0;-2;1;1;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;17;30000;0;8;17;1;1;0;1;1;0;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;32;30000;0;8;17;1;1;1;0;1;0;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;32;35;30000;0;8;17;1;1;0;-2;1;1;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;35;17;30000;0;11;17;1;17;1;0;0;0;0;1;1;0;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;35;32;30000;0;8;17;1;1;1;-1;1;1;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;17;35;35;30000;0;15;17;1;1;1;0;1;1;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;20;20;20;30000;0;4;20;1;1;1;-1;1;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;9;30000;0;14;22;1;14;1;-1;-2;0;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;16;30000;0;8;22;1;1;0;-1;-2;1;1;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;22;30000;0;8;22;1;1;1;-1;0;0;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;9;32;30000;0;8;22;1;1;1;-1;-2;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;9;30000;0;22;22;1;1;1;-2;0;1;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;16;30000;0;14;22;1;1;0;-1;0;1;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;16;22;30000;0;8;22;1;1;1;-2;-2;1;1;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;9;30000;0;41;22;1;17;0;0;-1;0;1;0;1;1;1;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;16;30000;0;8;22;1;1;1;0;1;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;22;30000;0;4;22;1;1;1;-2;1;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;22;32;30000;0;8;22;1;1;1;-2;1;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;9;30000;0;41;22;1;6;1;-1;1;0;1;1;1;1;1;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;22;30000;0;9;22;1;1;0;0;1;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;22;32;32;30000;0;8;22;1;1;0;1;1;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;23;23;23;30000;0;8;23;1;1;1;-1;1;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;5;30000;0;16;24;1;6;1;-2;0;1;0;1;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;13;30000;0;8;8;1;11;1;-1;3;1;0;0;1;0;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;5;16;30000;0;8;8;1;7;1;-1;5;1;1;0;1;0;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;13;5;30000;0;19;24;1;24;1;-2;-2;1;1;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;16;5;30000;0;24;24;1;24;1;-2;0;1;1;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;24;30000;0;8;24;1;19;1;-1;1;0;1;1;1;1;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;26;30000;0;8;24;1;1;1;-2;1;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;24;32;30000;0;8;24;1;1;1;-2;1;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;24;30000;0;13;24;1;1;1;0;5;0;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;26;30000;0;8;24;1;1;26;-1;1;1;1;1;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;26;32;30000;0;8;24;1;1;0;-1;1;1;0;0;1;1;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;24;30000;0;8;24;1;1;1;-2;1;1;0;0;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;26;30000;0;12;8;1;1;32;0;-2;0;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;24;32;32;30000;0;8;24;1;1;0;-2;1;1;0;0;1;1;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;4;4;30000;0;16;25;1;1;1;-2;0;0;0;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;4;5;30000;0;16;8;1;14;1;-2;4;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;5;4;30000;0;16;25;1;16;1;-2;-1;1;0;0;1;1;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;25;25;25;30000;0;8;25;1;1;1;-2;1;0;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;4;4;30000;0;16;26;1;17;1;-2;-2;1;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;5;30000;0;14;26;1;10;1;-1;0;0;0;0;1;0;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;13;30000;0;15;26;1;16;0;-1;0;0;0;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;5;16;30000;0;15;26;1;15;0;-1;-2;0;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;13;5;30000;0;20;26;1;3;0;-2;-1;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;16;5;30000;0;22;26;1;9;1;-2;-1;1;1;0;1;1;2;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;24;30000;0;8;26;1;1;0;-1;1;1;0;0;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;26;30000;0;9;26;1;1;0;-1;1;1;1;1;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;24;32;30000;0;12;8;1;1;1;-1;1;0;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;24;30000;0;8;26;1;1;1;-1;1;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;26;30000;0;8;26;1;1;1;-1;1;1;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;26;32;30000;0;9;26;1;1;1;-2;1;0;0;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;24;30000;0;30;8;1;1;1;-1;-1;1;0;0;1;0;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;26;30000;0;1;26;1;21;32;0;-2;0;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;26;32;32;30000;0;8;26;1;1;0;-2;1;0;0;1;1;1;1;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;28;4;4;30000;0;16;28;1;9;1;-1;-2;1;1;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;28;28;28;30000;0;30;8;1;1;1;-2;0;0;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;30;30;30;30000;0;8;30;1;1;0;-2;1;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;4;30000;0;12;32;1;22;0;-1;0;0;0;0;1;0;0;1;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;5;30000;0;8;32;1;22;0;-1;-1;0;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;13;30000;0;11;8;1;28;1;-2;-2;1;1;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;17;30000;0;8;8;1;20;1;-2;6;1;0;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;4;32;30000;0;8;32;1;1;0;-1;0;0;1;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;4;30000;0;16;16;1;13;1;-1;1;1;0;1;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;5;30000;0;17;8;1;8;1;1;-2;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;13;30000;0;9;32;1;22;0;-2;-2;0;1;0;1;0;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;17;30000;0;8;32;1;14;1;-1;-1;0;0;0;1;1;2;2;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;5;32;30000;0;8;32;1;26;0;-1;-1;1;0;1;1;1;0;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;4;30000;0;22;32;1;29;1;-2;-1;1;1;1;1;0;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;5;30000;0;20;32;1;25;1;-1;0;1;1;1;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;13;30000;0;9;32;1;21;1;-1;-2;1;0;0;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;17;30000;0;8;32;1;17;1;-2;-2;0;0;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;13;32;30000;0;8;32;1;1;0;-1;-2;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;4;30000;0;32;8;1;8;1;0;4;1;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;5;30000;0;32;8;1;11;1;1;1;0;1;0;1;1;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;13;30000;0;11;8;1;29;1;0;6;0;0;0;1;0;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;17;30000;0;11;32;1;23;0;-1;-1;1;1;0;1;0;2;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;17;32;30000;0;6;8;1;1;1;-2;-2;1;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;22;22;30000;0;12;8;1;1;1;-1;0;0;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;22;32;30000;0;8;8;1;1;1;-1;0;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;24;30000;0;15;32;1;1;0;0;1;0;0;0;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;26;30000;0;16;32;1;1;0;1;1;1;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;24;32;30000;0;12;8;1;1;1;1;0;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;24;30000;0;15;32;1;1;0;1;1;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;26;30000;0;15;32;1;1;0;-2;1;0;0;1;1;1;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;26;32;30000;0;15;16;1;1;1;1;2;0;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;4;30000;0;19;32;1;27;1;-2;3;1;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;5;30000;0;19;32;1;13;1;0;0;0;0;0;1;0;2;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;9;30000;0;17;32;1;24;0;-1;-1;0;0;0;1;1;1;0;1;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;13;30000;0;30;32;1;17;1;-1;4;0;1;0;1;0;1;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;17;30000;0;11;32;1;1;0;-1;1;0;1;0;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;22;30000;0;8;32;1;1;1;-2;1;0;0;0;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;24;30000;0;9;32;1;1;1;-2;1;0;0;1;1;1;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;26;30000;0;8;32;1;1;0;-1;1;1;0;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;32;32;32;30000;0;8;32;1;1;1;-1;1;0;1;0;1;0;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;35;17;17;30000;0;12;8;1;21;1;-2;4;1;0;1;1;1;0;2;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;35;17;32;30000;0;6;35;1;5;1;1;4;1;1;1;1;0;0;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;35;35;35;30000;0;7;8;1;1;1;-2;-2;1;1;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;36;36;36;30000;0;4;16;1;1;36;0;1;1;0;0;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;40;40;40;30000;0;3;16;1;1;1;0;0;1;0;1;1;0;2;0;0;0 +Intel(R) Data Center GPU Max 1550 [0x0bd5];3;45;45;45;30000;0;12;10;1;1;1;-2;-2;0;1;0;1;0;2;0;0;0 diff --git a/src/acc/opencl/smm/params/tune_multiply_V100.csv b/src/acc/opencl/smm/params/tune_multiply_V100.csv index daac22c121a..d319dd6b2b4 100644 --- a/src/acc/opencl/smm/params/tune_multiply_V100.csv +++ b/src/acc/opencl/smm/params/tune_multiply_V100.csv @@ -1,158 +1,158 @@ DEVICE;TYPEID;M;N;K;S;GFLOPS;BS;BM;BN;BK;WS;WG;LU;NZ;AL;TB;TC;AP;AA;AB;AC -Tesla V100-PCIE-16GB [0xb271];3;2;2;2;30000;35.1;12;1;1;2;0;-1;1;0;0;1;1;0;0;0;0 -Tesla V100-PCIE-16GB [0xb271];3;3;3;3;30000;93.7;12;3;1;3;0;-2;-1;0;0;0;1;0;0;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;4;30000;192.8;12;4;1;4;0;-2;0;0;0;0;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;5;30000;209.3;12;4;1;3;0;-2;0;0;0;1;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;7;30000;240.6;15;4;1;4;0;-1;-1;0;0;1;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;9;30000;254.8;8;4;1;2;0;-1;-1;0;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;10;30000;264.8;13;4;1;4;0;-2;0;0;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;13;30000;282.9;15;4;1;3;0;0;-1;0;0;1;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;15;30000;283.7;12;4;1;2;0;-2;-1;0;0;1;0;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;25;30000;310.8;25;4;1;4;0;0;-1;0;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;26;30000;308.3;4;4;1;2;0;-2;1;0;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;28;30000;316.8;25;4;1;4;0;0;0;0;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;4;32;30000;318.9;3;4;1;2;0;0;-2;0;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;4;30000;216.7;8;4;1;3;0;-1;0;0;0;0;1;0;0;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;5;30000;226.0;12;4;1;4;0;-1;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;7;30000;274.4;12;4;1;4;0;1;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;9;30000;302.3;12;4;1;4;0;-2;0;1;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;13;30000;337.3;15;4;1;2;0;0;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;5;25;30000;386.3;15;4;1;2;0;1;-1;0;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;7;4;30000;290.9;15;4;1;4;0;-1;-1;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;7;5;30000;311.1;12;4;1;3;0;-2;-1;0;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;7;7;30000;381.1;12;4;1;4;0;-2;-1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;7;9;30000;423.7;12;4;1;3;0;-1;-1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;7;13;30000;460.8;15;4;1;2;0;-2;0;0;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;9;4;30000;353.8;15;4;1;1;0;-2;-1;1;0;0;1;0;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;9;5;30000;387.9;12;4;1;4;0;-1;0;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;9;7;30000;481.5;12;4;1;2;0;1;-2;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;9;9;30000;531.4;12;4;1;4;0;-1;-1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;9;13;30000;587.2;15;4;1;2;0;0;1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;10;4;30000;394.9;15;4;1;2;0;0;-1;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;10;10;30000;593.4;13;4;1;2;0;1;1;0;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;13;4;30000;460.4;20;4;1;2;0;1;1;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;13;5;30000;491.0;12;4;1;4;0;-2;-1;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;13;7;30000;606.8;13;4;1;2;0;1;-1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;13;9;30000;659.9;15;4;1;2;0;-2;-1;1;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;15;4;30000;484.4;24;4;1;4;0;-2;-1;0;0;1;1;1;0;0;0 -Tesla V100-PCIE-16GB [0xb271];3;4;25;4;30000;672.2;24;4;1;1;0;-2;0;1;0;1;1;0;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;25;5;30000;741.7;24;4;1;4;0;-1;-2;1;0;1;1;1;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;26;4;30000;692.1;20;4;1;2;0;-1;-1;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;28;4;30000;720.9;25;4;1;1;0;0;0;1;0;1;1;0;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;4;32;4;30000;760.2;24;4;1;4;0;0;-2;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;4;30000;242.9;12;5;1;2;0;0;0;0;0;0;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;5;30000;247.6;20;5;1;5;0;1;-1;0;0;0;1;0;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;7;30000;282.4;12;5;1;5;0;0;1;0;0;0;1;1;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;9;30000;303.9;12;5;1;4;0;-2;-1;0;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;13;30000;245.5;7;5;1;2;0;-2;1;1;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;4;25;30000;375.3;20;5;1;3;0;1;-1;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;5;4;30000;257.8;14;5;1;2;0;-1;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;5;5;30000;300.3;15;5;1;2;0;-1;-2;0;0;1;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;5;7;30000;338.9;20;5;1;3;0;-1;-2;0;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;5;9;30000;364.9;20;5;1;2;0;-1;1;0;0;1;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;5;13;30000;393.2;20;5;1;5;0;-1;-1;0;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;7;4;30000;314.7;12;5;1;2;0;-1;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;7;5;30000;360.8;12;5;1;4;0;1;-2;1;0;1;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;7;7;30000;435.2;12;5;1;2;0;-2;0;1;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;7;9;30000;479.6;13;5;1;3;0;1;-2;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;7;13;30000;523.5;12;5;1;5;0;-1;0;1;0;0;1;0;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;9;4;30000;386.9;12;5;1;3;0;-1;-1;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;9;5;30000;454.4;12;5;1;4;0;0;-2;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;9;7;30000;551.2;12;5;1;5;0;-2;0;0;0;1;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;9;9;30000;596.0;13;5;1;3;0;1;-2;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;13;4;30000;498.9;13;5;1;3;0;-1;0;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;13;5;30000;569.6;12;5;1;5;0;1;0;1;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;13;7;30000;699.9;13;5;1;4;0;-2;-2;1;0;1;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;5;13;13;30000;844.8;20;5;1;4;0;0;0;0;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;5;25;4;30000;593.2;11;5;1;5;0;0;0;0;0;0;1;1;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;7;5;5;30000;399.0;16;2;1;5;0;-1;-2;0;0;0;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;7;5;7;30000;438.8;20;2;1;3;0;0;-1;0;0;1;1;1;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;7;7;5;30000;506.3;15;1;2;6;0;-1;-2;1;0;1;1;0;3;0;0 -Tesla V100-PCIE-16GB [0xb271];3;7;7;7;30000;531.5;20;2;1;4;0;1;-2;1;0;1;1;0;0;3;0 -Tesla V100-PCIE-16GB [0xb271];3;7;7;13;30000;635.9;24;7;1;5;0;-1;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;7;13;13;30000;1037.5;20;7;1;5;0;0;-2;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;9;13;30000;905.3;25;9;1;7;0;0;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;13;9;30000;1027.6;20;9;1;2;0;0;0;0;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;9;13;13;30000;1136.0;20;9;1;8;0;1;-1;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;16;16;30000;1367.4;24;9;1;2;0;1;-1;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;22;16;30000;1569.6;24;9;1;6;0;-1;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;22;22;30000;1665.8;25;9;1;5;0;-2;-2;1;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;9;32;9;30000;1604.0;30;9;1;2;0;0;-1;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;32;22;30000;1944.9;50;9;1;4;0;0;1;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;9;32;32;30000;2154.3;50;9;1;3;0;0;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;5;5;30000;515.2;25;3;1;7;0;0;1;1;0;0;1;1;3;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;5;7;30000;547.3;13;3;1;8;0;0;1;0;0;1;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;5;13;30000;596.1;24;2;1;2;0;0;-2;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;7;5;30000;636.4;18;2;2;4;0;0;1;1;0;1;1;1;3;3;2 -Tesla V100-PCIE-16GB [0xb271];3;13;7;13;30000;811.2;12;13;1;12;0;0;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;9;9;30000;857.9;20;13;1;3;0;0;0;0;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;9;13;30000;885.8;25;13;1;2;0;1;0;0;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;13;13;5;30000;1009.6;24;13;1;8;0;1;0;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;13;7;30000;1189.4;25;13;1;10;0;1;-1;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;13;13;9;30000;1294.8;24;13;1;10;0;-1;-2;1;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;13;13;13;30000;1351.9;25;13;1;10;0;-1;0;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;9;16;30000;1054.4;12;16;1;4;0;-1;-2;1;0;1;1;1;0;0;0 -Tesla V100-PCIE-16GB [0xb271];3;16;9;22;30000;1094.0;25;16;1;5;0;0;-2;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;16;9;30000;1631.8;25;16;1;2;0;-1;-1;1;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;16;16;30000;1809.8;25;16;1;16;0;0;0;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;16;22;30000;1847.2;50;16;1;12;0;1;-2;1;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;22;9;30000;1783.9;25;16;1;6;0;-2;-1;1;0;1;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;16;22;16;30000;1999.5;40;16;1;16;0;-1;-2;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;16;22;22;30000;1934.5;25;16;1;14;0;0;0;0;0;0;1;0;2;3;2 -Tesla V100-PCIE-16GB [0xb271];3;20;20;20;30000;1986.9;40;20;1;13;0;1;-2;1;0;1;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;9;9;30000;809.5;20;22;1;17;0;-1;0;0;0;0;1;1;1;3;2 -Tesla V100-PCIE-16GB [0xb271];3;22;9;16;30000;1256.9;26;22;1;1;0;-2;-1;1;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;9;22;30000;1271.4;30;22;1;1;0;-2;1;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;9;32;30000;1371.7;24;22;1;1;0;0;-2;1;0;1;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;16;9;30000;1629.0;25;22;1;7;0;1;0;0;0;0;1;1;2;0;1 -Tesla V100-PCIE-16GB [0xb271];3;22;16;16;30000;2019.3;30;22;1;1;0;-2;0;0;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;16;22;30000;2279.6;50;22;1;9;0;0;0;1;0;1;1;1;1;2;0 -Tesla V100-PCIE-16GB [0xb271];3;22;22;9;30000;2034.8;50;22;1;6;0;1;1;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;22;22;16;30000;1982.0;40;22;1;15;0;-2;0;1;0;0;1;1;2;0;2 -Tesla V100-PCIE-16GB [0xb271];3;22;22;22;30000;2292.6;24;22;1;19;0;0;-2;1;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;22;22;32;30000;1891.9;14;22;1;14;0;-1;-1;0;0;1;1;0;2;3;2 -Tesla V100-PCIE-16GB [0xb271];3;22;32;9;30000;2402.7;40;22;1;13;0;1;0;1;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;22;32;22;30000;2739.0;50;22;1;15;0;-1;0;1;0;1;1;1;1;2;0 -Tesla V100-PCIE-16GB [0xb271];3;22;32;32;30000;3198.7;50;22;1;15;0;1;0;0;0;1;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;23;23;23;30000;2459.7;50;23;1;14;0;0;0;1;0;1;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;24;24;24;30000;2071.2;38;24;1;21;0;0;0;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;24;24;26;30000;2642.7;50;24;1;20;0;-1;0;1;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;24;24;32;30000;2244.6;50;24;1;17;0;-1;1;0;0;0;1;1;2;0;2 -Tesla V100-PCIE-16GB [0xb271];3;24;26;24;30000;2711.3;50;24;1;20;0;1;-2;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;24;26;26;30000;2121.7;48;24;1;2;0;1;-1;0;0;0;1;1;1;3;2 -Tesla V100-PCIE-16GB [0xb271];3;24;26;32;30000;2144.4;4;24;1;19;0;0;0;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;24;32;24;30000;2902.7;50;24;1;11;0;1;-1;1;0;0;1;0;2;3;2 -Tesla V100-PCIE-16GB [0xb271];3;24;32;26;30000;2408.9;25;24;1;16;0;0;-1;1;0;1;1;1;2;3;2 -Tesla V100-PCIE-16GB [0xb271];3;24;32;32;30000;3031.2;40;24;1;13;0;-1;-2;1;0;0;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;25;4;4;30000;291.1;24;25;1;3;0;1;0;0;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;25;4;5;30000;316.7;24;25;1;19;0;0;-2;0;0;0;1;1;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;25;5;4;30000;328.2;14;25;1;7;0;0;1;1;0;0;1;0;2;0;1 -Tesla V100-PCIE-16GB [0xb271];3;25;25;25;30000;2349.7;24;25;1;1;0;-1;-2;1;0;0;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;26;4;4;30000;306.9;1;26;1;26;0;-1;-1;1;0;1;1;1;3;0;0 -Tesla V100-PCIE-16GB [0xb271];3;26;24;24;30000;1976.0;21;26;1;26;0;-1;-1;0;0;1;1;1;2;3;2 -Tesla V100-PCIE-16GB [0xb271];3;26;24;26;30000;2405.2;50;26;1;26;0;1;0;0;0;1;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;26;24;32;30000;2449.8;50;26;1;23;0;1;-2;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;26;26;24;30000;2180.2;48;26;1;3;0;-2;0;0;0;0;1;1;2;0;2 -Tesla V100-PCIE-16GB [0xb271];3;26;26;26;30000;2978.2;50;26;1;19;0;0;-2;1;0;0;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;26;26;32;30000;2410.9;50;26;1;5;0;0;-2;0;0;1;1;0;2;0;1 -Tesla V100-PCIE-16GB [0xb271];3;26;32;24;30000;3304.4;50;26;1;15;0;1;-2;0;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;26;32;26;30000;2762.0;60;26;1;18;0;-1;-2;1;0;1;1;0;2;2;0 -Tesla V100-PCIE-16GB [0xb271];3;26;32;32;30000;2593.6;32;26;1;26;0;-1;0;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;28;4;4;30000;271.5;14;28;1;18;0;-1;-2;0;0;1;1;1;1;3;2 -Tesla V100-PCIE-16GB [0xb271];3;28;28;28;30000;2548.1;50;28;1;1;0;0;-2;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;30;30;30;30000;2542.6;32;30;1;30;0;-1;0;0;0;0;1;0;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;32;24;24;30000;2442.3;40;32;1;24;0;1;0;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;24;26;30000;2213.6;16;32;1;17;0;1;-2;0;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;24;32;30000;1755.0;1;32;1;12;0;0;0;0;0;0;1;0;2;2;0 -Tesla V100-PCIE-16GB [0xb271];3;32;26;24;30000;2360.4;32;32;1;32;0;1;0;0;0;1;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;26;26;30000;2579.2;40;32;1;31;0;-1;0;1;0;1;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;26;32;30000;2487.2;40;32;1;29;0;0;0;1;0;0;1;0;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;32;9;30000;2755.0;50;32;1;22;0;1;-2;0;0;0;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;32;32;22;30000;2680.6;32;32;1;31;0;-1;0;1;0;1;1;1;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;32;32;24;30000;2742.6;54;32;1;22;0;0;-2;1;0;1;1;1;1;2;0 -Tesla V100-PCIE-16GB [0xb271];3;32;32;26;30000;3464.2;50;32;1;27;0;-1;0;0;0;1;1;0;1;3;0 -Tesla V100-PCIE-16GB [0xb271];3;32;32;32;30000;3267.1;50;32;1;31;0;1;-2;1;0;0;1;1;2;3;0 -Tesla V100-PCIE-16GB [0xb271];3;35;35;35;30000;2236.7;9;35;1;25;0;0;-2;0;0;1;1;1;2;0;0 -Tesla V100-PCIE-16GB [0xb271];3;36;36;36;30000;2138.9;71;36;1;1;0;1;-2;1;0;0;1;0;1;0;0 -Tesla V100-PCIE-16GB [0xb271];3;40;40;40;30000;2291.0;9;40;1;1;0;0;0;1;0;0;1;1;2;2;0 -Tesla V100-PCIE-16GB [0xb271];3;45;45;45;30000;2754.3;50;45;1;29;0;0;0;1;0;0;1;1;1;3;0 +Tesla V100-PCIE-16GB [0xb271];3;2;2;2;30000;35.1;12;1;1;2;0;-1;1;0;0;1;1;0;0;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;3;3;3;30000;93.7;12;3;1;3;0;-2;-1;0;0;0;1;0;0;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;4;30000;192.8;12;4;1;4;0;-2;0;0;0;0;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;5;30000;209.3;12;4;1;3;0;-2;0;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;7;30000;240.6;15;4;1;4;0;-1;-1;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;9;30000;254.8;8;4;1;2;0;-1;-1;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;10;30000;264.8;13;4;1;4;0;-2;0;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;13;30000;282.9;15;4;1;3;0;0;-1;0;0;1;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;15;30000;283.7;12;4;1;2;0;-2;-1;0;0;1;0;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;25;30000;310.8;25;4;1;4;0;0;-1;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;26;30000;308.3;4;4;1;2;0;-2;1;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;28;30000;316.8;25;4;1;4;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;4;32;30000;318.9;3;4;1;2;0;0;-2;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;4;30000;216.7;8;4;1;3;0;-1;0;0;0;0;1;0;0;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;5;30000;226.0;12;4;1;4;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;7;30000;274.4;12;4;1;4;0;1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;9;30000;302.3;12;4;1;4;0;-2;0;1;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;13;30000;337.3;15;4;1;2;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;5;25;30000;386.3;15;4;1;2;0;1;-1;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;7;4;30000;290.9;15;4;1;4;0;-1;-1;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;7;5;30000;311.1;12;4;1;3;0;-2;-1;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;7;7;30000;381.1;12;4;1;4;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;7;9;30000;423.7;12;4;1;3;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;7;13;30000;460.8;15;4;1;2;0;-2;0;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;9;4;30000;353.8;15;4;1;1;0;-2;-1;1;0;0;1;0;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;9;5;30000;387.9;12;4;1;4;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;9;7;30000;481.5;12;4;1;2;0;1;-2;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;9;9;30000;531.4;12;4;1;4;0;-1;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;9;13;30000;587.2;15;4;1;2;0;0;1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;10;4;30000;394.9;15;4;1;2;0;0;-1;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;10;10;30000;593.4;13;4;1;2;0;1;1;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;13;4;30000;460.4;20;4;1;2;0;1;1;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;13;5;30000;491.0;12;4;1;4;0;-2;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;13;7;30000;606.8;13;4;1;2;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;13;9;30000;659.9;15;4;1;2;0;-2;-1;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;15;4;30000;484.4;24;4;1;4;0;-2;-1;0;0;1;1;1;0;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;25;4;30000;672.2;24;4;1;1;0;-2;0;1;0;1;1;0;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;25;5;30000;741.7;24;4;1;4;0;-1;-2;1;0;1;1;1;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;26;4;30000;692.1;20;4;1;2;0;-1;-1;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;28;4;30000;720.9;25;4;1;1;0;0;0;1;0;1;1;0;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;4;32;4;30000;760.2;24;4;1;4;0;0;-2;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;4;30000;242.9;12;5;1;2;0;0;0;0;0;0;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;5;30000;247.6;20;5;1;5;0;1;-1;0;0;0;1;0;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;7;30000;282.4;12;5;1;5;0;0;1;0;0;0;1;1;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;9;30000;303.9;12;5;1;4;0;-2;-1;0;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;13;30000;245.5;7;5;1;2;0;-2;1;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;4;25;30000;375.3;20;5;1;3;0;1;-1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;5;4;30000;257.8;14;5;1;2;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;5;5;30000;300.3;15;5;1;2;0;-1;-2;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;5;7;30000;338.9;20;5;1;3;0;-1;-2;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;5;9;30000;364.9;20;5;1;2;0;-1;1;0;0;1;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;5;13;30000;393.2;20;5;1;5;0;-1;-1;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;7;4;30000;314.7;12;5;1;2;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;7;5;30000;360.8;12;5;1;4;0;1;-2;1;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;7;7;30000;435.2;12;5;1;2;0;-2;0;1;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;7;9;30000;479.6;13;5;1;3;0;1;-2;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;7;13;30000;523.5;12;5;1;5;0;-1;0;1;0;0;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;9;4;30000;386.9;12;5;1;3;0;-1;-1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;9;5;30000;454.4;12;5;1;4;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;9;7;30000;551.2;12;5;1;5;0;-2;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;9;9;30000;596.0;13;5;1;3;0;1;-2;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;13;4;30000;498.9;13;5;1;3;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;13;5;30000;569.6;12;5;1;5;0;1;0;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;13;7;30000;699.9;13;5;1;4;0;-2;-2;1;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;13;13;30000;844.8;20;5;1;4;0;0;0;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;5;25;4;30000;593.2;11;5;1;5;0;0;0;0;0;0;1;1;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;5;5;30000;399.0;16;2;1;5;0;-1;-2;0;0;0;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;5;7;30000;438.8;20;2;1;3;0;0;-1;0;0;1;1;1;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;7;5;30000;506.3;15;1;2;6;0;-1;-2;1;0;1;1;0;2;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;7;7;30000;531.5;20;2;1;4;0;1;-2;1;0;1;1;0;0;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;7;13;30000;635.9;24;7;1;5;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;7;13;13;30000;1037.5;20;7;1;5;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;9;13;30000;905.3;25;9;1;7;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;13;9;30000;1027.6;20;9;1;2;0;0;0;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;13;13;30000;1136.0;20;9;1;8;0;1;-1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;16;16;30000;1367.4;24;9;1;2;0;1;-1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;22;16;30000;1569.6;24;9;1;6;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;22;22;30000;1665.8;25;9;1;5;0;-2;-2;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;32;9;30000;1604.0;30;9;1;2;0;0;-1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;32;22;30000;1944.9;50;9;1;4;0;0;1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;9;32;32;30000;2154.3;50;9;1;3;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;5;5;30000;515.2;25;3;1;7;0;0;1;1;0;0;1;1;2;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;5;7;30000;547.3;13;3;1;8;0;0;1;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;5;13;30000;596.1;24;2;1;2;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;7;5;30000;636.4;18;2;2;4;0;0;1;1;0;1;1;1;2;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;13;7;13;30000;811.2;12;13;1;12;0;0;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;9;9;30000;857.9;20;13;1;3;0;0;0;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;9;13;30000;885.8;25;13;1;2;0;1;0;0;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;13;5;30000;1009.6;24;13;1;8;0;1;0;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;13;7;30000;1189.4;25;13;1;10;0;1;-1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;13;9;30000;1294.8;24;13;1;10;0;-1;-2;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;13;13;13;30000;1351.9;25;13;1;10;0;-1;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;9;16;30000;1054.4;12;16;1;4;0;-1;-2;1;0;1;1;1;0;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;9;22;30000;1094.0;25;16;1;5;0;0;-2;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;16;9;30000;1631.8;25;16;1;2;0;-1;-1;1;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;16;16;30000;1809.8;25;16;1;16;0;0;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;16;22;30000;1847.2;50;16;1;12;0;1;-2;1;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;22;9;30000;1783.9;25;16;1;6;0;-2;-1;1;0;1;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;22;16;30000;1999.5;40;16;1;16;0;-1;-2;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;16;22;22;30000;1934.5;25;16;1;14;0;0;0;0;0;0;1;0;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;20;20;20;30000;1986.9;40;20;1;13;0;1;-2;1;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;9;9;30000;809.5;20;22;1;17;0;-1;0;0;0;0;1;1;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;22;9;16;30000;1256.9;26;22;1;1;0;-2;-1;1;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;9;22;30000;1271.4;30;22;1;1;0;-2;1;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;9;32;30000;1371.7;24;22;1;1;0;0;-2;1;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;16;9;30000;1629.0;25;22;1;7;0;1;0;0;0;0;1;1;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;22;16;16;30000;2019.3;30;22;1;1;0;-2;0;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;16;22;30000;2279.6;50;22;1;9;0;0;0;1;0;1;1;1;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;22;9;30000;2034.8;50;22;1;6;0;1;1;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;22;16;30000;1982.0;40;22;1;15;0;-2;0;1;0;0;1;1;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;22;22;22;30000;2292.6;24;22;1;19;0;0;-2;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;22;32;30000;1891.9;14;22;1;14;0;-1;-1;0;0;1;1;0;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;22;32;9;30000;2402.7;40;22;1;13;0;1;0;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;32;22;30000;2739.0;50;22;1;15;0;-1;0;1;0;1;1;1;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;22;32;32;30000;3198.7;50;22;1;15;0;1;0;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;23;23;23;30000;2459.7;50;23;1;14;0;0;0;1;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;24;24;24;30000;2071.2;38;24;1;21;0;0;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;24;24;26;30000;2642.7;50;24;1;20;0;-1;0;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;24;24;32;30000;2244.6;50;24;1;17;0;-1;1;0;0;0;1;1;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;24;26;24;30000;2711.3;50;24;1;20;0;1;-2;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;24;26;26;30000;2121.7;48;24;1;2;0;1;-1;0;0;0;1;1;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;24;26;32;30000;2144.4;4;24;1;19;0;0;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;24;32;24;30000;2902.7;50;24;1;11;0;1;-1;1;0;0;1;0;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;24;32;26;30000;2408.9;25;24;1;16;0;0;-1;1;0;1;1;1;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;24;32;32;30000;3031.2;40;24;1;13;0;-1;-2;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;25;4;4;30000;291.1;24;25;1;3;0;1;0;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;25;4;5;30000;316.7;24;25;1;19;0;0;-2;0;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;25;5;4;30000;328.2;14;25;1;7;0;0;1;1;0;0;1;0;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;25;25;25;30000;2349.7;24;25;1;1;0;-1;-2;1;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;4;4;30000;306.9;1;26;1;26;0;-1;-1;1;0;1;1;1;2;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;24;24;30000;1976.0;21;26;1;26;0;-1;-1;0;0;1;1;1;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;26;24;26;30000;2405.2;50;26;1;26;0;1;0;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;24;32;30000;2449.8;50;26;1;23;0;1;-2;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;26;24;30000;2180.2;48;26;1;3;0;-2;0;0;0;0;1;1;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;26;26;26;30000;2978.2;50;26;1;19;0;0;-2;1;0;0;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;26;32;30000;2410.9;50;26;1;5;0;0;-2;0;0;1;1;0;1;0;1;0 +Tesla V100-PCIE-16GB [0xb271];3;26;32;24;30000;3304.4;50;26;1;15;0;1;-2;0;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;32;26;30000;2762.0;60;26;1;18;0;-1;-2;1;0;1;1;0;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;26;32;32;30000;2593.6;32;26;1;26;0;-1;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;28;4;4;30000;271.5;14;28;1;18;0;-1;-2;0;0;1;1;1;1;2;1;0 +Tesla V100-PCIE-16GB [0xb271];3;28;28;28;30000;2548.1;50;28;1;1;0;0;-2;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;30;30;30;30000;2542.6;32;30;1;30;0;-1;0;0;0;0;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;24;24;30000;2442.3;40;32;1;24;0;1;0;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;24;26;30000;2213.6;16;32;1;17;0;1;-2;0;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;24;32;30000;1755.0;1;32;1;12;0;0;0;0;0;0;1;0;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;26;24;30000;2360.4;32;32;1;32;0;1;0;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;26;26;30000;2579.2;40;32;1;31;0;-1;0;1;0;1;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;26;32;30000;2487.2;40;32;1;29;0;0;0;1;0;0;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;32;9;30000;2755.0;50;32;1;22;0;1;-2;0;0;0;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;32;22;30000;2680.6;32;32;1;31;0;-1;0;1;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;32;24;30000;2742.6;54;32;1;22;0;0;-2;1;0;1;1;1;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;32;26;30000;3464.2;50;32;1;27;0;-1;0;0;0;1;1;0;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;32;32;32;30000;3267.1;50;32;1;31;0;1;-2;1;0;0;1;1;1;2;0;0 +Tesla V100-PCIE-16GB [0xb271];3;35;35;35;30000;2236.7;9;35;1;25;0;0;-2;0;0;1;1;1;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;36;36;36;30000;2138.9;71;36;1;1;0;1;-2;1;0;0;1;0;1;0;0;0 +Tesla V100-PCIE-16GB [0xb271];3;40;40;40;30000;2291.0;9;40;1;1;0;0;0;1;0;0;1;1;1;1;0;0 +Tesla V100-PCIE-16GB [0xb271];3;45;45;45;30000;2754.3;50;45;1;29;0;0;0;1;0;0;1;1;1;2;0;0 diff --git a/src/acc/opencl/smm/tune_multiply.py b/src/acc/opencl/smm/tune_multiply.py index 235ea577a17..d9d05559186 100755 --- a/src/acc/opencl/smm/tune_multiply.py +++ b/src/acc/opencl/smm/tune_multiply.py @@ -9,6 +9,7 @@ #################################################################################################### import opentuner from opentuner.search.manipulator import IntegerParameter +from opentuner.tuningrunmain import TuningRunMain from opentuner import ConfigurationManipulator from opentuner import MeasurementInterface from opentuner import Result @@ -19,16 +20,19 @@ import copy import json import glob +import math import sys import re import os +default_enable_tune = {"tune", "enabled", "on"} default_basename = "tune_multiply" default_mnk = "23x23x23" +default_dbg = False -def env_intvalue(envname, default): - value = os.getenv(envname, default) +def env_intvalue(env, default, lookup=True): + value = os.getenv(env, default) if lookup else env if env is not None else default try: return int(value) except ValueError: @@ -44,9 +48,10 @@ def ilog2(n): class SmmTuner(MeasurementInterface): - def manipulator(self): + def __init__(self, args): """Setup common state and define search space""" - dbdir = os.path.join(tempfile.gettempdir(), "opentuner.db") + super(SmmTuner, self).__init__(args) + dbdir = os.path.join(tempfile.gettempdir(), "opentuner") manipulator = ConfigurationManipulator() # parse and sanitize kernel shape argument if not self.args.mnk: @@ -60,14 +65,12 @@ def manipulator(self): self.args.bn = [max(self.args.bn, 1), 1][0 == self.args.bn] self.args.bk = [max(self.args.bk, 1), self.mnk[2]][0 == self.args.bk] self.args.ws = min(self.args.ws, self.mnk[0] * self.mnk[1]) + self.ndevices = self.gfbase = self.gfsave = self.gflops = 0 + self.config = self.typename = self.typeid = self.device = self.size = None self.bs = self.bm = self.bn = self.bk = self.ws = self.wg = self.lu = None self.nz = self.al = self.tb = self.tc = None self.ap = self.aa = self.ab = self.ac = None - self.xf = env_intvalue("OPENCL_LIBSMM_SMM_XF", 0) - self.gfbase = self.gfsave = self.gflops = 0 - self.typename = self.typeid = None - self.device = self.size = None - self.config = None + self.idevice = None self.exename = "acc_bench_smm" self.exepath = os.path.join( os.path.dirname(sys.argv[0]), "..", "..", self.exename @@ -81,11 +84,9 @@ def manipulator(self): if self.run_result: stdout = str(self.run_result["stdout"]) if 0 >= self.args.size: - size = re.search( - "{}\\s+[0-9]+\\s+([0-9]+)".format(self.exepath), - stdout, - ) - self.size = int(size.group(1)) if size and size.group(1) else 0 + sizepat = "(\\w+)\\s+[0-9]+\\s+([0-9]+)" + size = re.search(sizepat, stdout) + self.size = int(size.group(2)) if size and size.group(2) else 0 else: self.size = self.args.size typename = re.search("typename \\(id=([0-9]+)\\):\\s+(\\w+)", stdout) @@ -93,17 +94,20 @@ def manipulator(self): self.typeid = ( int(typename.group(1)) if typename and typename.group(1) else 0 ) - devicepat = 'INFO ACC/OpenCL:\\s+ndevices=[0-9]+\\s+device[0-9]+="([^"]+)"' + devicepat = ( + 'INFO ACC/OpenCL:\\s+ndevices=([0-9]+)\\s+device[0-9]+="([^"]+)"' + ) device = re.search(devicepat, str(self.run_result["stderr"])) - self.device = device.group(1) if device and device.group(1) else "" + self.ndevices = int(device.group(1)) if device and device.group(1) else 0 + self.device = device.group(2) if device and device.group(2) else "" elif self.args.update is not None and "" != self.args.update: self.device = self.args.update if self.run_result and 0 == self.run_result["returncode"]: seedpat = "INFO ACC/OpenCL:\\s+SMM-kernel\\s+{}={}\\s+gen=".format( "{t,m,n,k, bs,bm,bn,bk, ws,wg, lu,nz,al, tb,tc, ap,aa,ab,ac}", "{{{}, {}}}".format( # key and value - "{},{},{},{}".format( # t,m,n,k (key) - self.typeid, self.mnk[0], self.mnk[1], self.mnk[2] + "{},{}".format( # t,m,n,k (key) + self.typeid, ",".join(map(str, self.mnk)) ), "{}, {}, {}, {}, {}".format( # value: if neg. "-*[0-9]+" "(-*[0-9]+),(-*[0-9]+),(-*[0-9]+),(-*[0-9]+)", # bs,bm,bn,bk @@ -118,7 +122,7 @@ def manipulator(self): nprm = len(seed.groups()) if seed else 0 if 15 > nprm: print("WARNING: missed to parse initial parameters!") - maxlu = 2 if 2 <= self.args.tlevel or 0 > self.args.tlevel else 4 + maxlu = 2 if 2 <= self.args.tlevel or 0 > self.args.tlevel else 6 # setup fixed and tunable parameters params, paramt = [], [] self.create_param("BS", params, paramt, seed, 1, 1, self.args.mb) @@ -126,25 +130,22 @@ def manipulator(self): self.create_param("BN", params, paramt, seed, 3, 1, self.mnk[1]) self.create_param("BK", params, paramt, seed, 4, 1, self.mnk[0]) self.create_param( - "WS", params, paramt, seed, 5, 1, self.mnk[0] * self.mnk[1] + "WS", params, paramt, seed, 5, 1, self.mnk[0] * self.mnk[1], False ) - self.create_param("WG", params, paramt, seed, 6, -2, 1) # avoid WG=2 + self.create_param("WG", params, paramt, seed, 6, -2, 1, False) # avoid WG=2 self.create_param("LU", params, paramt, seed, 7, -2, maxlu) self.create_param("NZ", params, paramt, seed, 8, 0, 1) self.create_param("AL", params, paramt, seed, 9, 0, 1) self.create_param("TB", params, paramt, seed, 10, 0, 1) self.create_param("TC", params, paramt, seed, 11, 0, 1) self.create_param("AP", params, paramt, seed, 12, 0, 1) - self.create_param("AA", params, paramt, seed, 13, 0, 3) - self.create_param("AB", params, paramt, seed, 14, 0, 3) - self.create_param("AC", params, paramt, seed, 15, 0, 2) - if self.xf is None and ( - 15 < nprm and seed.group(16) and 2 < len(seed.group(16)) - ): - self.xf = seed.group(16)[2:] - self.create_param("XF", params, paramt, self.xf, -1, 0, 1) - if self.xf is not None: - self.xf = int(self.xf) + self.create_param("AA", params, paramt, seed, 13, 0, 2) + self.create_param("AB", params, paramt, seed, 14, 0, 2) + self.create_param("AC", params, paramt, seed, 15, 0, 1) + if 15 < nprm and seed.group(16) and 2 < len(seed.group(16)): + self.create_param("XF", params, paramt, seed.group(16)[2:], -1, 0, 1) + else: + self.create_param("XF", params, paramt, 0, -1, 0, 1) if not paramt: sys.tracebacklimit = 0 raise RuntimeError( @@ -169,23 +170,27 @@ def manipulator(self): elif ( (self.typename and "" != self.typename) and (self.device and "" != self.device) + and (self.typeid and 0 < self.ndevices) and (self.size and 0 < self.size) - and self.typeid ): # setup database (DB) if args.database is None: # adjust DB-location - if os.path.isdir(dbdir): - shutil.rmtree(dbdir) - os.mkdir(dbdir) + envrank = os.getenv("PMI_RANK", os.getenv("OMPI_COMM_WORLD_LOCAL_RANK")) + if envrank: + self.idevice = int(envrank) % self.ndevices + directory = "{}-{}.db".format(dbdir, self.idevice) + else: + directory = "{}.db".format(dbdir) + if os.path.isdir(directory): + shutil.rmtree(directory) + os.mkdir(directory) self.args.database = "sqlite:///" + os.path.join( - dbdir, socket.gethostname() + ".db" + directory, "{}.db".format(socket.gethostname()) ) if not self.args.label: # label for DB-session - self.args.label = "{}-{}-{}x{}x{}-s{}".format( + self.args.label = "{}-{}-{}-s{}".format( default_basename, self.typename, - self.mnk[0], - self.mnk[1], - self.mnk[2], + "x".join(map(str, self.mnk)), ilog2(self.size), ) else: @@ -194,50 +199,59 @@ def manipulator(self): # register signal handler (CTRL-C) signal(SIGINT, self.handle_sigint) self.handle_sigint_counter = 0 - return manipulator + self.manip = manipulator - def create_param(self, name, params, paramt, match, match_id, value0, value1): + def manipulator(self): + return self.manip + + def create_param( + self, name, params, paramt, match, match_id, value0, value1, expand=True + ): """Append integer-parameter to either params or paramt list""" value_key = "OPENCL_LIBSMM_SMM_{}".format(name) value_env = os.getenv(value_key) - value_raw = env_intvalue(value_key, 0) - value_fix = ( - getattr(self.args, name.lower(), None) if value_env is None else value_raw - ) - if value_env is None or value_env in { - "tune", - "enabled", - "on", - }: # tunable parameter - if 0 <= match_id: - value = ( - int(match.group(match_id)) - if match and match.group(match_id) - else None - ) + attribute = getattr(self, name.lower(), None) + tunable = value_env in default_enable_tune + if 0 <= match_id: + if match and match.group(match_id): + value = int(match.group(match_id)) else: - value = 0 if match is None else int(match) - setattr(self, name.lower(), value) - paramt.append(IntegerParameter(name, value0, value1)) + value = 0 if value_env is None else int(value_env) + if not tunable: + tunable = value_env is None + else: + if attribute is None: + value = getattr(self.args, name.lower(), None) + if value is None: + value = int(value_env if match is None else match) + else: + value = int(attribute) + if not tunable: + tunable = value_env is None and 0 != value + if tunable: # consider expanding value range according to seed + v0 = min(value0, value) if expand else value0 + v1 = max(value1, value) if expand else value1 + paramt.append(IntegerParameter(name, v0, v1)) else: # fixed parameter - value_fix = getattr(self.args, name.lower(), value_raw) - params.append(IntegerParameter(name, value_fix, value_fix)) + params.append(IntegerParameter(name, value, value)) + if attribute is None: + setattr(self, name.lower(), value) def launch(self, envs, nrep=None, verbose=None): """Launch executable supplying environment and arguments""" envstrs = " ".join(map(str, envs)) if verbose is not None and 0 != int(verbose): print(envstrs.replace("OPENCL_LIBSMM_SMM_", "").replace(" CHECK=0", "")) - return self.call_program( - "OMP_PROC_BIND=TRUE OPENCL_LIBSMM_SMM_S=0 {} {} {} {} {}".format( - envstrs, # environment variables - "{}".format(self.exepath), - # executable's arguments - self.args.r if nrep is None else nrep, - self.size if self.size else self.args.size, - "{} {} {}".format(self.mnk[0], self.mnk[1], self.mnk[2]), - ) + env_defaults = "OMP_PROC_BIND=TRUE OPENCL_LIBSMM_SMM_S=0" + env_exe_args = "{} {} {} {} {} {}".format( # consider device-id + "" if self.idevice is None else "ACC_OPENCL_DEVICE={}".format(self.idevice), + "{} {}".format(env_defaults, envstrs), # environment + self.exepath, # executable file + self.args.r if nrep is None else nrep, + self.size if self.size else self.args.size, + " ".join(map(str, self.mnk)), ) + return self.call_program(env_exe_args) def seed_configurations(self): return [ @@ -279,8 +293,7 @@ def run(self, desired_result, input, limit): config = desired_result.configuration.data cfgenv = self.environment(config) self.run_result = self.launch( - cfgenv + ["CHECK={}".format(self.args.check)], - verbose=self.args.verbose, + cfgenv + ["CHECK={}".format(self.args.check)], verbose=self.args.verbose ) if 0 == self.run_result["returncode"]: performance = re.search( @@ -300,7 +313,8 @@ def run(self, desired_result, input, limit): self.gflops = gflops if 0 == self.gfbase: # seed configuration self.gfbase = gflops - self.save_final_config(desired_result.configuration, final=False) + else: + self.save_final_config(desired_result.configuration, final=False) kernelreq = round( (100.0 * config["BM"] * config["BN"]) / (self.mnk[0] * self.mnk[1]) ) @@ -336,7 +350,7 @@ def update_jsons(self, filenames): def merge_jsons(self, filenames): """Merge all JSONs into a single CSV-file""" - if not self.args.csvfile: + if not self.args.csvfile or (self.idevice is not None and 0 != self.idevice): return # early exit merged, worse = dict(), dict() for filename in filenames: @@ -369,8 +383,8 @@ def merge_jsons(self, filenames): data["TB"] if "TB" in data else 0, data["TC"] if "TC" in data else 1, data["AP"] if "AP" in data else 0, - data["AA"] if "AA" in data else 1, - data["AB"] if "AB" in data else 3, + data["AA"] if "AA" in data else 0, + data["AB"] if "AB" in data else 0, data["AC"] if "AC" in data else 0, data["XF"] if "XF" in data else 0, filename, # last entry @@ -389,6 +403,8 @@ def merge_jsons(self, filenames): worse[key] = [filename2] except (json.JSONDecodeError, KeyError, TypeError): print("Failed to merge {} into CSV-file.".format(filename)) + except: # noqa: E722 + pass if bool(merged): with open(self.args.csvfile, "w") as file: file.write( # CSV header line with termination/newline @@ -408,25 +424,42 @@ def merge_jsons(self, filenames): strkey = self.args.csvsep.join([str(k) for k in key]) strval = self.args.csvsep.join([str(v) for v in value[:-1]]) file.write("{}{}{}\n".format(strkey, self.args.csvsep, strval)) + retsld = retcnt = delsld = delcnt = 0 retain, delete = [], [] for key, value in worse.items(): + gflops = round(merged[key][1]) mtime = os.path.getmtime(merged[key][-1]) for filename in value: + s = 0 + if 0 < gflops: + g = int(filename.split("-")[-1].split("g")[0]) + s = math.log(gflops / g) # slowdown if mtime < os.path.getmtime(filename): + retsld, retcnt = retsld + s, retcnt + 1 retain.append(filename) else: + delsld, delcnt = delsld + s, delcnt + 1 delete.append(filename) if not self.args.nogflops: - if retain: - msg = "Worse and newer (retain {}): {}".format( - len(retain), " ".join(retain) - ) - print(msg) - if delete: - msg = "Worse and older (delete {}): {}".format( - len(delete), " ".join(delete) - ) - print(msg) + slr = round(math.exp(retsld / retcnt), 1) if 0 < retcnt else 1 + sld = round(math.exp(delsld / delcnt), 1) if 0 < delcnt else 1 + if not self.args.delete: + if retain: + num, lst = len(retain), " ".join(retain) + msg = "Worse and newer (retain {}@{}x): {}" + print(msg.format(num, slr, lst)) + if delete: + num, lst = len(delete), " ".join(delete) + msg = "Worse and older (delete {}@{}x): {}" + print(msg.format(num, sld, lst)) + else: + for file in retain + delete: + try: + os.remove(file) + except: # noqa: E722 + pass + msg = " ({}..{}x)".format(slr, sld) if 1 < max(slr, sld) else "" + print("Removed outperformed parameters{}.".format(msg)) elif bool(worse): print("WARNING: incorrectly merged duplicates") print(" due to nogflops argument!") @@ -437,30 +470,28 @@ def merge_jsons(self, filenames): def save_final_config(self, configuration, final=True): """Called at termination""" - if 0 >= self.gflops or not configuration: + if not final and (0 >= self.gflops or not configuration): return # nothing to save - config = configuration.data - cfgenv = self.environment(config) - result = self.run_result["returncode"] if self.run_result else 1 + config = configuration.data if configuration else None + cfgenv = self.environment(config) if config else None + result = self.run_result["returncode"] if config and self.run_result else 1 if 0 == result and 0 == self.args.check: # enable CHECKing result self.run_result = self.launch(cfgenv + ["CHECK=1"]) result = self.run_result["returncode"] if self.run_result else 1 # extend result for easier reuse - config["DEVICE"] = self.device - config["GFLOPS"] = self.gflops if not self.args.nogflops else 0 - config["TYPEID"] = self.typeid - config["M"] = self.mnk[0] - config["N"] = self.mnk[1] - config["K"] = self.mnk[2] - config["S"] = self.size - filepattern = "{}-*.json".format(default_basename) - filenames = ( - glob.glob(os.path.normpath(os.path.join(self.args.jsondir, filepattern))) - if final - else None + if config: + config["DEVICE"] = self.device + config["GFLOPS"] = self.gflops if not self.args.nogflops else 0 + config["TYPEID"] = self.typeid + config["M"] = self.mnk[0] + config["N"] = self.mnk[1] + config["K"] = self.mnk[2] + config["S"] = self.size + filedev = "" if self.idevice is None else "-{}".format(self.idevice) + filedot = os.path.join( + self.args.jsondir, ".{}{}.json".format(self.args.label, filedev) ) - filedot = os.path.join(self.args.jsondir, ".{}.json".format(self.args.label)) - if self.gfsave < self.gflops: # save intermediate result + if config and self.gfsave < self.gflops: # save intermediate result if 0 == self.gfsave and os.path.exists(filedot): # backup data = None try: @@ -475,7 +506,10 @@ def save_final_config(self, configuration, final=True): if 0 < gflops else "{}.json".format(self.args.label), ) - os.rename(filedot, filename) + try: + os.rename(filedot, filename) + except: # noqa: E722 + pass # self.manipulator().save_to_file(config, filename) with open(filedot, "w") as file: cfg = config @@ -491,38 +525,35 @@ def save_final_config(self, configuration, final=True): print("FAILED: {}".format(failed)) return if final and os.path.exists(filedot): - if not filenames and glob.glob(self.args.csvfile): - print( - "WARNING: no JSON file found but {} will be overwritten.".format( - self.args.csvfile - ) - ) - filename = os.path.normpath( - os.path.join( - self.args.jsondir, - "{}-{}gflops.json".format(self.args.label, round(self.gflops)), - ) + filepattern = "{}-*.json".format(default_basename) + fileglobs = glob.glob( + os.path.normpath(os.path.join(self.args.jsondir, filepattern)) ) - os.rename(filedot, filename) + filenames = fileglobs if final else None + if not filenames and glob.glob(self.args.csvfile): + msg = "WARNING: no JSON-file found but {} will be overwritten." + print(msg.format(self.args.csvfile)) + fileonly = "{}-{}gflops.json".format(self.args.label, round(self.gflops)) + filename = os.path.normpath(os.path.join(self.args.jsondir, fileonly)) + try: + os.rename(filedot, filename) + except: # noqa: E722 + pass if filename not in filenames: # rebuild CSV-file filenames.append(filename) self.merge_jsons(filenames) speedup = round((self.gflops / self.gfbase) if 0 < self.gfbase else 0, 1) msg = " ({}x over seed)".format(speedup) if 1 < speedup else "" print("Result{} was written to {}".format(msg, filename)) - else: - print("WARNING: tuned result seems to be incorrect!") - exit(0) + elif final and self.args.merge is None: + print("WARNING: no tuned results produced!") def handle_sigint(self, signum, frame): """Handle SIGINT or CTRL-C""" if 1 > self.handle_sigint_counter: # avoid recursion self.handle_sigint_counter = self.handle_sigint_counter + 1 - print( - "\nWARNING: tuning {}x{}x{}-kernel was interrupted.".format( - self.mnk[0], self.mnk[1], self.mnk[2] - ) - ) + msg = "\nWARNING: tuning {}-kernel interrupted." + print(msg.format("x".join(map(str, self.mnk)))) self.save_final_config(self.config) exit(1) @@ -608,15 +639,20 @@ def handle_sigint(self, signum, frame): type=float, default=0, nargs="?", - dest="check", help="Validate kernel (epsilon, 0:off)", ) + argparser.add_argument( + "-d", + "--delete", + action="store_true", + default=False, + help="Delete outperformed JSONs", + ) argparser.add_argument( "-v", "--verbose", action="store_true", default=False, - dest="verbose", help="Verbose output", ) argparser.add_argument( @@ -727,7 +763,7 @@ def handle_sigint(self, signum, frame): type=int, default=env_intvalue("OPENCL_LIBSMM_SMM_AA", "0"), dest="aa", - help="Matrix A: global (0), shared (1), shared-bc (2), register (3)", + help="Matrix A: global (0), shared (1), register (2)", ) argparser.add_argument( "-ab", @@ -735,7 +771,7 @@ def handle_sigint(self, signum, frame): type=int, default=env_intvalue("OPENCL_LIBSMM_SMM_AB", "0"), dest="ab", - help="Matrix B: global (0), shared (1), shared-bc (2), register (3)", + help="Matrix B: global (0), shared (1), register (2)", ) argparser.add_argument( "-ac", @@ -743,7 +779,7 @@ def handle_sigint(self, signum, frame): type=int, default=env_intvalue("OPENCL_LIBSMM_SMM_AC", "0"), dest="ac", - help="Matrix C: register (0), shared (1), shared-bc (2)", + help="Matrix C: register (0), shared (1)", ) argparser.add_argument( "-bs", @@ -774,11 +810,8 @@ def handle_sigint(self, signum, frame): ) args = argparser.parse_args() # OPENCL_LIBSMM_SMM_xx=tune|enabled|on must be given to permit tuning) - if os.getenv("OPENCL_LIBSMM_SMM_WS") not in {"tune", "enabled", "on"}: + if os.getenv("OPENCL_LIBSMM_SMM_WS") not in default_enable_tune: os.environ["OPENCL_LIBSMM_SMM_WS"] = "{}".format(args.ws) - if os.getenv("OPENCL_LIBSMM_SMM_XF") not in {"tune", "enabled", "on"}: - xfvalue = env_intvalue("OPENCL_LIBSMM_SMM_XF", 0) - os.environ["OPENCL_LIBSMM_SMM_XF"] = "{}".format(xfvalue) # fix tunables according to level of tuning if 1 <= args.tlevel or 0 > args.tlevel: os.environ["OPENCL_LIBSMM_SMM_BM"] = "{}".format(args.bm) @@ -796,9 +829,14 @@ def handle_sigint(self, signum, frame): os.environ["OPENCL_LIBSMM_SMM_LU"] = "{}".format(args.lu) if 0 == args.mb: args.mb = 64 - try: - SmmTuner.main(args) - except Exception as e: - print("{}: {}".format(type(e).__name__, e)) - print("WARNING: ignored above error!") - pass + instance = SmmTuner(args) + if not default_dbg: + try: + TuningRunMain(instance, args).main() + except Exception as e: + print("{}: {}".format(type(e).__name__, e)) + print("WARNING: ignored above error!") + instance.save_final_config(None, True) + pass + else: + TuningRunMain(instance, args).main() diff --git a/src/acc/opencl/smm/tune_multiply.sh b/src/acc/opencl/smm/tune_multiply.sh index b66eb805d2c..736e4058bcb 100755 --- a/src/acc/opencl/smm/tune_multiply.sh +++ b/src/acc/opencl/smm/tune_multiply.sh @@ -42,6 +42,9 @@ then -u|--update) UPDATE=1 shift 1;; + -d|--delete) + DELETE=1 + shift 1;; -a|--tuning-level) TLEVEL=$2 shift 2;; @@ -205,6 +208,7 @@ then else echo "Tuning ${PARTSIZE} kernels will take an unknown time (no limit given)." fi + if [ "${DELETE}" ] && [ "0" != "${DELETE}" ]; then DELETE=-d; fi NJSONS=$(${WC} -l <<<"${JSONS}") if [ "0" != "${NJSONS}" ]; then if [ ! "${UPDATE}" ] || [ "0" = "${UPDATE}" ]; then @@ -227,7 +231,7 @@ then echo "[$((N+1))/${PARTSIZE}]: auto-tuning ${MNK}-kernel..." # avoid mixing database of previous results into new session ${RM} -rf ./opentuner.db - eval "${HERE}/tune_multiply.py ${MNK} -p ${JSONDIR} -s ${BATCHSIZE} -a ${TLEVEL} ${MAXTIME}" + eval "${HERE}/tune_multiply.py ${MNK} ${DELETE} -p ${JSONDIR} -s ${BATCHSIZE} -a ${TLEVEL} ${MAXTIME}" RESULT=$? # environment var. CONTINUE allows to proceed with next kernel # even if tune_multiply.py returned non-zero exit code