Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for GetInputs (0.19 sec)

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

     public:
      using OpConversionPattern::OpConversionPattern;
      LogicalResult matchAndRewrite(
          mhlo::ReduceOp reduce_op, OpAdaptor adaptor,
          ConversionPatternRewriter& rewriter) const final {
        if (reduce_op.getInputs().size() != 2) return failure();
        if (reduce_op.getDimensions().getNumElements() != 1) return failure();
    
        // Check that the operand init is the expected value.
        DenseElementsAttr operand_init;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

                    return sourceSet.getSource();
                }
            };
    
            return new LanguageSourceSetCollectionAdapter(getComponentName() + " source files", binary.getInputs(), filter, transform);
        }
    
        @Override
        public FileCollection getResourceFiles() {
            Spec<LanguageSourceSet> filter = new Spec<LanguageSourceSet>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpec.java

                for (NativeResourceSet windowsResourceSet : getInputs().withType(NativeResourceSet.class)) {
                    if (!windowsResourceSet.getSource().isEmpty()) {
                        return true;
                    }
                }
                return false;
            }
    
            private boolean hasExportedSymbols() {
                for (LanguageSourceSet languageSourceSet : getInputs()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

                assign_var.getResource().getDefiningOp());
        if (!partitioned_input ||
            !AllResourceTypesHaveSubtypes(partitioned_input.getInputs().getTypes()))
          continue;
    
        const auto inputs = partitioned_input.getInputs();
        const bool packed_input = partitioned_input.getIsPacked();
        int num_cores_per_replica = partitioned_input.getN();
        if (num_cores_per_replica_attr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/MethodRuleAction.java

    import org.gradle.model.internal.core.MutableModelNode;
    
    import java.util.List;
    
    public interface MethodRuleAction {
        ModelReference<?> getSubject();
    
        List<? extends ModelReference<?>> getInputs();
    
        void execute(ModelRuleInvoker<?> invoker, MutableModelNode modelNode, List<ModelView<?>> inputs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/ops.cc

    ==============================================================================*/
    
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/core/lib/hash/hash.h"
    
    namespace tensorflow {
    
    Operation::Operation(Node* n) : inputs_(GetInputs(n)), node_(n) {}
    
    Output Operation::input(int32_t i) const {
      CHECK_NOTNULL(node_);
      CHECK_GE(i, 0);
      CHECK_LT(i, node_->num_inputs());
      // Handle the case where the input was unknown at the time this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

    import javax.annotation.Nullable;
    import java.util.Map;
    
    /**
     * <p>A {@code TaskInputs} represents the inputs for a task.</p>
     *
     * <p>You can obtain a {@code TaskInputs} instance using {@link org.gradle.api.Task#getInputs()}.</p>
     */
    @HasInternalProtocol
    public interface TaskInputs {
        /**
         * Returns true if this task has declared the inputs that it consumes.
         *
         * @return true if this task has declared any inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelAction.java

    import java.util.List;
    
    public interface ModelAction {
    
        ModelReference<?> getSubject();
    
        void execute(MutableModelNode modelNode, List<ModelView<?>> inputs);
    
        List<? extends ModelReference<?>> getInputs();
    
        ModelRuleDescriptor getDescriptor();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 995 bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

            tasks.named("test", Test.class).configure(task -> {
                task.getInputs().file(extension.getReleaseNotes().getRenderedDocumentation()).withPropertyName("releaseNotes").withPathSensitivity(PathSensitivity.NONE);
    
                task.getInputs().property("systemProperties", Collections.emptyMap());
                // TODO: This breaks the provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        if (llvm::count_if(type.getInputs(),
                           [=](Type type) { return type != control_type; }) != 1)
          return parser.emitError(parser.getNameLoc())
                 << " expects a single data type";
        result.types.assign(type.getResults().begin(), type.getResults().end());
        types.assign(type.getInputs().begin(), type.getInputs().end());
      } else {
        if (types.size() != 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top