Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for argumentTypes (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                            // Invoke the original method:
                            Type[] argumentTypes = Type.getArgumentTypes(methodData.descriptor);
                            for (int argIndex = 1; argIndex <= argumentTypes.length; ++argIndex) {
                                visitVarInsn(argumentTypes[argIndex - 1].getOpcode(Opcodes.ILOAD), argIndex);
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

            val typeParameterSymbols = symbol.typeParameterSymbols ?: return superTypes.asSequence()
            val argumentTypes = (session.typeContext.captureArguments(this, CaptureStatus.FROM_EXPRESSION)?.toList()
                ?: this.typeArguments.mapNotNull { it.type })
    
            require(typeParameterSymbols.size == argumentTypes.size) {
                val renderedSymbol = FirRenderer.noAnnotationBodiesAccessorAndArguments().renderElementAsString(symbol.fir)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            Type returnType = Type.getReturnType(standardDescriptor);
            Type[] argumentTypes = Type.getArgumentTypes(standardDescriptor);
            Type[] argumentTypesWithDefault = Stream.concat(
                Arrays.stream(argumentTypes),
                Stream.of(Type.getType(int.class), Type.getType(Object.class))
            ).toArray(Type[]::new);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        }
      }
    
      // Remove unread var handle arguments.
      for (int argument_index_to_remove :
           llvm::reverse(argument_indices_to_remove)) {
        block.eraseArgument(argument_index_to_remove);
        argument_types.erase(argument_types.begin() + argument_index_to_remove);
      }
    
      // Rewrite return if there are variable writes.
      const int return_operands_size = return_operands.size();
      if (return_operands_size > num_results_before) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        std::vector<Type> argument_types;
        for (auto arg : f.getBody().front().getArguments()) {
          argument_types.push_back(arg.getType());
        }
        std::vector<Type> return_types;
        for (auto ret_op : ret->getOperands()) {
          return_types.push_back(ret_op.getType());
        }
        auto newType =
            FunctionType::get(rewriter.getContext(), argument_types, return_types);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      }
    }
    
    // Updates 'while_op' signatures based on which arguments should be removed
    // in 'arguments_to_erase'.
    template <typename T, typename U>
    T GetUpdatedWhileOp(T while_op, const U& argument_types,
                        const llvm::SmallVector<unsigned, 4>& arguments_to_erase) {
      OpBuilder builder(while_op);
      llvm::SmallVector<Type, 4> new_operand_types;
      llvm::SmallVector<Value> new_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    void RuntimeFallbackExecutor::RunTfrtInitializer() {
      const Function* func = bef_file_->GetFunction("_tfrt_fallback_init");
      CHECK(func) << "TFRT initialization function was not found";
      CHECK_EQ(func->argument_types().size(), 1);
    
      llvm::SmallVector<RCReference<AsyncValue>, 1> results;
      results.resize(func->result_types().size());
      CHECK_EQ(results.size(), 1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top