Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 182 for blockSize (0.24 sec)

  1. doc/go_spec.html

    	polar Point                   // polar and Point denote different types
    )
    
    type TreeNode struct {
    	left, right *TreeNode
    	value any
    }
    
    type Block interface {
    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. api/go1.1.txt

    pkg crypto, const SHA512 = 7
    pkg crypto/aes, const BlockSize = 16
    pkg crypto/des, const BlockSize = 8
    pkg crypto/dsa, const L1024N160 = 0
    pkg crypto/dsa, const L2048N224 = 1
    pkg crypto/dsa, const L2048N256 = 2
    pkg crypto/dsa, const L3072N256 = 3
    pkg crypto/hmac, func Equal([]uint8, []uint8) bool
    pkg crypto/md5, const BlockSize = 64
    pkg crypto/md5, const Size = 16
    pkg crypto/sha1, const BlockSize = 64
    pkg crypto/sha1, const Size = 20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testSpaceToDepthF32(%arg0: tensor<1x2x2x1xf32>) -> tensor<1x1x1x4xf32> {
      // CHECK: %[[ARG:.*]]: tensor<1x2x2x1xf32>
      // CHECK: "tfl.space_to_depth"(%[[ARG]]) <{block_size = 2 : i32}> : (tensor<1x2x2x1xf32>) -> tensor<1x1x1x4xf32>
      %0 = "tfl.space_to_depth"(%arg0) {block_size = 2: i32} : (tensor<1x2x2x1xf32>) -> tensor<1x1x1x4xf32>
      func.return %0 : tensor<1x1x1x4xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg go/doc, type Func struct, Examples []*Example
    pkg go/doc, type Package struct, Examples []*Example
    pkg go/doc, type Type struct, Examples []*Example
    pkg hash/maphash, func MakeSeed() Seed
    pkg hash/maphash, method (*Hash) BlockSize() int
    pkg hash/maphash, method (*Hash) Reset()
    pkg hash/maphash, method (*Hash) Seed() Seed
    pkg hash/maphash, method (*Hash) SetSeed(Seed)
    pkg hash/maphash, method (*Hash) Size() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    func.func @space_to_depth(%arg0: tensor<1x2x2x1xf32>) -> tensor<?xf32> {
      %0 = "tf.SpaceToDepth"(%arg0) {block_size = 2: i64,  data_format = "NHWC"}: (tensor<1x2x2x1xf32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    
      // CHECK-LABEL: space_to_depth
      // CHECK: %[[ARG:.*]]: tensor<1x2x2x1xf32>
      // CHECK: "tfl.space_to_depth"(%[[ARG]]) <{block_size = 2 : i32}> : (tensor<1x2x2x1xf32>) -> tensor<?xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Seq_num             uint64
    	Ts_first_pkt        TpacketBDTS
    	Ts_last_pkt         TpacketBDTS
    }
    
    type TpacketReq struct {
    	Block_size uint32
    	Block_nr   uint32
    	Frame_size uint32
    	Frame_nr   uint32
    }
    
    type TpacketReq3 struct {
    	Block_size       uint32
    	Block_nr         uint32
    	Frame_size       uint32
    	Frame_nr         uint32
    	Retire_blk_tov   uint32
    	Sizeof_priv      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      typedef SpaceToDepthOptions TableType;
      int32_t block_size = 0;
    };
    
    struct SpaceToDepthOptions FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
      typedef SpaceToDepthOptionsT NativeTableType;
      typedef SpaceToDepthOptionsBuilder Builder;
      enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
        VT_BLOCK_SIZE = 4
      };
      int32_t block_size() const {
        return GetField<int32_t>(VT_BLOCK_SIZE, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        and `width` dimensions are moved to the `depth` dimension.
        `block_size` indicates the input block size.
       }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I32, I64, QI8, QUI8, TFL_Quint8]>:$input,
        ConfinedAttr<I32Attr, [IntPositive]>:$block_size
      );
    
      let results = (outs
        TFL_TensorOf<[F32, I32, I64, QI8, QUI8, TFL_Quint8]>:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %0 = "tf.BatchToSpace"(%arg0, %arg1) {block_size = 8 : i64} : (tensor<*xf32>, tensor<?x?xi32>) -> tensor<*xf32>
      func.return %0 : tensor<*xf32>
    }
    
    // CHECK-LABEL: testBatchToSpaceDynamicCrops
    func.func @testBatchToSpaceDynamicCrops(%arg0: tensor<?x?x?x?xf32>, %arg1: tensor<*xi32>) -> tensor<*xf32> {
      // CHECK-NOT: "tf.BatchToSpaceND"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
        module {
          func @while_body {
            %input = "tf.IteratorGetNext"(...) {device = "/CPU:0"} -> tensor<2x224x224x3xf32>
            %space_to_depth = "tf.SpaceToDepth"(%input) {block_size = 2, ...}: (tensor<2x224x224x3xf32>) -> tensor<2x112x112x12xf32>
            %device_launch = "tf_device.cluster_func"(%space_to_depth,...) {func = @_func,...)
            return ...
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top