mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-10 13:10:22 +00:00
082b326fc7
* ggml-et: Add performance logging * ggml-et: Quants helpers * ggml-et: Add MUL_MAT kernel * ggml-et: Add ROPE kernel * ggml-et: Add RMS_NORM kernel * ggml-et: Add GLU kernel * ggml-et: Add SOFT_MAX kernel * ggml-et: Add GET_ROWS kernel * ggml-et: Add CONT kernel * ggml-et: Add SET_ROWS kernel * ggml-et: Add MUL_MAT_ID kernel * ggml-et: Build et kernels as part of ggml * ggml-et: Embed kernels with fs fallback * ggml-et: Build fixes * ggml-et: Add MUL_MAT F32xF32 op * ggml_et: Add MUL_MAT_ID op * ggml-et: Disable offloading for debug * ggml-et: Refactor out block ops * ggml-et: ggml backend API changes * ggml-et: Add RESHAPE/TRANSPOSE to supported * ggml-et: Add CONT_F16 * ggml-et: Add supported ops doc * gglm-et: Initial doc * ggml-et: Remove runtime import hacks We can now import the runtime by a simple find_package(), so we can cleanup the CMakeLists.txt. * ggml-et: Fix GET_ROWS kernel Fix lost batch dimension. Also clean vibe-comments. * ggml-et: Fix SET_ROWS kernel Remove incorrect broadcasting guard. * ggml-et: Use custom instruction for fp32->fp16 * ggml-et: Vectorize set_rows fp32->fp16 * ggml-et: Fix ROPE kernel (yarn) ggml-et: fix et_logf WIP: Fix ramp WIP: fix ROPE! * ggml-et: Better sinf * ggml-et: Fix SOFT_MAX Add `max_bias` and `sink` support. * ggml-et: Fix CONT Reorder from contiguous write to read with atomic stores. * ggml-et: Fix elmap kernel Remainder handlin * ggml-et: Fix MUL_MAT MUL_MAT_ID remainders * ggml-et: Fix ET-SOC reference * ggml-et: Fix embed kernels scripts for old python This allows GGML-ET to build on pre-3.8 python. * Add sysemu support with compile time flag `-DGGML_ET_SYSEMU=ON` (#6) * Example using ET-Soc-1 emulator configuration Example usage: ```bash cmake -B build -DGGML_CUDA=OFF -DGGML_ET=ON -DLLAMA_CURL=OFF -DGGML_CCACHE=ON cmake --build build --config Release -j $(nproc) time ./build/bin/test-backend-ops ./build/bin/llama-server \ --model Qwen3-0.6B-Q8_0.gguf \ --alias Qwen3-0.6B-Q8_0 \ -fa 0 \ --ctx-size 1024 \ --no-warmup \ --host 127.0.0.1 \ --port 8080 ``` * build: proper dep tracking for kernels * support host using MOLD linker * initial multi core GET_ROW F32 implementation * vectorized q8 dequant * wip: cland warning clenaups and initial logging refactor * wip: message default message cleanup * chore: message cleanups * cmake cleanup * migrate to use platform provided functions * cmake back into subdir * support et_print() in kernels * fix: repair kernel building * perf: operations run async by default * debug: proper kernel dep tracking and error detection on kenrel launch * fix: kernel binary dep tracking and fixing get_rows_f32 erroring * perf: back to doing async kernel runs by default * perf: vectorize and parallel device memset * merge matmul work * misc: align allocation and enable all offload * misc: delete deadcode and respect memory limits * fix: repair tensor debug print * fix: loosen RMS_NORM op percision * feat: Q4_0 GET_ROWS * perf: FP32 MUL_MAT using TensorFMA * update limitations * perf: redue L1 load in compute_block_dot_product_q8_0 * feat: save kernel mapping (name to id) when profiling is enabled * chore: memops cleanup * perf: parallelize softmax by rows * perf: vectorize 2nd phase of softmax * perf: ban GET_ROWS from offloaded * perf: vectorize and non-atomic for eltwise ops and sub support * perf: vectorize normal rope * perf: glu runs in parallel * merge: manually merge saqib's work on kernel fixes * perf: more vectorized RoPE * perf: parallelize mul_mat_id * perf: parallelize set_rows_f32 * perf: vectorize softmax * feat: support kernel fusion and fuse RMS_NORM + MUL * fix: mostly resolve test-backend-ops failure in SOFT_MAX and ROPE * fix: bump max rope dims for gemma * feat: GeGLU and SCALE support to fully offload Gemma * perf: faster device memset * feat: get_rows supporting Q4_K and avoid cont cache coherent issues * better F32 MM * feat: NORM for ET backend * feat: SQR for ET backend * feat: UNARY on ET * feat: el_map support broadcasting for ET * feat: SUM_ROWS in ET backend * feat: more ops in ET backend * feat: WKV* operators in ET backend * perf: parallelize operators across cacheline instead of row * perf: parallelize get_rows on cacheline * wip: baseline FlashAttention for ET backend * wip: enough FA and CPY f32->f16 to run llama 3.1 fully offloaded with FA on * feat: f16 x f16 -> f32 MM using matrix engine * wip: f16 FlashAttention using matrix engine * wip: clean up * feat: barriers * perf: optimize FA_F16 in ET * perf: vectorize pack_k_for_transpose16 * perf: prefetch next loop matrix tile * perf: FlashAttention 2nd MM uses TensorFMA and optimizations * cleanup: flashattention reorg * perf: optimizations and fixes * feat: L2SCP API and make FlashAttention support DV = 256 for gemma * perf: parallelize norms beyond single row * feat: GATED_DELTA_NET support and relaxed L2_NORM requirment * feat: loosen RMS_NORM, NORM, ROPE contingous req too * feat: repeat supports brocasting on dim 0 and loosen cont check * feat: FILL and DIAG operator * feat: loosen UNARY support chcek * feat: TRI support * feat: SOLVE_TRI support * feat: basic SET support * feat: loosen CONT req * perf: fp16_to_fp32 use ASM * feat: IMROPE support * feat: PAD support * feat: global barrier * fix: view must live on the same backend as backing tensor * feat: relax CONCAT in ET backend * feat: dead simple CUMSUM implementation * feat: basic SSM_CONV support * feat: loosen CONCAT req * feat: relax GATED_DELTA_NET and add SET support proper * cleanup: cleanup LCM math * feat: SWIGLU single input * feat: SSM_SCAN support * feat: el_map supports non aligned tensors in best effort * feat: basic GROUP_NORM support * feat: loosen MUL_MAT capablities slightly * feat: loosen MUL_MAT and GET_ROWS and add IM2COL * feat: special case for softmax 1x1x1x1 * feat: loosen SOFT_MAX req in ET backend * fix: el_map unaligned acse fixes * perf: optimize zero_acc_vec in flash_attn_ext_f16_me * perf: use hart 1 for packing in MM and FA for FP16 * feat: kernel semaphore * perf: better instruction sequence in FlashAttention * fix: gated_delta_net with proper masking * perf: better parallelization for GATED_DELTA_NET * perf: parallelize SSM_CONV over nr * perf: vectorize SSM_CONV * perf: optimize MUL_MAT for q8 * feat: support Gemma 4 * fix: support multi-device * feat: broader GLU support * feat: unary ops supports view * fix: repair fp16 MM using matrix engine * perf: handle large N GEMV better * perf: better q8_0 MM * perf: better set_rows * add back deleted files * fix: repair after merge * feat: POC version of uberkernel * feat: RMS_NORM in uberkernel * feat: add more kernels into usage * chore: clean up uberkernel compilation * perf: faster flash attention * perf: opt flash attention for large seq length * feat: loosen op bounds. clamp and mean support * perf: vectorize ssm_scan * perf: slightly faster FA * perf: FlashAttention parallel MM and load * perf: fuse Q8 MM and ADD * feat: basic conv kernel for ET * softMAx_test * set_rows_f32 * get_rows and cont * testing * set_rows_exp * Junk addition * Narrowing the issue * Update flash_attn_ext_f16_me.c Focusing FA_ext_f16_me * test * Eviction updated * Detailed cache eviction debug * mulmat * removeal of `BUILD_FOR_UBERKERNEL` flag * cleaning... * fix: balance FCC0 count * feat: implement mul_mat and mul_mat_id for Q4_0 type * optimize uberkernel plan upload * add mul_mat q4 into uberkernel * enable gating flush to just uberkernel * update docs for ET * update op support for ET * et-backend: optimize Q4_0 and Q8_0 mul_mat_id row accumulations * et-backend: specialize mul_mat_id kernels for Q4_0 and Q8_0 * et-backend: fix RoPE YaRN corr_dim formula and handle degenerate inputs * test-backend-ops: add DeepSeek-V2-Lite RoPE test coverage * et-backend: add Q4_0 mul_mat matrix-engine kernel using TensorFMA32 * et-backend: vectorize Q4_0 matrix-engine dequantization * et-backend: support hybrid matrix/vector engine execution for Q4_0 mul_mat tail * et-backend: run partial-N tiles on matrix engine for Q4_0 mul_mat * et-backend: route Q4_0 mul_mat N < 53 to vecdot for better prefill latency * Update uberkernel.c * Update unary_f32.c * gemma 4 * bisect gemma4: enable scale_f32 only * bisect gemma4: +rms_norm_f32 * bisect gemma4: +rms_norm_mul_f32 * bisect gemma4: disable rms_norm_mul_f32 -- BREAKS OUTPUT * bisect gemma4: +rope_f32 (skip rms_norm_mul) * bisect gemma4: +el_map_f32 * bisect gemma4: +softmax_f32 * bisect gemma4: +get_rows_f32 * bisect gemma4: +glu_f32 * bisect gemma4: +mul_mat_f32 +mul_mat_f32_matrix_engine * bisect gemma4: +mul_mat_f16 +mul_mat_f16_matrix_engine * bisect gemma4: +mul_mat_Q8_0 +mul_mat_Q4_0 * bisect gemma4: +flash_attn_ext_f32 +flash_attn_ext_f16_me * bisect gemma4: +mul_mat_id_f32 * bisect gemma4: +sum_rows_f32 * bisect gemma4: +cont_f16 * bisect gemma4: +fill_f32 * bisect gemma4: +unary_f32 (all ops re-enabled except rms_norm_mul) * Update rms_norm_mul_f32.c * bisect2 gemma4 n64: +scale_f32 only * bisect2 gemma4 n64: +rms_norm_f32 +rope_f32 * bisect2 gemma4 n64: +rms_norm_mul_f32 (with ET_UBERKERNEL eviction fix) * bisect2 gemma4 n64: +el_map +get_rows +glu +softmax (skip rms_norm_mul) * bisect2 gemma4 n64: all ops enabled except rms_norm_mul * bisect2 n64: test unary+cont+fill+sum_rows (no mul_mat/flash_attn) * bisect2 n64: +mul_mat_f32 +mul_mat_f32_matrix_engine * bisect2 n64: +mul_mat_f16 +mul_mat_f16_matrix_engine * bisect2 n64: +mul_mat_Q8_0 +mul_mat_Q4_0 * bisect2 n64: +mul_mat_Q8_0 only (disable Q4_0) * bisect2 n64: +mul_mat_Q4_0 only (Q8_0 breaks) * bisect2 n64: +mul_mat_id +flash_attn_ext (skip Q8_0) * run-3: matmul + rms_norm_mul * run-4 * Revert "run-4" * run5 * changes after cleanup * cleanup before upstream * restrict changes into ET backend * move kernel embedding from Python to CMake * move uberkernel gen into CMake * apply clang format * update CMake style * update to match C and C++ style * use source ggml and quant headers instead of ET's * MROPE support * absorb view ops into same branch as none * fix bad rebase * add marty1885 to codeowners * oops * remove redundant newline * fix CI editor warnings --------- Co-authored-by: Vidas <vidas@nuolat.lt> Co-authored-by: Gianluca Guida <glguida@tlbflush.org> Co-authored-by: Gianluca Guida <gianluca@nekko.ai> Co-authored-by: ubergarm <leimgrub@gmail.com> Co-authored-by: SaqibAkram-10xE <saqib.akram@10xengineers.ai> Co-authored-by: Rehan Qasim <rehan.qasim@10xengineers.ai>
2.4 MiB
2.4 MiB
| 1 | backend_name | op_name | op_params | test_mode | supported | error_message | backend_reg_name |
|---|---|---|---|---|---|---|---|
| 2 | ET | ABS | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 3 | ET | ABS | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 4 | ET | SGN | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 5 | ET | SGN | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 6 | ET | NEG | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 7 | ET | NEG | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 8 | ET | STEP | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 9 | ET | STEP | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 10 | ET | TANH | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 11 | ET | TANH | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 12 | ET | ELU | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 13 | ET | ELU | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 14 | ET | RELU | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 15 | ET | RELU | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 16 | ET | SIGMOID | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 17 | ET | SIGMOID | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 18 | ET | GELU | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 19 | ET | GELU | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 20 | ET | GELU_QUICK | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 21 | ET | GELU_QUICK | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 22 | ET | SILU | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 23 | ET | SILU | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 24 | ET | HARDSWISH | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 25 | ET | HARDSWISH | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 26 | ET | HARDSIGMOID | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 27 | ET | HARDSIGMOID | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 28 | ET | EXP | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 29 | ET | EXP | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 30 | ET | EXPM1 | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 31 | ET | EXPM1 | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 32 | ET | SOFTPLUS | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 33 | ET | SOFTPLUS | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 34 | ET | GELU_ERF | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 35 | ET | GELU_ERF | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 36 | ET | FLOOR | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 37 | ET | FLOOR | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 38 | ET | CEIL | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 39 | ET | CEIL | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 40 | ET | ROUND | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 41 | ET | ROUND | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 42 | ET | TRUNC | type=f16,ne_a=[128,2,2,2],v=0 | support | 0 | no | ET |
| 43 | ET | TRUNC | type=f16,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 44 | ET | ABS | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 45 | ET | ABS | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 46 | ET | SGN | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 47 | ET | SGN | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 48 | ET | NEG | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 49 | ET | NEG | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 50 | ET | STEP | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 51 | ET | STEP | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 52 | ET | TANH | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 53 | ET | TANH | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 54 | ET | ELU | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 55 | ET | ELU | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 56 | ET | RELU | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 57 | ET | RELU | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 58 | ET | SIGMOID | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 59 | ET | SIGMOID | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 60 | ET | GELU | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 61 | ET | GELU | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 62 | ET | GELU_QUICK | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 63 | ET | GELU_QUICK | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 64 | ET | SILU | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 65 | ET | SILU | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 66 | ET | HARDSWISH | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 67 | ET | HARDSWISH | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 68 | ET | HARDSIGMOID | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 69 | ET | HARDSIGMOID | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 70 | ET | EXP | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 71 | ET | EXP | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 72 | ET | EXPM1 | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 73 | ET | EXPM1 | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 74 | ET | SOFTPLUS | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 75 | ET | SOFTPLUS | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 76 | ET | GELU_ERF | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 77 | ET | GELU_ERF | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 78 | ET | FLOOR | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 79 | ET | FLOOR | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 80 | ET | CEIL | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 81 | ET | CEIL | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 82 | ET | ROUND | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 83 | ET | ROUND | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 84 | ET | TRUNC | type=f16,ne_a=[128,2,2,2],v=1 | support | 0 | no | ET |
| 85 | ET | TRUNC | type=f16,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 86 | ET | ABS | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 87 | ET | ABS | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 88 | ET | SGN | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 89 | ET | SGN | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 90 | ET | NEG | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 91 | ET | NEG | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 92 | ET | STEP | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 93 | ET | STEP | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 94 | ET | TANH | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 95 | ET | TANH | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 96 | ET | ELU | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 97 | ET | ELU | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 98 | ET | RELU | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 99 | ET | RELU | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 100 | ET | SIGMOID | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 101 | ET | SIGMOID | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 102 | ET | GELU | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 103 | ET | GELU | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 104 | ET | GELU_QUICK | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 105 | ET | GELU_QUICK | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 106 | ET | SILU | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 107 | ET | SILU | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 108 | ET | HARDSWISH | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 109 | ET | HARDSWISH | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 110 | ET | HARDSIGMOID | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 111 | ET | HARDSIGMOID | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 112 | ET | EXP | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 113 | ET | EXP | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 114 | ET | EXPM1 | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 115 | ET | EXPM1 | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 116 | ET | SOFTPLUS | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 117 | ET | SOFTPLUS | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 118 | ET | GELU_ERF | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 119 | ET | GELU_ERF | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 120 | ET | FLOOR | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 121 | ET | FLOOR | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 122 | ET | CEIL | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 123 | ET | CEIL | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 124 | ET | ROUND | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 125 | ET | ROUND | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 126 | ET | TRUNC | type=f32,ne_a=[128,2,2,2],v=0 | support | 1 | yes | ET |
| 127 | ET | TRUNC | type=f32,ne_a=[5,7,11,13],v=0 | support | 0 | no | ET |
| 128 | ET | ABS | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 129 | ET | ABS | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 130 | ET | SGN | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 131 | ET | SGN | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 132 | ET | NEG | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 133 | ET | NEG | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 134 | ET | STEP | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 135 | ET | STEP | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 136 | ET | TANH | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 137 | ET | TANH | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 138 | ET | ELU | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 139 | ET | ELU | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 140 | ET | RELU | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 141 | ET | RELU | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 142 | ET | SIGMOID | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 143 | ET | SIGMOID | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 144 | ET | GELU | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 145 | ET | GELU | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 146 | ET | GELU_QUICK | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 147 | ET | GELU_QUICK | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 148 | ET | SILU | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 149 | ET | SILU | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 150 | ET | HARDSWISH | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 151 | ET | HARDSWISH | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 152 | ET | HARDSIGMOID | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 153 | ET | HARDSIGMOID | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 154 | ET | EXP | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 155 | ET | EXP | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 156 | ET | EXPM1 | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 157 | ET | EXPM1 | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 158 | ET | SOFTPLUS | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 159 | ET | SOFTPLUS | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 160 | ET | GELU_ERF | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 161 | ET | GELU_ERF | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 162 | ET | FLOOR | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 163 | ET | FLOOR | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 164 | ET | CEIL | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 165 | ET | CEIL | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 166 | ET | ROUND | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 167 | ET | ROUND | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 168 | ET | TRUNC | type=f32,ne_a=[128,2,2,2],v=1 | support | 1 | yes | ET |
| 169 | ET | TRUNC | type=f32,ne_a=[5,7,11,13],v=1 | support | 0 | no | ET |
| 170 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=0 | support | 0 | no | ET |
| 171 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 172 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=1 | support | 0 | no | ET |
| 173 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 174 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=0,split | support | 0 | no | ET |
| 175 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 176 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=0 | support | 0 | no | ET |
| 177 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 178 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=1 | support | 0 | no | ET |
| 179 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 180 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=0,split | support | 0 | no | ET |
| 181 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 182 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=0 | support | 0 | no | ET |
| 183 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 184 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=0,swapped=1 | support | 0 | no | ET |
| 185 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 186 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=0,split | support | 0 | no | ET |
| 187 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 188 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=0,swapped=0 | support | 0 | no | ET |
| 189 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 190 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=0,swapped=1 | support | 0 | no | ET |
| 191 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 192 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=0,split | support | 0 | no | ET |
| 193 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 194 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=0,swapped=0 | support | 0 | no | ET |
| 195 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 196 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=0,swapped=1 | support | 0 | no | ET |
| 197 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 198 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=0,split | support | 0 | no | ET |
| 199 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 200 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=0 | support | 0 | no | ET |
| 201 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 202 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=1 | support | 0 | no | ET |
| 203 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 204 | ET | REGLU | type=f16,ne_a=[128,2,2,2],v=1,split | support | 0 | no | ET |
| 205 | ET | REGLU | type=f16,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 206 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=0 | support | 0 | no | ET |
| 207 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 208 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=1 | support | 0 | no | ET |
| 209 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 210 | ET | GEGLU | type=f16,ne_a=[128,2,2,2],v=1,split | support | 0 | no | ET |
| 211 | ET | GEGLU | type=f16,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 212 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=0 | support | 0 | no | ET |
| 213 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 214 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=1,swapped=1 | support | 0 | no | ET |
| 215 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 216 | ET | SWIGLU | type=f16,ne_a=[128,2,2,2],v=1,split | support | 0 | no | ET |
| 217 | ET | SWIGLU | type=f16,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 218 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=1,swapped=0 | support | 0 | no | ET |
| 219 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 220 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=1,swapped=1 | support | 0 | no | ET |
| 221 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 222 | ET | GEGLU_ERF | type=f16,ne_a=[128,2,2,2],v=1,split | support | 0 | no | ET |
| 223 | ET | GEGLU_ERF | type=f16,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 224 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=1,swapped=0 | support | 0 | no | ET |
| 225 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 226 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=1,swapped=1 | support | 0 | no | ET |
| 227 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 228 | ET | GEGLU_QUICK | type=f16,ne_a=[128,2,2,2],v=1,split | support | 0 | no | ET |
| 229 | ET | GEGLU_QUICK | type=f16,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 230 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=0 | support | 1 | yes | ET |
| 231 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 232 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=1 | support | 1 | yes | ET |
| 233 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 234 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=0,split | support | 1 | yes | ET |
| 235 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 236 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=0 | support | 1 | yes | ET |
| 237 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 238 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=1 | support | 1 | yes | ET |
| 239 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 240 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=0,split | support | 1 | yes | ET |
| 241 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 242 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=0 | support | 1 | yes | ET |
| 243 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 244 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=0,swapped=1 | support | 1 | yes | ET |
| 245 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 246 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=0,split | support | 1 | yes | ET |
| 247 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 248 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=0,swapped=0 | support | 1 | yes | ET |
| 249 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 250 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=0,swapped=1 | support | 1 | yes | ET |
| 251 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 252 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=0,split | support | 1 | yes | ET |
| 253 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 254 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=0,swapped=0 | support | 1 | yes | ET |
| 255 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=0,swapped=0 | support | 0 | no | ET |
| 256 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=0,swapped=1 | support | 1 | yes | ET |
| 257 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=0,swapped=1 | support | 0 | no | ET |
| 258 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=0,split | support | 1 | yes | ET |
| 259 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=0,split | support | 0 | no | ET |
| 260 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=0 | support | 1 | yes | ET |
| 261 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 262 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=1 | support | 1 | yes | ET |
| 263 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 264 | ET | REGLU | type=f32,ne_a=[128,2,2,2],v=1,split | support | 1 | yes | ET |
| 265 | ET | REGLU | type=f32,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 266 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=0 | support | 1 | yes | ET |
| 267 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 268 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=1 | support | 1 | yes | ET |
| 269 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 270 | ET | GEGLU | type=f32,ne_a=[128,2,2,2],v=1,split | support | 1 | yes | ET |
| 271 | ET | GEGLU | type=f32,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 272 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=0 | support | 1 | yes | ET |
| 273 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 274 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=1,swapped=1 | support | 1 | yes | ET |
| 275 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 276 | ET | SWIGLU | type=f32,ne_a=[128,2,2,2],v=1,split | support | 1 | yes | ET |
| 277 | ET | SWIGLU | type=f32,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 278 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=1,swapped=0 | support | 1 | yes | ET |
| 279 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 280 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=1,swapped=1 | support | 1 | yes | ET |
| 281 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 282 | ET | GEGLU_ERF | type=f32,ne_a=[128,2,2,2],v=1,split | support | 1 | yes | ET |
| 283 | ET | GEGLU_ERF | type=f32,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 284 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=1,swapped=0 | support | 1 | yes | ET |
| 285 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=1,swapped=0 | support | 0 | no | ET |
| 286 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=1,swapped=1 | support | 1 | yes | ET |
| 287 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=1,swapped=1 | support | 0 | no | ET |
| 288 | ET | GEGLU_QUICK | type=f32,ne_a=[128,2,2,2],v=1,split | support | 1 | yes | ET |
| 289 | ET | GEGLU_QUICK | type=f32,ne_a=[5,7,11,13],v=1,split | support | 0 | no | ET |
| 290 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=0,alpha=0.500000,limit=2.000000 | support | 1 | yes | ET |
| 291 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=0,alpha=0.500000,limit=7.000000 | support | 1 | yes | ET |
| 292 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=0,alpha=1.702000,limit=2.000000 | support | 1 | yes | ET |
| 293 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=0,alpha=1.702000,limit=7.000000 | support | 1 | yes | ET |
| 294 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=1,alpha=0.500000,limit=2.000000 | support | 1 | yes | ET |
| 295 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=1,alpha=0.500000,limit=7.000000 | support | 1 | yes | ET |
| 296 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=1,alpha=1.702000,limit=2.000000 | support | 1 | yes | ET |
| 297 | ET | SWIGLU_OAI | type=f32,ne_a=[128,2,2,2],v=1,alpha=1.702000,limit=7.000000 | support | 1 | yes | ET |
| 298 | ET | GET_ROWS | type=f32,n=76800,m=5,r=4,be1=1,be2=2,v=0 | support | 1 | yes | ET |
| 299 | ET | GET_ROWS | type=f32,n=256,m=80000,r=70000,be1=2,be2=1,v=0 | support | 1 | yes | ET |
| 300 | ET | GET_ROWS | type=f32,n=256,m=5,r=4,be1=700,be2=100,v=0 | support | 1 | yes | ET |
| 301 | ET | GET_ROWS | type=q4_0,n=76800,m=5,r=4,be1=1,be2=2,v=0 | support | 1 | yes | ET |
| 302 | ET | GET_ROWS | type=q4_0,n=256,m=80000,r=70000,be1=2,be2=1,v=0 | support | 1 | yes | ET |
| 303 | ET | GET_ROWS | type=q4_0,n=256,m=5,r=4,be1=700,be2=100,v=0 | support | 1 | yes | ET |
| 304 | ET | GET_ROWS | type=f32,n=1,m=8,r=2,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 305 | ET | GET_ROWS | type=f32,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 306 | ET | GET_ROWS | type=f32,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 1 | yes | ET |
| 307 | ET | GET_ROWS | type=f32,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 1 | yes | ET |
| 308 | ET | GET_ROWS | type=f32,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 309 | ET | GET_ROWS | type=f16,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 310 | ET | GET_ROWS | type=f16,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 1 | yes | ET |
| 311 | ET | GET_ROWS | type=f16,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 1 | yes | ET |
| 312 | ET | GET_ROWS | type=f16,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 313 | ET | GET_ROWS | type=bf16,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 314 | ET | GET_ROWS | type=bf16,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 315 | ET | GET_ROWS | type=bf16,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 316 | ET | GET_ROWS | type=bf16,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 317 | ET | GET_ROWS | type=q4_0,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 318 | ET | GET_ROWS | type=q4_0,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 1 | yes | ET |
| 319 | ET | GET_ROWS | type=q4_0,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 1 | yes | ET |
| 320 | ET | GET_ROWS | type=q4_0,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 321 | ET | GET_ROWS | type=q4_1,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 322 | ET | GET_ROWS | type=q4_1,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 323 | ET | GET_ROWS | type=q4_1,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 324 | ET | GET_ROWS | type=q4_1,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 325 | ET | GET_ROWS | type=q5_0,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 326 | ET | GET_ROWS | type=q5_0,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 327 | ET | GET_ROWS | type=q5_0,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 328 | ET | GET_ROWS | type=q5_0,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 329 | ET | GET_ROWS | type=q5_1,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 330 | ET | GET_ROWS | type=q5_1,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 331 | ET | GET_ROWS | type=q5_1,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 332 | ET | GET_ROWS | type=q5_1,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 333 | ET | GET_ROWS | type=q8_0,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 334 | ET | GET_ROWS | type=q8_0,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 1 | yes | ET |
| 335 | ET | GET_ROWS | type=q8_0,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 1 | yes | ET |
| 336 | ET | GET_ROWS | type=q8_0,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 337 | ET | GET_ROWS | type=q1_0,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 338 | ET | GET_ROWS | type=q1_0,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 339 | ET | GET_ROWS | type=q1_0,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 340 | ET | GET_ROWS | type=q1_0,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 341 | ET | GET_ROWS | type=mxfp4,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 342 | ET | GET_ROWS | type=mxfp4,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 343 | ET | GET_ROWS | type=mxfp4,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 344 | ET | GET_ROWS | type=mxfp4,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 345 | ET | GET_ROWS | type=nvfp4,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 346 | ET | GET_ROWS | type=nvfp4,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 347 | ET | GET_ROWS | type=nvfp4,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 348 | ET | GET_ROWS | type=nvfp4,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 349 | ET | GET_ROWS | type=q2_K,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 350 | ET | GET_ROWS | type=q2_K,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 351 | ET | GET_ROWS | type=q2_K,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 352 | ET | GET_ROWS | type=q2_K,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 353 | ET | GET_ROWS | type=q3_K,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 354 | ET | GET_ROWS | type=q3_K,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 355 | ET | GET_ROWS | type=q3_K,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 356 | ET | GET_ROWS | type=q3_K,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 357 | ET | GET_ROWS | type=q4_K,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 1 | yes | ET |
| 358 | ET | GET_ROWS | type=q4_K,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 1 | yes | ET |
| 359 | ET | GET_ROWS | type=q4_K,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 1 | yes | ET |
| 360 | ET | GET_ROWS | type=q4_K,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 361 | ET | GET_ROWS | type=q5_K,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 362 | ET | GET_ROWS | type=q5_K,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 363 | ET | GET_ROWS | type=q5_K,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 364 | ET | GET_ROWS | type=q5_K,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 365 | ET | GET_ROWS | type=q6_K,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 366 | ET | GET_ROWS | type=q6_K,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 367 | ET | GET_ROWS | type=q6_K,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 368 | ET | GET_ROWS | type=q6_K,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 369 | ET | GET_ROWS | type=iq2_xxs,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 370 | ET | GET_ROWS | type=iq2_xxs,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 371 | ET | GET_ROWS | type=iq2_xxs,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 372 | ET | GET_ROWS | type=iq2_xxs,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 373 | ET | GET_ROWS | type=iq2_xs,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 374 | ET | GET_ROWS | type=iq2_xs,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 375 | ET | GET_ROWS | type=iq2_xs,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 376 | ET | GET_ROWS | type=iq2_xs,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 377 | ET | GET_ROWS | type=iq2_s,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 378 | ET | GET_ROWS | type=iq2_s,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 379 | ET | GET_ROWS | type=iq2_s,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 380 | ET | GET_ROWS | type=iq2_s,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 381 | ET | GET_ROWS | type=iq3_xxs,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 382 | ET | GET_ROWS | type=iq3_xxs,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 383 | ET | GET_ROWS | type=iq3_xxs,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 384 | ET | GET_ROWS | type=iq3_xxs,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 385 | ET | GET_ROWS | type=iq1_s,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 386 | ET | GET_ROWS | type=iq1_s,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 387 | ET | GET_ROWS | type=iq1_s,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 388 | ET | GET_ROWS | type=iq1_s,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 389 | ET | GET_ROWS | type=iq1_m,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 390 | ET | GET_ROWS | type=iq1_m,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 391 | ET | GET_ROWS | type=iq1_m,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 392 | ET | GET_ROWS | type=iq1_m,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 393 | ET | GET_ROWS | type=iq4_nl,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 394 | ET | GET_ROWS | type=iq4_nl,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 395 | ET | GET_ROWS | type=iq4_nl,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 396 | ET | GET_ROWS | type=iq4_nl,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 397 | ET | GET_ROWS | type=iq3_s,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 398 | ET | GET_ROWS | type=iq3_s,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 399 | ET | GET_ROWS | type=iq3_s,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 400 | ET | GET_ROWS | type=iq3_s,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 401 | ET | GET_ROWS | type=iq4_xs,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 402 | ET | GET_ROWS | type=iq4_xs,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 403 | ET | GET_ROWS | type=iq4_xs,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 404 | ET | GET_ROWS | type=iq4_xs,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 405 | ET | GET_ROWS | type=i32,n=256,m=5,r=4,be1=1,be2=1,v=0 | support | 0 | no | ET |
| 406 | ET | GET_ROWS | type=i32,n=256,m=5,r=4,be1=1,be2=1,v=1 | support | 0 | no | ET |
| 407 | ET | GET_ROWS | type=i32,n=256,m=5,r=4,be1=7,be2=1,v=0 | support | 0 | no | ET |
| 408 | ET | GET_ROWS | type=i32,n=256,m=5,r=4,be1=7,be2=1,v=1 | support | 0 | no | ET |
| 409 | ET | GET_ROWS_BACK | type=f32,n=1,m=8,r=2,b=1,v=0 | support | 0 | no | ET |
| 410 | ET | GET_ROWS_BACK | type=f32,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 411 | ET | GET_ROWS_BACK | type=f32,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 412 | ET | GET_ROWS_BACK | type=f16,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 413 | ET | GET_ROWS_BACK | type=f16,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 414 | ET | GET_ROWS_BACK | type=bf16,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 415 | ET | GET_ROWS_BACK | type=bf16,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 416 | ET | GET_ROWS_BACK | type=q4_0,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 417 | ET | GET_ROWS_BACK | type=q4_0,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 418 | ET | GET_ROWS_BACK | type=q4_1,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 419 | ET | GET_ROWS_BACK | type=q4_1,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 420 | ET | GET_ROWS_BACK | type=q5_0,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 421 | ET | GET_ROWS_BACK | type=q5_0,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 422 | ET | GET_ROWS_BACK | type=q5_1,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 423 | ET | GET_ROWS_BACK | type=q5_1,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 424 | ET | GET_ROWS_BACK | type=q8_0,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 425 | ET | GET_ROWS_BACK | type=q8_0,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 426 | ET | GET_ROWS_BACK | type=q1_0,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 427 | ET | GET_ROWS_BACK | type=q1_0,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 428 | ET | GET_ROWS_BACK | type=mxfp4,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 429 | ET | GET_ROWS_BACK | type=mxfp4,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 430 | ET | GET_ROWS_BACK | type=nvfp4,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 431 | ET | GET_ROWS_BACK | type=nvfp4,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 432 | ET | GET_ROWS_BACK | type=q2_K,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 433 | ET | GET_ROWS_BACK | type=q2_K,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 434 | ET | GET_ROWS_BACK | type=q3_K,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 435 | ET | GET_ROWS_BACK | type=q3_K,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 436 | ET | GET_ROWS_BACK | type=q4_K,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 437 | ET | GET_ROWS_BACK | type=q4_K,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 438 | ET | GET_ROWS_BACK | type=q5_K,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 439 | ET | GET_ROWS_BACK | type=q5_K,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 440 | ET | GET_ROWS_BACK | type=q6_K,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 441 | ET | GET_ROWS_BACK | type=q6_K,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 442 | ET | GET_ROWS_BACK | type=iq2_xxs,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 443 | ET | GET_ROWS_BACK | type=iq2_xxs,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 444 | ET | GET_ROWS_BACK | type=iq2_xs,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 445 | ET | GET_ROWS_BACK | type=iq2_xs,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 446 | ET | GET_ROWS_BACK | type=iq2_s,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 447 | ET | GET_ROWS_BACK | type=iq2_s,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 448 | ET | GET_ROWS_BACK | type=iq3_xxs,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 449 | ET | GET_ROWS_BACK | type=iq3_xxs,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 450 | ET | GET_ROWS_BACK | type=iq1_s,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 451 | ET | GET_ROWS_BACK | type=iq1_s,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 452 | ET | GET_ROWS_BACK | type=iq1_m,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 453 | ET | GET_ROWS_BACK | type=iq1_m,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 454 | ET | GET_ROWS_BACK | type=iq4_nl,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 455 | ET | GET_ROWS_BACK | type=iq4_nl,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 456 | ET | GET_ROWS_BACK | type=iq3_s,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 457 | ET | GET_ROWS_BACK | type=iq3_s,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 458 | ET | GET_ROWS_BACK | type=iq4_xs,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 459 | ET | GET_ROWS_BACK | type=iq4_xs,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 460 | ET | GET_ROWS_BACK | type=i32,n=256,m=5,r=4,b=1,v=0 | support | 0 | no | ET |
| 461 | ET | GET_ROWS_BACK | type=i32,n=256,m=5,r=4,b=1,v=1 | support | 0 | no | ET |
| 462 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[1,8,1,3],nr23=[1,1],r=2,v=0 | support | 1 | yes | ET |
| 463 | ET | SET_ROWS | type=f32,type_idx=i32,ne=[1,8,1,3],nr23=[1,1],r=2,v=0 | support | 0 | no | ET |
| 464 | ET | SET_ROWS | type=q8_0,type_idx=i32,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 465 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 1 | yes | ET |
| 466 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 1 | yes | ET |
| 467 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 468 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 469 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=0 | support | 1 | yes | ET |
| 470 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 471 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 1 | yes | ET |
| 472 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=1 | support | 1 | yes | ET |
| 473 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=1 | support | 1 | yes | ET |
| 474 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=1 | support | 1 | yes | ET |
| 475 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 1 | yes | ET |
| 476 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 1 | yes | ET |
| 477 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 478 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 479 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=0 | support | 1 | yes | ET |
| 480 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 481 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 482 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 483 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 484 | ET | SET_ROWS | type=f32,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=1 | support | 0 | no | ET |
| 485 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 1 | yes | ET |
| 486 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 1 | yes | ET |
| 487 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 488 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 489 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=0 | support | 1 | yes | ET |
| 490 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 491 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 1 | yes | ET |
| 492 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=1 | support | 1 | yes | ET |
| 493 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=1 | support | 1 | yes | ET |
| 494 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=1 | support | 1 | yes | ET |
| 495 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 1 | yes | ET |
| 496 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 1 | yes | ET |
| 497 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 498 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=0 | support | 1 | yes | ET |
| 499 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=0 | support | 1 | yes | ET |
| 500 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 501 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 502 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 503 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 504 | ET | SET_ROWS | type=f16,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=1 | support | 0 | no | ET |
| 505 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 506 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 507 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 508 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 509 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=0 | support | 0 | no | ET |
| 510 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 511 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 512 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[3,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 513 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[31,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 514 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[33,5,1,1],nr23=[2,3],r=1,v=1 | support | 0 | no | ET |
| 515 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 516 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 517 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 518 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 519 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=0 | support | 0 | no | ET |
| 520 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 521 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 522 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[3,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 523 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[31,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 524 | ET | SET_ROWS | type=bf16,type_idx=i64,ne=[33,5,1,7],nr23=[2,3],r=1,v=1 | support | 0 | no | ET |
| 525 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 526 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 527 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 528 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 529 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 530 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 531 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 532 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 533 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 534 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 535 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 536 | ET | SET_ROWS | type=q4_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 537 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 538 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 539 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 540 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 541 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 542 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 543 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 544 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 545 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 546 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 547 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 548 | ET | SET_ROWS | type=q4_1,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 549 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 550 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 551 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 552 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 553 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 554 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 555 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 556 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 557 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 558 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 559 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 560 | ET | SET_ROWS | type=q5_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 561 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 562 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 563 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 564 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 565 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 566 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 567 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 568 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 569 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 570 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 571 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 572 | ET | SET_ROWS | type=q5_1,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 573 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 574 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 575 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 576 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 577 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 578 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 579 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 580 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 581 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 582 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 583 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 584 | ET | SET_ROWS | type=q8_0,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 585 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 586 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 587 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[384,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 588 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 589 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 590 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[384,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 591 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 592 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 593 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[384,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 594 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 595 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 596 | ET | SET_ROWS | type=q1_0,type_idx=i64,ne=[384,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 597 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 598 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 599 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 600 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 601 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 602 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 603 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 604 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 605 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 606 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 607 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 608 | ET | SET_ROWS | type=mxfp4,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 609 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 610 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 611 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[192,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 612 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 613 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 614 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[192,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 615 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 616 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 617 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[192,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 618 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 619 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 620 | ET | SET_ROWS | type=nvfp4,type_idx=i64,ne=[192,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 621 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 622 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 623 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 624 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 625 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 626 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 627 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 628 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 629 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 630 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 631 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 632 | ET | SET_ROWS | type=q2_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 633 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 634 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 635 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 636 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 637 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 638 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 639 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 640 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 641 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 642 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 643 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 644 | ET | SET_ROWS | type=q3_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 645 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 646 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 647 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 648 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 649 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 650 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 651 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 652 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 653 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 654 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 655 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 656 | ET | SET_ROWS | type=q4_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 657 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 658 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 659 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 660 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 661 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 662 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 663 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 664 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 665 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 666 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 667 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 668 | ET | SET_ROWS | type=q5_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 669 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 670 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 671 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 672 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 673 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 674 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 675 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 676 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 677 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 678 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 679 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 680 | ET | SET_ROWS | type=q6_K,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 681 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 682 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 683 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 684 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 685 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 686 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 687 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 688 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 689 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 690 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 691 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 692 | ET | SET_ROWS | type=iq2_xxs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 693 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 694 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 695 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 696 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 697 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 698 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 699 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 700 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 701 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 702 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 703 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 704 | ET | SET_ROWS | type=iq2_xs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 705 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 706 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 707 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 708 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 709 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 710 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 711 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 712 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 713 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 714 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 715 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 716 | ET | SET_ROWS | type=iq2_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 717 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 718 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 719 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 720 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 721 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 722 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 723 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 724 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 725 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 726 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 727 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 728 | ET | SET_ROWS | type=iq3_xxs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 729 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 730 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 731 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 732 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 733 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 734 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 735 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 736 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 737 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 738 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 739 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 740 | ET | SET_ROWS | type=iq1_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 741 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 742 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 743 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 744 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 745 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 746 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 747 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 748 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 749 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 750 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 751 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 752 | ET | SET_ROWS | type=iq1_m,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 753 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 754 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 755 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 756 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 757 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 758 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[96,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 759 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 760 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 761 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 762 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 763 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 764 | ET | SET_ROWS | type=iq4_nl,type_idx=i64,ne=[96,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 765 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 766 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 767 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 768 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 769 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 770 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 771 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 772 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 773 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 774 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 775 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 776 | ET | SET_ROWS | type=iq3_s,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 777 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 778 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 779 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 780 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,5,1,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 781 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,11,1,1],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 782 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[768,3,1,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 783 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=0 | support | 0 | no | ET |
| 784 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=0 | support | 0 | no | ET |
| 785 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=0 | support | 0 | no | ET |
| 786 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,5,7,3],nr23=[1,1],r=1,v=1 | support | 0 | no | ET |
| 787 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[256,11,1,7],nr23=[2,3],r=7,v=1 | support | 0 | no | ET |
| 788 | ET | SET_ROWS | type=iq4_xs,type_idx=i64,ne=[768,3,7,1],nr23=[2,3],r=2,v=1 | support | 0 | no | ET |
| 789 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 790 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 791 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 792 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 793 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 794 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 795 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 796 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 797 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 798 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 799 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 800 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 801 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 802 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 803 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 804 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 805 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 806 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 807 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 808 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 809 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 810 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 811 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 812 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 813 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 814 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 815 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 816 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 817 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 818 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 819 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 820 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 821 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 822 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 823 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 824 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 825 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 826 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 827 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 828 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 829 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 830 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 831 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 832 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 833 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 834 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 835 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 836 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 837 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 838 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 839 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 840 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 841 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 842 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 843 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 844 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 845 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 846 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 847 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 848 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 849 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 850 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 851 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 852 | ET | POOL_2D | pool_type=avg,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 853 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 854 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 855 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 856 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 857 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 858 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 859 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 860 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 861 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 862 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 863 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 864 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 865 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 866 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 867 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 868 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=1,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 869 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 870 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 871 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 872 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 873 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 874 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 875 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 876 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 877 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 878 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 879 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 880 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 881 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 882 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 883 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 884 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=1,k1=3,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 885 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 886 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 887 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 888 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 889 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 890 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 891 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 892 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 893 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 894 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 895 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 896 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 897 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 898 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 899 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 900 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=1,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 901 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 902 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 903 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 904 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 905 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 906 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 907 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 908 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=1,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 909 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=0,p1=0 | support | 0 | no | ET |
| 910 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=0,p1=1 | support | 0 | no | ET |
| 911 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=1,p1=0 | support | 0 | no | ET |
| 912 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=1,p0=1,p1=1 | support | 0 | no | ET |
| 913 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=0,p1=0 | support | 0 | no | ET |
| 914 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=0,p1=1 | support | 0 | no | ET |
| 915 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=1,p1=0 | support | 0 | no | ET |
| 916 | ET | POOL_2D | pool_type=max,type_input=f32,ne_input=[10,10,3,1],k0=3,k1=3,s0=2,s1=2,p0=1,p1=1 | support | 0 | no | ET |
| 917 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 918 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 919 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 920 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 921 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 922 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 923 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 924 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 925 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 926 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 927 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 928 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 929 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 930 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 931 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 932 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 933 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 934 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 935 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 936 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 937 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 938 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 939 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 940 | ET | POOL_1D | pool_type=avg,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 941 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 942 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 943 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=1,p0=0 | support | 0 | no | ET |
| 944 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 945 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 946 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=1,p0=1 | support | 0 | no | ET |
| 947 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 948 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 949 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=2,p0=0 | support | 0 | no | ET |
| 950 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 951 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 952 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=1,s0=2,p0=1 | support | 0 | no | ET |
| 953 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 954 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 955 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=1,p0=0 | support | 0 | no | ET |
| 956 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 957 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 958 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=1,p0=1 | support | 0 | no | ET |
| 959 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 960 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 961 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=2,p0=0 | support | 0 | no | ET |
| 962 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[10,3,2,1],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 963 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[11,1,3,2],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 964 | ET | POOL_1D | pool_type=max,type_input=f32,ne_input=[128,2,1,3],k0=3,s0=2,p0=1 | support | 0 | no | ET |
| 965 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[3000,128,1,1],ne_kernel=[3,128,1280,1],s0=1,s1=0,p0=1,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 966 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f32,ne_input=[3000,128,1,1],ne_kernel=[3,128,1280,1],s0=1,s1=0,p0=1,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 967 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[3000,128,1,1],ne_kernel=[3,128,1280,1],s0=1,s1=0,p0=1,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 968 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=1,s1=0,p0=0,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 969 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=1,s1=0,p0=0,p1=0,d0=3,d1=0,is_2D=0 | support | 1 | yes | ET |
| 970 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=1,s1=0,p0=3,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 971 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=1,s1=0,p0=3,p1=0,d0=3,d1=0,is_2D=0 | support | 1 | yes | ET |
| 972 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=3,s1=0,p0=0,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 973 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=3,s1=0,p0=0,p1=0,d0=3,d1=0,is_2D=0 | support | 1 | yes | ET |
| 974 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=3,s1=0,p0=3,p1=0,d0=1,d1=0,is_2D=0 | support | 1 | yes | ET |
| 975 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,2,2,1],ne_kernel=[3,2,2,1],s0=3,s1=0,p0=3,p1=0,d0=3,d1=0,is_2D=0 | support | 1 | yes | ET |
| 976 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[10,10,3,1],ne_kernel=[3,3,3,1],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 977 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f32,ne_input=[10,10,3,1],ne_kernel=[3,3,3,1],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 978 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[10,10,3,1],ne_kernel=[3,3,3,1],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 979 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 980 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 981 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 982 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 983 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 984 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 985 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 986 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=0,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 987 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 988 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 989 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 990 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 991 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 992 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 993 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 994 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=1,p0=3,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 995 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 996 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 997 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 998 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 999 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1000 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1001 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1002 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=0,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1003 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1004 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1005 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1006 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1007 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1008 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1009 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1010 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=1,s1=3,p0=3,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1011 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1012 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1013 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1014 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1015 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1016 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1017 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1018 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=0,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1019 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1020 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1021 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1022 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1023 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1024 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1025 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1026 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=1,p0=3,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1027 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1028 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1029 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1030 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1031 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1032 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1033 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1034 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=0,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1035 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1036 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=0,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1037 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=0,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1038 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=0,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1039 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=3,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1040 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=3,d0=1,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1041 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=3,d0=3,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1042 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,2,2],ne_kernel=[3,3,2,2],s0=3,s1=3,p0=3,p1=3,d0=3,d1=3,is_2D=1 | support | 1 | yes | ET |
| 1043 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,1,32],ne_kernel=[3,3,1,32],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1044 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,2,32],ne_kernel=[3,3,2,32],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1045 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,1,1024],ne_kernel=[3,3,1,1024],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1046 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,2,1024],ne_kernel=[3,3,2,1024],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1047 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,1,2048],ne_kernel=[3,3,1,2048],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1048 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,2,2048],ne_kernel=[3,3,2,2048],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1049 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,1,2560],ne_kernel=[3,3,1,2560],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1050 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[12,12,2,2560],ne_kernel=[3,3,2,2560],s0=1,s1=1,p0=1,p1=1,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1051 | ET | IM2COL | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[5,5,1,32],ne_kernel=[3,4,1,32],s0=1,s1=1,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1052 | ET | IM2COL | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[2,2,1536,729],ne_kernel=[2,2,1536,4096],s0=1,s1=1,p0=0,p1=0,d0=1,d1=1,is_2D=1 | support | 1 | yes | ET |
| 1053 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[10,10,10,9],ne_kernel=[3,3,3,1],IC=3,s0=1,s1=1,s2=1,p0=1,p1=1,p2=1,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1054 | ET | IM2COL_3D | type_input=f32,type_kernel=f16,dst_type=f32,ne_input=[10,10,10,9],ne_kernel=[3,3,3,1],IC=3,s0=1,s1=1,s2=1,p0=1,p1=1,p2=1,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1055 | ET | IM2COL_3D | type_input=f32,type_kernel=f16,dst_type=f16,ne_input=[10,10,10,9],ne_kernel=[3,3,3,1],IC=3,s0=1,s1=1,s2=1,p0=1,p1=1,p2=1,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1056 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1057 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1058 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1059 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1060 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1061 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1062 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1063 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1064 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1065 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1066 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1067 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1068 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1069 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1070 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1071 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1072 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1073 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1074 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1075 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1076 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1077 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1078 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1079 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1080 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1081 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1082 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1083 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1084 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1085 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1086 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1087 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1088 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1089 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1090 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1091 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1092 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1093 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1094 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1095 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1096 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1097 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1098 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1099 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1100 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1101 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1102 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1103 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1104 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1105 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1106 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1107 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1108 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1109 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1110 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1111 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1112 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1113 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1114 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1115 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1116 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1117 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1118 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1119 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1120 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1121 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1122 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1123 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1124 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1125 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1126 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1127 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1128 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1129 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1130 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1131 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1132 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1133 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1134 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1135 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1136 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1137 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1138 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1139 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1140 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1141 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1142 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1143 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1144 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1145 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1146 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1147 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1148 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1149 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1150 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1151 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1152 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1153 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1154 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1155 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1156 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1157 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1158 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1159 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1160 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1161 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1162 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1163 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1164 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1165 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1166 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1167 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1168 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1169 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1170 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1171 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1172 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1173 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1174 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1175 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1176 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1177 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1178 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1179 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1180 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1181 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1182 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1183 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1184 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1185 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1186 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1187 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1188 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1189 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1190 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1191 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1192 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1193 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1194 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1195 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1196 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1197 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1198 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1199 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1200 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1201 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1202 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1203 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1204 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1205 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1206 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1207 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1208 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1209 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1210 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1211 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1212 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1213 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1214 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1215 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1216 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1217 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1218 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1219 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1220 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1221 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1222 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1223 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1224 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1225 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1226 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1227 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1228 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1229 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1230 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1231 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1232 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1233 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1234 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1235 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1236 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1237 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1238 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1239 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1240 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1241 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1242 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1243 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1244 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1245 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1246 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1247 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1248 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1249 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1250 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1251 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1252 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1253 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1254 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1255 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1256 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1257 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1258 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1259 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1260 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1261 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1262 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1263 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1264 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1265 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1266 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1267 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1268 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1269 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1270 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1271 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1272 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1273 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1274 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1275 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1276 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1277 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1278 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1279 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1280 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1281 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1282 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1283 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1284 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1285 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1286 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1287 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1288 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1289 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1290 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1291 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1292 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1293 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1294 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1295 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1296 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1297 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1298 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1299 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1300 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1301 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1302 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1303 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1304 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1305 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1306 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1307 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1308 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1309 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1310 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1311 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1312 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1313 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1314 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1315 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1316 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1317 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1318 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1319 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1320 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1321 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1322 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1323 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1324 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1325 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1326 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1327 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1328 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1329 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1330 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1331 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1332 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1333 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1334 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1335 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1336 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1337 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1338 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1339 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1340 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1341 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1342 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1343 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1344 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1345 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1346 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1347 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1348 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1349 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1350 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1351 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1352 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1353 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1354 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1355 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1356 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1357 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1358 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1359 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1360 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1361 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1362 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1363 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1364 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1365 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1366 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1367 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1368 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1369 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1370 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1371 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1372 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1373 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1374 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1375 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1376 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1377 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1378 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1379 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1380 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1381 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1382 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1383 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1384 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1385 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1386 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1387 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1388 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1389 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1390 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1391 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1392 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1393 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1394 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1395 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1396 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1397 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1398 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1399 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1400 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1401 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1402 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1403 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1404 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1405 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1406 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1407 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1408 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1409 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1410 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1411 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1412 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1413 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1414 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1415 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1416 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1417 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1418 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1419 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1420 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1421 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1422 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1423 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1424 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1425 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1426 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1427 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1428 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1429 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1430 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1431 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1432 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1433 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1434 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1435 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1436 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1437 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1438 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1439 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1440 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1441 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1442 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1443 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1444 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1445 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1446 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1447 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1448 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1449 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1450 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1451 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1452 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1453 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1454 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1455 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1456 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1457 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1458 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1459 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1460 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1461 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1462 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1463 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1464 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1465 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1466 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1467 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1468 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1469 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1470 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1471 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1472 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1473 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1474 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1475 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1476 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1477 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1478 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1479 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1480 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1481 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1482 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1483 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1484 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1485 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1486 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1487 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1488 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1489 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1490 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1491 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1492 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1493 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1494 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1495 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1496 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1497 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1498 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1499 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1500 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1501 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1502 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1503 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1504 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1505 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1506 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1507 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1508 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1509 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1510 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1511 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1512 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1513 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1514 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1515 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1516 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1517 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1518 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1519 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1520 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1521 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1522 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1523 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1524 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1525 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1526 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1527 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1528 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1529 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1530 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1531 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1532 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1533 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1534 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1535 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1536 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1537 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1538 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1539 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1540 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1541 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1542 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1543 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1544 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1545 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1546 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1547 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1548 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1549 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1550 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1551 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1552 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1553 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1554 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1555 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1556 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1557 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1558 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1559 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1560 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1561 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1562 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1563 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1564 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1565 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1566 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1567 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=1,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1568 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1569 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1570 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1571 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1572 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1573 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1574 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1575 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1576 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1577 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1578 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1579 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1580 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1581 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1582 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1583 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1584 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1585 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1586 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1587 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1588 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1589 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1590 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1591 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1592 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1593 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1594 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1595 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1596 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1597 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1598 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1599 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1600 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1601 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1602 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1603 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1604 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1605 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1606 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1607 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1608 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1609 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1610 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1611 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1612 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1613 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1614 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1615 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1616 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1617 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1618 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1619 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1620 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1621 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1622 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1623 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1624 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1625 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1626 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1627 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1628 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1629 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1630 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1631 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1632 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1633 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1634 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1635 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1636 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1637 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1638 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1639 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1640 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1641 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1642 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1643 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1644 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1645 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1646 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1647 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1648 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1649 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1650 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1651 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1652 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1653 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1654 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1655 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1656 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1657 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1658 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1659 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1660 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1661 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1662 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1663 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1664 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1665 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1666 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1667 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1668 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1669 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1670 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1671 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1672 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1673 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1674 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1675 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1676 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1677 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1678 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1679 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1680 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1681 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1682 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1683 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1684 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1685 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1686 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1687 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1688 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1689 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1690 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1691 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1692 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1693 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1694 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1695 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1696 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1697 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1698 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1699 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1700 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1701 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1702 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1703 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1704 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1705 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1706 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1707 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1708 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1709 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1710 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1711 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1712 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1713 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1714 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1715 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1716 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1717 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1718 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1719 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1720 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1721 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1722 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1723 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1724 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1725 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1726 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1727 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1728 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1729 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1730 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1731 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1732 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1733 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1734 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1735 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1736 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1737 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1738 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1739 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1740 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1741 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1742 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1743 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1744 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1745 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1746 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1747 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1748 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1749 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1750 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1751 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1752 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1753 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1754 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1755 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1756 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1757 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1758 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1759 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1760 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1761 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1762 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1763 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1764 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1765 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1766 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1767 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1768 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1769 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1770 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1771 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1772 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1773 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1774 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1775 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1776 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1777 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1778 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1779 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1780 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1781 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1782 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1783 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1784 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1785 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1786 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1787 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1788 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1789 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1790 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1791 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1792 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1793 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1794 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1795 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1796 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1797 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1798 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1799 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1800 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1801 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1802 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1803 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1804 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1805 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1806 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1807 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1808 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1809 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1810 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1811 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1812 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1813 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1814 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1815 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1816 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1817 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1818 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1819 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1820 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1821 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1822 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1823 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1824 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1825 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1826 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1827 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1828 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1829 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1830 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1831 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1832 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1833 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1834 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1835 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1836 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1837 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1838 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1839 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1840 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1841 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1842 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1843 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1844 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1845 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1846 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1847 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1848 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1849 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1850 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1851 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1852 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1853 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1854 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1855 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1856 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1857 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1858 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1859 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1860 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1861 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1862 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1863 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1864 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1865 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1866 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1867 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1868 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1869 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1870 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1871 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1872 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1873 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1874 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1875 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1876 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1877 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1878 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1879 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1880 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1881 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1882 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1883 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1884 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1885 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1886 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1887 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1888 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1889 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1890 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1891 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1892 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1893 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1894 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1895 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1896 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1897 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1898 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1899 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1900 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1901 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1902 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1903 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1904 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1905 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1906 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1907 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1908 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1909 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1910 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1911 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1912 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1913 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1914 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1915 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1916 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1917 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1918 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1919 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1920 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1921 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1922 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1923 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1924 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1925 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1926 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1927 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1928 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1929 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1930 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1931 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1932 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1933 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1934 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1935 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1936 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1937 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1938 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1939 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1940 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1941 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1942 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1943 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1944 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1945 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1946 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1947 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1948 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1949 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1950 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1951 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1952 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1953 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1954 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1955 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1956 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1957 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1958 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1959 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1960 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1961 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1962 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1963 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1964 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1965 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1966 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1967 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1968 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1969 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1970 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1971 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1972 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1973 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1974 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1975 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1976 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1977 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1978 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1979 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1980 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1981 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1982 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1983 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1984 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1985 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1986 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 1987 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 1988 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1989 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1990 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 1991 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 1992 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1993 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1994 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 1995 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 1996 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1997 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 1998 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 1999 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2000 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2001 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2002 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2003 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2004 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2005 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2006 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2007 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2008 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2009 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2010 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2011 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2012 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2013 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2014 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2015 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2016 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2017 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2018 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2019 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2020 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2021 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2022 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2023 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2024 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2025 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2026 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2027 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2028 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2029 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2030 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2031 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2032 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2033 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2034 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2035 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2036 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2037 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2038 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2039 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2040 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2041 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2042 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2043 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2044 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2045 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2046 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2047 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2048 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2049 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2050 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2051 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2052 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2053 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2054 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2055 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2056 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2057 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2058 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2059 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2060 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2061 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2062 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2063 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2064 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2065 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2066 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2067 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2068 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2069 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2070 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2071 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2072 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2073 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2074 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2075 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2076 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2077 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2078 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2079 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=1,s1=3,s2=3,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2080 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2081 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2082 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2083 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2084 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2085 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2086 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2087 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2088 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2089 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2090 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2091 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2092 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2093 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2094 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2095 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2096 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2097 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2098 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2099 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2100 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2101 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2102 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2103 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2104 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2105 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2106 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2107 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2108 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2109 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2110 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2111 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2112 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2113 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2114 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2115 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2116 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2117 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2118 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2119 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2120 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2121 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2122 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2123 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2124 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2125 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2126 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2127 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2128 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2129 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2130 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2131 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2132 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2133 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2134 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2135 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2136 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2137 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2138 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2139 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2140 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2141 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2142 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2143 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2144 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2145 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2146 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2147 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2148 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2149 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2150 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2151 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2152 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2153 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2154 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2155 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2156 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2157 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2158 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2159 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2160 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2161 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2162 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2163 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2164 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2165 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2166 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2167 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2168 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2169 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2170 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2171 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2172 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2173 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2174 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2175 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2176 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2177 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2178 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2179 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2180 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2181 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2182 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2183 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2184 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2185 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2186 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2187 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2188 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2189 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2190 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2191 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2192 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2193 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2194 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2195 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2196 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2197 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2198 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2199 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2200 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2201 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2202 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2203 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2204 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2205 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2206 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2207 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2208 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2209 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2210 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2211 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2212 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2213 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2214 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2215 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2216 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2217 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2218 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2219 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2220 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2221 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2222 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2223 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2224 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2225 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2226 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2227 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2228 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2229 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2230 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2231 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2232 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2233 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2234 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2235 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2236 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2237 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2238 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2239 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2240 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2241 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2242 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2243 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2244 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2245 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2246 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2247 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2248 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2249 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2250 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2251 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2252 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2253 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2254 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2255 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2256 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2257 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2258 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2259 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2260 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2261 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2262 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2263 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2264 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2265 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2266 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2267 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2268 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2269 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2270 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2271 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2272 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2273 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2274 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2275 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2276 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2277 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2278 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2279 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2280 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2281 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2282 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2283 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2284 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2285 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2286 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2287 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2288 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2289 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2290 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2291 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2292 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2293 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2294 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2295 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2296 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2297 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2298 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2299 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2300 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2301 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2302 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2303 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2304 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2305 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2306 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2307 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2308 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2309 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2310 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2311 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2312 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2313 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2314 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2315 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2316 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2317 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2318 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2319 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2320 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2321 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2322 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2323 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2324 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2325 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2326 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2327 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2328 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2329 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2330 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2331 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2332 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2333 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2334 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2335 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=1,p0=3,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2336 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2337 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2338 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2339 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2340 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2341 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2342 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2343 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2344 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2345 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2346 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2347 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2348 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2349 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2350 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2351 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2352 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2353 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2354 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2355 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2356 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2357 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2358 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2359 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2360 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2361 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2362 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2363 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2364 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2365 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2366 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2367 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2368 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2369 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2370 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2371 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2372 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2373 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2374 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2375 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2376 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2377 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2378 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2379 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2380 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2381 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2382 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2383 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2384 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2385 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2386 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2387 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2388 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2389 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2390 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2391 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2392 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2393 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2394 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2395 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2396 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2397 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2398 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2399 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=0,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2400 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2401 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2402 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2403 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2404 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2405 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2406 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2407 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2408 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2409 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2410 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2411 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2412 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2413 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2414 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2415 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2416 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2417 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2418 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2419 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2420 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2421 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2422 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2423 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2424 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2425 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2426 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2427 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2428 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2429 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2430 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2431 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2432 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2433 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2434 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2435 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2436 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2437 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2438 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2439 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2440 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2441 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2442 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2443 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2444 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2445 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2446 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2447 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2448 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2449 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2450 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2451 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2452 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2453 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2454 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2455 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2456 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2457 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2458 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2459 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2460 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2461 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2462 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2463 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=0,p1=3,p2=3,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2464 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2465 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2466 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2467 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2468 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2469 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2470 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2471 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2472 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2473 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2474 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2475 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2476 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2477 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2478 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2479 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=1,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2480 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2481 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2482 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2483 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2484 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2485 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2486 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=0 | support | 0 | no | ET |
| 2487 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=1,d2=3,v=1 | support | 0 | no | ET |
| 2488 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2489 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2490 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=0 | support | 0 | no | ET |
| 2491 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=1,v=1 | support | 0 | no | ET |
| 2492 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2493 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2494 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=0 | support | 0 | no | ET |
| 2495 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=0,d0=3,d1=3,d2=3,v=1 | support | 0 | no | ET |
| 2496 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2497 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2498 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=0 | support | 0 | no | ET |
| 2499 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=3,s0=3,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=1,v=1 | support | 0 | no | ET |
| 2500 | ET | IM2COL_3D | type_input=f32,type_kernel=f32,dst_type=f32,ne_input=[20,20,10,3],ne_kernel=[3,3,3,3],IC=1,s0=3,s1=1,s2=3,p0=3,p1=0,p2=3,d0=1,d1=1,d2=3,v=0 | support | 0 | no | ET |
| The file is too large to be shown. View Raw |