Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for function_type (0.53 sec)

  1. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      OpBuilder builder(context);
      FunctionType type;
      if (passthru_extra_args) {
        type = FunctionType::get(context, types, types);
      } else {
        SmallVector<Type, 4> result_types;
        auto operands = region.front().getTerminator()->getOperandTypes();
        result_types.append(operands.begin(), operands.end());
        type = FunctionType::get(context, types, result_types);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeNormalAnalysisSourceModuleDeclarationReturnTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("funtionType.kt")
      public void testFuntionType() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/declarationReturnType/funtionType.kt");
      }
    
      @Test
      @TestMetadata("localDeclarations.kt")
      public void testLocalDeclarations() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeDependentAnalysisSourceModuleDeclarationReturnTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("funtionType.kt")
      public void testFuntionType() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/declarationReturnType/funtionType.kt");
      }
    
      @Test
      @TestMetadata("localDeclarations.kt")
      public void testLocalDeclarations() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      // fully qualified) or a short form with a single type (in which case the data
      // input and the outputs are all using this type and predicate is tensor<i1>
      // type).
      if (mlir::isa<FunctionType>(types.front())) {
        FunctionType type = mlir::cast<FunctionType>(types.front());
        if (type.getNumInputs() < 2)
          return parser.emitError(parser.getNameLoc())
                 << " expects a single data type and a predicate";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        val nullableType =
            (typeReference + parenthesizedType) * oneOrMore(token(QUEST))
    
        val receiverType by debug {
            parenthesizedType + nullableType + typeReference
        }
    
        val functionType =
            optional(receiverType * token(DOT)) * functionTypeParameters * token(ARROW) * type
    
        val callableReference by debug {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/expressionTypeProvider/Fe10IdeNormalAnalysisSourceModuleDeclarationReturnTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("funtionType.kt")
      public void testFuntionType() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/declarationReturnType/funtionType.kt");
      }
    
      @Test
      @TestMetadata("localDeclarations.kt")
      public void testLocalDeclarations() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/expressionTypeProvider/FirStandaloneNormalAnalysisSourceModuleDeclarationReturnTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("funtionType.kt")
      public void testFuntionType() {
        runTest("analysis/analysis-api/testData/components/expressionTypeProvider/declarationReturnType/funtionType.kt");
      }
    
      @Test
      @TestMetadata("localDeclarations.kt")
      public void testLocalDeclarations() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

          CreateUnknownShapeFromElementType(input_val.getType());
      UnrankedTensorType create_unknown_output_shape =
          CreateUnknownShapeFromElementType(result_type);
    
      FunctionType func_type =
          FunctionType::get(rewriter.getContext(), {create_unknown_input_shape},
                            {create_unknown_output_shape});
    
      func::FuncOp quantization_func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

      Operation* terminator = func.front().getTerminator();
      auto return_types = llvm::to_vector<4>(terminator->getOperandTypes());
    
      FunctionType func_type = func.getFunctionType();
      if (llvm::ArrayRef(return_types) == func_type.getResults()) return;
    
      auto updated_type =
          FunctionType::get(func.getContext(), func_type.getInputs(), return_types);
      func.setType(updated_type);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/symbolDeclarationRenderer/FirIdeDependentAnalysisSourceModuleRendererTestGenerated.java

        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/F.kt");
      }
    
      @Test
      @TestMetadata("functionTypes.kt")
      public void testFunctionTypes() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/functionTypes.kt");
      }
    
      @Test
      @TestMetadata("functionalTypeAliases.kt")
      public void testFunctionalTypeAliases() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 07:21:33 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top