Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for UI32 (0.08 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

                                field_tag { field: 2 }
                                field_tag { index: 1505 }
                                field_tag { field: 5 }
                                field_tag { map_key { ui32: 123 } }
                              )pb"));
      RepeatedPtrField<FieldIndex> field_tags_sub;
      field_tags_sub.CopyFrom(field_tags);
      field_tags_sub.DeleteSubrange(2, 2);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

        <I32>  266703  </I32>
        <I32Neg>  -266703  </I32Neg>
        <I64>  266703  </I64>
        <I64Neg>  -266703  </I64Neg>
        <UI>   266703   </UI>
        <UI8>  112  </UI8>
        <UI16>  6703  </UI16>
        <UI32>  266703  </UI32>
        <UI64>  266703  </UI64>
        <F32>  266.703  </F32>
        <F32Neg>  -266.703  </F32Neg>
        <F64>  266.703  </F64>
        <F64Neg>  -266.703  </F64Neg>
    </WhitespaceValuesParent>
    `
    
    // golang.org/issues/22146
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

      %cst = arith.constant dense<0> : tensor<ui32>
      %cst_1 = arith.constant dense<4> : tensor<ui32>
      %cst_2 = arith.constant dense<1> : tensor<ui32>
    
      // CHECK: %[[CST:.*]] = "tf.Const"() <{value = dense<[0, 1, 2, 3]> : tensor<4xui32>}> : () -> tensor<?xui32>
      // CHECK: return %[[CST]]
      %0 = "tf.Range"(%cst, %cst_1, %cst_2) : (tensor<ui32>, tensor<ui32>, tensor<ui32>) -> tensor<?xui32>
      func.return %0 : tensor<?xui32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils.cc

                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kUi32:
                  if (chunked_key.has_ui32() && chunked_key.ui32() == key.ui32()) {
                    matches += 1;
                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kUi64:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/runtime/map_test.go

    func TestEmptyMapWithInterfaceKey(t *testing.T) {
    	var (
    		b    bool
    		i    int
    		i8   int8
    		i16  int16
    		i32  int32
    		i64  int64
    		ui   uint
    		ui8  uint8
    		ui16 uint16
    		ui32 uint32
    		ui64 uint64
    		uipt uintptr
    		f32  float32
    		f64  float64
    		c64  complex64
    		c128 complex128
    		a    [4]string
    		s    string
    		p    *int
    		up   unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    include "stablehlo/dialect/ChloOps.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "mhlo/IR/hlo_ops.td"
    
    def SignedIntTensor : TensorOf<[I1, I8, I16, I32, I64]>;
    def UnsignedIntTensor : TensorOf<[UI8, UI16, UI32, UI64]>;
    
    // IEEE compliant floating point tensors.
    def IEEEFloatTensor : TensorOf<[F16, F32, F64]>;
    
    //===----------------------------------------------------------------------===//
    // BatchNorm op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top