Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 182 for blockSize (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{'tf.BatchToSpace' op requires output batch (dimension 0) to be equal to input batch (dimension 0) / (block_size * block_size), but got output batch 8, input batch 16, and block_size 2}}
      %0 = "tf.BatchToSpace"(%arg0, %arg1) {block_size = 2 : i64} : (tensor<16x8x8x3xf32>, tensor<*xi32>) -> tensor<8x8x8x3xf32>
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/fallback_to_flex_ops_legacy.mlir

    // CHECK: return %[[SUB_0]] : tensor<15x28x28x1xf32>
    }
    
    // CHECK-LABEL: depth_to_space
    func.func @depth_to_space(%arg0: tensor<1x1x1x4xf32>) -> tensor<1x2x2x1xf32> {
      %0 = "tf.DepthToSpace"(%arg0) {block_size = 2: i64,  data_format = "NHWC"}: (tensor<1x1x1x4xf32>) -> tensor<1x2x2x1xf32>
      func.return %0 : tensor<1x2x2x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        %1 = "tf.IteratorGetNext"(%arg5) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<!tf_type.resource>) -> tensor<2x224x224x3xf32>
        // CHECK-DAG: %[[SPACETODEPTH0:.*]] = "tf.SpaceToDepth"([[INPUT:.*]]) <{block_size = 2 : i64, data_format = "NHWC"}> : (tensor<2x224x224x3xf32>) -> tensor<2x112x112x12xf32>
        %2 = "tf.AddV2"(%arg2, %arg3) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    table BatchToSpaceNDOptions {
    }
    
    table SkipGramOptions {
      ngram_size: int;
      max_skip_size: int;
      include_all_ngrams: bool;
    }
    
    table SpaceToDepthOptions {
      block_size: int;
    }
    
    table DepthToSpaceOptions {
      block_size: int;
    }
    
    table SubOptions {
      fused_activation_function:ActivationFunctionType;
    }
    
    table DivOptions {
      fused_activation_function:ActivationFunctionType;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/fallback_to_flex_ops_default.mlir

    // CHECK: return %[[SUB_0]] : tensor<15x28x28x1xf32>
    }
    
    // CHECK-LABEL: depth_to_space
    func.func @depth_to_space(%arg0: tensor<1x1x1x4xf32>) -> tensor<1x2x2x1xf32> {
      %0 = "tf.DepthToSpace"(%arg0) {block_size = 2: i64,  data_format = "NHWC"}: (tensor<1x1x1x4xf32>) -> tensor<1x2x2x1xf32>
      func.return %0 : tensor<1x2x2x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    	polar Point                   // polar and Point denote different types
    )
    
    type TreeNode struct {
    	left, right *TreeNode
    	value *Comparable
    }
    
    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: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    table BatchToSpaceNDOptions {
    }
    
    table SkipGramOptions {
      ngram_size: int;
      max_skip_size: int;
      include_all_ngrams: bool;
    }
    
    table SpaceToDepthOptions {
      block_size: int;
    }
    
    table DepthToSpaceOptions {
      block_size: int;
    }
    
    table SubOptions {
      fused_activation_function:ActivationFunctionType;
      // Parameters supported by version 5
      pot_scale_int16:bool = true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    The attr `block_size` indicates the input block size and how the data is moved.
    
      * Chunks of data of size `block_size * block_size` from depth are rearranged
        into non-overlapping blocks of size `block_size x block_size`
      * The width of the output tensor is `input_depth * block_size`, whereas the
        height is `input_height * block_size`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table SkipGramOptions {
      ngram_size: int;
      max_skip_size: int;
      include_all_ngrams: bool;
    }
    
    table SpaceToDepthOptions {
      block_size: int;
    }
    
    table DepthToSpaceOptions {
      block_size: int;
    }
    
    table SubOptions {
      fused_activation_function:ActivationFunctionType;
      // Parameters supported by version 5
      pot_scale_int16:bool = true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    	// on systems with coarse timer granularity.
    	const blockTime = 100 * time.Millisecond
    
    	// Make sure the goroutine spawned above actually blocks on the lock.
    	for {
    		if runtime.GIsWaitingOnMutex(gp) {
    			break
    		}
    		runtime.Gosched()
    	}
    
    	// Let some amount of time pass.
    	time.Sleep(blockTime)
    
    	// Let the other goroutine acquire the lock.
    	mu.Unlock1()
    	done <- true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top