Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for dim_idx (0.39 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type RawSockaddrIUCV struct {
    	Family  uint16
    	Port    uint16
    	Addr    uint32
    	Nodeid  [8]int8
    	User_id [8]int8
    	Name    [8]int8
    }
    
    type RawSockaddrNFC struct {
    	Sa_family    uint16
    	Dev_idx      uint32
    	Target_idx   uint32
    	Nfc_protocol uint32
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type IPMreq struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %dimension = "tf.Const"() { value = dense<1> : tensor<i32> } : () -> tensor<i32>
      // expected-error @+2 {{'tf.XlaSetDynamicDimensionSize' op failed to infer returned types}}
      // expected-error @+1 {{dim_index (1) is out of range [0, 1)}}
      %0 = "tf.XlaSetDynamicDimensionSize"(%input, %dimension, %size) : (tensor<4xf32>, tensor<i32>, tensor<i32>) -> tensor<?xf16>
      func.return %0 : tensor<?xf16>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Make an xla bounded dynamic dimension into a static dimension. The bound of the
    size of dimension `dim_index` becomes the static dimension size.
      }];
    
      let arguments = (ins
        TF_Tensor:$input,
        TF_Int32Tensor:$dim_index
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top