Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for isS32 (0.04 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    		switch {
    		case isS32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AADDIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isU32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AORIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isS32 || isU32 || isS34:
    			// The assembler can generate this opcode in 1 (on Power10) or 2 opcodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

       (TF_ConstOp:$one (GetScalarOfType<1> $num_lower)),
       (TF_ConstOp:$neg_one (GetScalarOfType<-1> $num_lower)),
       (GetDimensionSize<-2>:$m $input, (IsI32 $num_lower)),
       (GetDimensionSize<-1>:$n $input, (IsI32 $num_upper)),
       (TF_SelectV2Op:$num_lower_or_m (TF_LessOp $num_lower, $zero),
                                      $m, $num_lower),
       (TF_SelectV2Op:$num_upper_or_n (TF_LessOp $num_upper, $zero),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types_test.cc

          CreateI8F32UniformQuantizedType(UnknownLoc::get(&ctx_), ctx_,
                                          /*scale=*/1.0, /*zero_point=*/0);
    
      EXPECT_TRUE(quantized_type.getExpressedType().isF32());
    }
    
    TEST_F(CreateI8F32UniformQuantizedTypeTest, SignedQuantizedTypeSucceeds) {
      const UniformQuantizedType quantized_type =
          CreateI8F32UniformQuantizedType(UnknownLoc::get(&ctx_), ctx_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

        if (HasVariantInputOrOutput(op)) {
          std::optional<mlir::Type> element_type =
              GetSingularVariantBaseType(op->getOperand(0));
          if (element_type.has_value()) {
            return element_type->isF32() || element_type->isInteger(32);
          }
        }
      }
    
      // Op is vacuously "supported" if it is not a tensorlist op.
      StringRef op_name = op->getName().getStringRef();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/unicode/letter.go

    			return range_.Stride == 1 || (r-range_.Lo)%range_.Stride == 0
    		}
    		if r < range_.Lo {
    			hi = m
    		} else {
    			lo = m + 1
    		}
    	}
    	return false
    }
    
    // is32 reports whether r is in the sorted slice of 32-bit ranges.
    func is32(ranges []Range32, r uint32) bool {
    	if len(ranges) <= linearMax {
    		for i := range ranges {
    			range_ := &ranges[i]
    			if r < range_.Lo {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

            if (auto dq_op =
                    dyn_cast_or_null<DequantizeOpT>(operand.getDefiningOp())) {
              inputs.push_back(dq_op.getOperand());
            } else if (!ele_type.isF32()) {
              // If the operand is an integer tensor, then it doesn't require the
              // DequantizeOp in the pattern.
              inputs.push_back(operand);
            } else if (weight_only_quantizable) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    }
    
    bool IsCompatibleTypeWithTFLCastOp(Type type) {
      auto elemType = getElementTypeOrSelf(type);
      // F16, F32, F64, BF16 types are allowed.
      if (elemType.isBF16() || elemType.isF16() || elemType.isF32() ||
          elemType.isF64())
        return true;
    
      // I1, I4, I8, I16, I32, I64 types are allowed.
      if (elemType.isInteger(1) || elemType.isInteger(4) || elemType.isInteger(8) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

      std::vector<int> b_size = {};
      std::vector<int> b_map = {};
      PopulateEncodingParams(block_size, &traversal_order, &format, &b_map,
                             &b_size);
    
      if (type.getElementType().isF32()) {
        tflite::internal::sparsity::FormatConverter<float> format_converter(
            shape, traversal_order, format, b_size, b_map);
        std::vector<float> data;
        data.reserve(type.getNumElements());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

                 << ")";
          });
          return false;
        }
    
        // Verify the data type is supported.
        Type element_ty = getElementTypeOrSelf(conv.getType());
        if (!element_ty.isF32() && !element_ty.isF64()) {
          (void)rewriter.notifyMatchFailure(conv, [&](Diagnostic &diag) {
            diag << "supported data types for _FusedConv2D are float and double, "
                 << " but got " << element_ty;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                  dq_op->getLoc(), dq_arg_type.clone(qtype.getStorageType()),
                  dq_op.getArg());
              inputs.push_back(scast_op.getResult());
            } else if (!elem_type.isF32()) {
              // If the operand is an integer tensor, then it doesn't require the
              // DQ op in the pattern.
              inputs.push_back(operand);
            } else {
              return failure();
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top