Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NCHW (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    With `src_format` of `NHWC`, `dst_format` of `NCHW`, and input:
    ```
    [1, 2]
    ```
    , the output will be:
    ```
    [1, 2]
    ```
      }];
    
      let arguments = (ins
        Arg<TF_I32OrI64Tensor, [{Tensor of rank 1 or 2 in source data format.}]>:$x,
    
        DefaultValuedOptionalAttr<StrAttr, "\"NHWC\"">:$src_format,
        DefaultValuedOptionalAttr<StrAttr, "\"NCHW\"">:$dst_format
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Add Mel-Frequency Cepstral Coefficient support to `tf.contrib.signal` (with
        GPU and gradient support).
    *   Add a self-check on `import tensorflow` for Windows DLL issues.
    *   Add NCHW support to `tf.depth_to_space` on GPU.
    *   TensorFlow Debugger (tfdbg):
        *   Add `eval` command to allow evaluation of arbitrary Python/numpy
            expressions in tfdbg command-line interface. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top