Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 376 for isLegal (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_func_to_bfloat16.cc

      if (!converter.isLegal(convert_op.getOperand().getType())) {
        auto other_convert_op = dyn_cast_or_null<OtherConvertOp>(
            convert_op.getOperand().getDefiningOp());
        return other_convert_op &&
               converter.isLegal(other_convert_op.getOperand().getType());
      } else if (!converter.isLegal(convert_op.getResult().getType())) {
        if (!convert_op.getResult().hasOneUse()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

        return true;
      }
      return IsStaticOperation(op);
    }
    
    bool IsDefaultConversionLegal(
        Operation* op, const ConversionTarget& default_conversion_target) {
      if (!default_conversion_target.isLegal(op)) {
        emitError(op->getLoc()) << "Could not legalize op: " << op->getName();
        return false;
      }
      return true;
    }
    
    void VerifyTFXLALegalization::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

        "Counts the number of ops that has qint types" /*metric description*/,
        "op_name" /*metric label*/);
    
    // Returns wether a type is illegal. Here we consider TF qint types illegal.
    // See pass description in passes.td for more info about how illegal types are
    // treated in this pass.
    bool IsIllegalType(Type type) {
      return IsTFQintType(getElementTypeOrSelf(type));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64error.s

    	LDADDALD	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALW	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALH	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDALB	R5, (R6), RSP                            // ERROR "illegal combination"
    	LDADDD	R5, (R6), RSP                                    // ERROR "illegal combination"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    	pos int
    	lit string
    	err string
    }{
    	{"\a", token.ILLEGAL, 0, "", "illegal character U+0007"},
    	{`#`, token.ILLEGAL, 0, "", "illegal character U+0023 '#'"},
    	{`…`, token.ILLEGAL, 0, "", "illegal character U+2026 '…'"},
    	{"..", token.PERIOD, 0, "", ""}, // two periods, not invalid token (issue #28112)
    	{`' '`, token.CHAR, 0, `' '`, ""},
    	{`''`, token.CHAR, 0, `''`, "illegal rune literal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathValidationTest.groovy

            e.message =~ "contains illegal"
    
            when:
            ModelPath.validateName("aü")
    
            then:
            e = thrown(ModelPath.InvalidNameException)
            e.message =~ "contains illegal"
    
            when:
            ModelPath.validateName("abü")
    
            then:
            e = thrown(ModelPath.InvalidNameException)
            e.message =~ "contains illegal"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/verify-quant-legalization.mlir

      // expected-error@+1 {{'func.return' op is illegal as it is a UQ op or contains uq/qint types}}
      func.return %arg0: tensor<1x!tf_type.qint8>
    }
    
    // -----
    
    func.func @illegal_cast(%arg0: tensor<1x!tf_type.qint8>) -> tensor<1xi8> {
      // expected-error@+1 {{'tf.Cast' op is illegal as it is a UQ op or contains uq/qint types}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 18:54:14 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	MOVHU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVWU	X5, (X6)			// ERROR "unsupported unsigned store"
    	MOVF	F0, F1, F2			// ERROR "illegal MOV instruction"
    	MOVD	F0, F1, F2			// ERROR "illegal MOV instruction"
    	MOV	X10, X11, X12			// ERROR "illegal MOV instruction"
    	MOVW	X10, X11, X12			// ERROR "illegal MOV instruction"
    	RORI	$64, X5, X6			// ERROR "immediate out of range 0 to 63"
    	SLLI	$64, X5, X6			// ERROR "immediate out of range 0 to 63"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen_test.cc

      ExpectErrorContains(ValidateCppIdent(" ", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("0", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(".", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent(":", ""), "illegal leading char");
      ExpectErrorContains(ValidateCppIdent("a.", ""), "illegal char");
      ExpectErrorContains(ValidateCppIdent("a:", ""), "illegal char");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/resources/CLMessages.properties

    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    ECL0040=IOException occurred, because {0}
    ECL0042=An illegal access was generated by {0}, because {1}
    ECL0043=The target which {0} invoked is illegal, because {1}
    ECL0044=Class not found, details are {0}
    ECL0048=The constructor of {0} for arguments({1}) not found
    ECL0049=The method({1}) of {0} not found
    ECL0050=Can not parse, because {0}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top