Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for is16 (0.08 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // CHECK-LABEL: testAddInt16
    func.func @testAddInt16(tensor<? x i16>, tensor<? x i16>) -> tensor<? x i16> {
    ^bb0(%arg0: tensor<? x i16>, %arg1: tensor<? x i16>):
      // CHECK: tfl.add %arg0, %arg1 {fused_activation_function = "RELU6"}
      %0 = tfl.add %arg0, %arg1 {fused_activation_function = "RELU6"} : tensor<? x i16>
      func.return %0#0 : tensor<? x i16>
    }
    
    // CHECK-LABEL: testSub
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        Results are always sorted in the descending order.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I8, I16, I32, I64, UI8, QI8, QUI8]>:$input,
        TFL_TensorOf<[I16, I32]>:$k);
    
      let results = (outs
        TFL_TensorOf<[F32, I8, I16, I32, I64, UI8, QI8, QUI8]>:$values,
        TFL_TensorOf<[I16, I32]>:$indices);
    
      let builders = [
        OpBuilder<(ins "Value":$input, "Value":$k),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // is up to ~2x faster.
      const bool is_f16 = input_ty.getElementType().isF16();
      if (is_f16 && CanUseTensorCores(devices)) return "NHWC";
    
      // For f32/f16 data type decision depends on the filter size in spatial
      // dimensions, for other data types we keep current data format.
      if (!input_ty.getElementType().isF32() && !input_ty.getElementType().isF16())
        return getDataFormat();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %if16 = "tf.IfRegion"(%arg0) ({"tf.Yield"(%if15) : (!tf_variant) -> ()},
                                      {"tf.Yield"(%if15) : (!tf_variant) -> ()})
            {is_stateless = true} : (tensor<i1>) -> !tf_variant
        %if17 = "tf.IfRegion"(%arg0) ({"tf.Yield"(%if16) : (!tf_variant) -> ()},
                                      {"tf.Yield"(%if16) : (!tf_variant) -> ()})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // writeStatusLine writes an HTTP/1.x Status-Line (RFC 7230 Section 3.1.2)
    // to bw. is11 is whether the HTTP request is HTTP/1.1. false means HTTP/1.0.
    // code is the response status code.
    // scratch is an optional scratch buffer. If it has at least capacity 3, it's used.
    func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {
    	if is11 {
    		bw.WriteString("HTTP/1.1 ")
    	} else {
    		bw.WriteString("HTTP/1.0 ")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // CHECK-LABEL: @testAddV2WithRef
    func.func @testAddV2WithRef(%arg0: tensor<!tf_type.int16ref>, %arg1: tensor<i16>) -> tensor<i16> {
      // CHECK: tf.AddV2
      %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<!tf_type.int16ref>, tensor<i16>) -> tensor<i16>
      func.return %0 : tensor<i16>
    }
    
    // CHECK-LABEL: @testRealDivWithRef
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    MA0GCSqGSIb3DQEBCwUAA4IBAQCLW3JO8L7LKByjzj2RciPjCGH5XF87Wd20gYLq
    sNKcFwCIeyZhnQy5aZ164a5G9AIk2HLvH6HevBFPhA9Ivmyv/wYEfnPd1VcFkpgP
    hDt8MCFJ8eSjCyKdtZh1MPMLrLVymmJV+Rc9JUUYM9TIeERkpl0rskcO1YGewkYt
    qKlWE+0S16+pzsWvKn831uylqwIb8ANBPsCX4aM4muFBHavSWAHgRO+P+yXVw8Q+
    VQDnMHUe5PbZd1/+1KKVs1K/CkBCtoHNHp1d/JT+2zUQJphwja9CcgfFdVhSnHL4
    oEEOFtqVMIuQfR2isi08qW/JGOHc4sFoLYB8hvdaxKWSE19A
    -----END CERTIFICATE-----`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          return rewriter.notifyMatchFailure(
              loc, "output_rank or broadcast_to shape not supported");
    
        // Allow lowering when the input's elements type is F32, BFloat16, I32 or
        // I16.
        if (!(mlir::isa<BFloat16Type, Float32Type>(element_type) ||
              element_type.isInteger(32) || element_type.isInteger(16)))
          return rewriter.notifyMatchFailure(loc, "element_type_not_supported");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    type S11 struct {
    	S6
    }
    
    type S12 struct {
    	S6
    }
    
    type S13 struct {
    	S8
    }
    
    // The X in S15.S11.S1 and S16.S11.S1 annihilate.
    type S14 struct {
    	S15
    	S16
    }
    
    type S15 struct {
    	S11
    }
    
    type S16 struct {
    	S11
    }
    
    var fieldTests = []FTest{
    	{struct{}{}, "", nil, 0},
    	{struct{}{}, "Foo", nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                        "'isSigned' can only be set for 8/16-bits integer type");
        }
      }
    
      if (type.isF32()) {
        return tflite::TensorType_FLOAT32;
      } else if (type.isF16()) {
        return tflite::TensorType_FLOAT16;
      } else if (type.isBF16()) {
        return tflite::TensorType_BFLOAT16;
      } else if (type.isF64()) {
        return tflite::TensorType_FLOAT64;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top