Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for GetInputs (0.38 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (op->getOperands().size() != 2)
          return rewriter.notifyMatchFailure(
              op, "only match for the case where operands is of size 2");
        auto keys = op.getInputs()[0];
        auto indices = op.getInputs()[1];
        auto keys_ty = mlir::dyn_cast_or_null<ShapedType>(keys.getType());
        auto indices_ty = mlir::dyn_cast_or_null<ShapedType>(indices.getType());
        if (!keys_ty || !keys_ty.hasStaticShape() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/AbstractAnnotationModelRuleExtractorTest.groovy

                getRegistry() >> registry
                contextualize(_) >> { MethodRuleAction action ->
                    Stub(ModelAction) {
                        getSubject() >> action.subject
                        getInputs() >> action.inputs
                        execute(_, _) >> { MutableModelNode node, List<ModelView<?>> inputs ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

      constexpr int kValues = 0;
      constexpr int kRowSplits = 1;
    
      if (func.getFunctionType().getInputs().size() !=
          func.getFunctionType().getResults().size()) {
        return func.emitError() << "Mismatched number of inputs and outputs.";
      }
    
      int row_splits = func.getFunctionType().getInputs().size() - kRowSplits;
      if (row_splits == 0) {
        auto input_values = GetInputType(func, kValues);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      // they have exactly one call-site and they are sharing the operands.
      for (Type type : cond_fn.getFunctionType().getInputs()) {
        cond_block->addArgument(type, loc);
      }
      for (Type type : body_fn.getFunctionType().getInputs()) {
        body_block->addArgument(type, loc);
        orig_block_tail->addArgument(type, loc);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

        private Set<LanguageSourceSetInternal> getSourcesToCompile(BinarySpecInternal binary) {
            LinkedHashSet<LanguageSourceSetInternal> sourceSets = new LinkedHashSet<>();
            for (LanguageSourceSet languageSourceSet : binary.getInputs()) {
                LanguageSourceSetInternal languageSourceSetInternal = (LanguageSourceSetInternal) languageSourceSet;
                if (languageSourceSetInternal.getMayHaveSources()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tpu_model_to_cpu.cc

                       dyn_cast_or_null<TF::TPUReplicatedInputOp>(op)) {
          // TODO(b/267700110): Handle multiple input/output cases.
          rewriter.replaceOp(replicated_input_op, replicated_input_op.getInputs());
        } else if (auto replicated_output_op =
                       dyn_cast_or_null<TF::TPUReplicatedOutputOp>(op)) {
          // TODO(b/267700110): Handle multiple input/output cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

        // this is a forced/hard-coded constraint.
        auto qbarrier = rewriter.create<QuantizeCastOp>(op.getLoc(), quantizedType,
                                                        op.getInputs());
        rewriter.replaceOpWithNewOp<DequantizeCastOp>(op, converter.input_type,
                                                      qbarrier.getResult());
    
        return false;
      }
    };
    
    class ConstFakeQuantRewrite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

        llvm::SmallVectorImpl<std::string>* var_handle_shared_names) {
      Block& block = function.front();
      auto func_type = function.getFunctionType();
    
      auto func_arg_types = llvm::to_vector<4>(func_type.getInputs());
      llvm::SmallDenseMap<llvm::StringRef, int> var_arg_index_by_name;
      for (auto var_handle_op :
           llvm::make_early_inc_range(block.getOps<TF::VarHandleOp>())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/Assemble.java

            includes = getProject().files();
            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.class);
            getInputs().property("outputType", new Callable<String>() {
                @Override
                public String call() throws Exception {
                    NativeToolChainInternal nativeToolChain = (NativeToolChainInternal) toolChain.get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                task.setTitle("Gradle API " + version);
    
                Javadocs javadocs = extension.getJavadocs();
    
                // TODO: This should be part of Javadoc task
                task.getInputs().file(javadocs.getJavadocCss())
                    .withPropertyName("stylesheetFile")
                    .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top