Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for GetInputs (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

      LogicalResult matchAndRewrite(
          mhlo::ScatterOp scatter_op, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final {
        {
          OperandRange operands = scatter_op.getInputs();
          Value indices = scatter_op.getScatterIndices();
          OperandRange updates = scatter_op.getUpdates();
          if (operands.size() != 1 || updates.size() != 1) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

        }
    
        @Override
        public final boolean isBuildable() {
            return getBuildAbility().isBuildable();
        }
    
        @Override
        public DomainObjectSet<LanguageSourceSet> getInputs() {
            return inputSourceSets;
        }
    
        @Override
        public ModelMap<LanguageSourceSet> getSources() {
            return ModelMaps.toView(sources, LANGUAGE_SOURCE_SET_MODELTYPE);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

          rewriter.create<func::FuncOp>(input_op->getLoc(), func_name, func_type);
    
      OpBuilder::InsertionGuard guard = OpBuilder::InsertionGuard(rewriter);
      ArrayRef<Type> inputs = quantization_func.getFunctionType().getInputs();
      Block* block = rewriter.createBlock(
          &quantization_func.getBody(), quantization_func.begin(), inputs,
          SmallVector<Location>(inputs.size(), quantization_func.getLoc()));
      func_input_arg = block->getArgument(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                    task.onlyIf("Test executable installation directory exists", element -> binary.getInstallDirectory().get().getAsFile().exists());
                    task.getInputs()
                        .dir(binary.getInstallDirectory())
                        .withPropertyName("installDirectory");
                    task.setExecutable(installTask.getRunScriptFile().get().getAsFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

        public PublishToIvyRepository() {
    
            // Allow the publication to participate in incremental build
            getInputs().files((Callable<FileCollection>) () -> {
                IvyPublicationInternal publicationInternal = getPublicationInternal();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                    binaries.withType(BinarySpecInternal.class, new Action<BinarySpecInternal>() {
                        @Override
                        public void execute(BinarySpecInternal binary) {
                            binary.getInputs().addAll(getSources().values());
                        }
                    });
                }
            }
    
            @Hidden @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

              rewriter.getStringAttr("TPU"));
        }
    
        constexpr int64_t kDefaultCostEstimate = 1000000;
        rewriter.replaceOpWithNewOp<TF::XlaHostComputeOp>(
            op, op.getResultTypes(), op.getInputs(),
            /*ancestors=*/rewriter.getArrayAttr({}),
            rewriter.getArrayAttr(shape_attrs),
            /*shape_inference_graph=*/
            cloned_func ? SymbolRefAttr::get(cloned_func) : SymbolRefAttr(),
    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/tensorflow/transforms/stack_ops_decomposition.cc

        llvm::function_ref<void(ArrayRef<BlockArgument>)> handle_new_size_vars =
            nullptr) {
      auto new_input_types = llvm::to_vector<8>(func.getFunctionType().getInputs());
      auto size_var_type = GetSizeVarType(OpBuilder(func));
      int64_t original_arg_count = new_input_types.size();
      for (int64_t i = 0; i < original_arg_count; ++i) {
        auto stack_type = arg_to_stack_type(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

        // 3. Captures inputs.
        // The number of dataset inputs can be indirectly determined to be
        // total_number_of_inputs - state_inputs - captured_inputs.
        auto func_inputs = reduce_func.getFunctionType().getInputs();
        const int func_input_size = func_inputs.size();
        const int argument_size =
            reduce_dataset->getAttrOfType<ArrayAttr>("Targuments").size();
        const int state_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/ops.h

      uint64 hash(int32_t index) const;
    
      bool operator==(const Operation& other) const { return node_ == other.node_; }
    
     private:
      typedef std::vector<std::pair<Node*, int32>> Inputs;
      static Inputs GetInputs(Node* node);
    
      Inputs inputs_;
      Node* node_;
    };
    
    /// Represents a tensor value produced by an Operation.
    class Output {
     public:
      Output() = default;
      explicit Output(Node* n) : op_(n) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top