Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Fpack (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"UserInfo10.FullName", Field, 0},
    		{"UserInfo10.Name", Field, 0},
    		{"UserInfo10.UsrComment", Field, 0},
    		{"Ustat", Func, 0},
    		{"Ustat_t", Type, 0},
    		{"Ustat_t.Fname", Field, 0},
    		{"Ustat_t.Fpack", Field, 0},
    		{"Ustat_t.Pad_cgo_0", Field, 0},
    		{"Ustat_t.Pad_cgo_1", Field, 0},
    		{"Ustat_t.Tfree", Field, 0},
    		{"Ustat_t.Tinode", Field, 0},
    		{"Utimbuf", Type, 0},
    		{"Utimbuf.Actime", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    if `axis == 1` then the `output` tensor will have the shape `(A, N, B, C)`.
    Etc.
    
    For example:
    
    ```
    # 'x' is [1, 4]
    # 'y' is [2, 5]
    # 'z' is [3, 6]
    pack([x, y, z]) => [[1, 4], [2, 5], [3, 6]]  # Pack along first dim.
    pack([x, y, z], axis=1) => [[1, 2, 3], [4, 5, 6]]
    ```
    
    This is the opposite of `unpack`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. RELEASE.md

    `tf.reverse_v2()` will remain until 1.0 final. * `tf.mul`, `tf.sub` and `tf.neg`
    are deprecated in favor of `tf.multiply`, `tf.subtract` and `tf.negative`. *
    `tf.pack` and `tf.unpack` are deprecated in favor of `tf.stack` and
    `tf.unstack`. * `TensorArray.pack` and `TensorArray.unpack` are getting
    deprecated in favor of `TensorArray.stack` and `TensorArray.unstack`. * The
    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