Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for GetInputs (0.12 sec)

  1. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // https://github.com/tensorflow/community/pull/113
      SmallVector<int64_t, 2> output_shape{1, tensorflow::kTFDynamicSize};
      auto input_types = fused_func_op_.getFunctionType().getInputs();
      auto output_type = tensorflow::GetTypeFromTFTensorShape(
          output_shape,
          mlir::cast<RankedTensorType>(input_.getType()).getElementType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                ConversionPatternRewriter *rewriter) const {
        auto guard = OpBuilder::InsertionGuard(*rewriter);
        auto inputs = branch_func.getFunctionType().getInputs();
        Block *block = rewriter->createBlock(
            &branch_func.getBody(), branch_func.begin(), inputs,
            SmallVector<Location>(inputs.size(), branch_func.getLoc()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        // a constant is created by using the attribute stored in the TF op or the
        // default value in the argument attribute.
        llvm::SmallVector<Value, 4> new_operands;
        for (auto arg : llvm::enumerate(compose_func_type.getInputs())) {
          if (auto tensor_type = mlir::dyn_cast<TFRTensorType>(arg.value())) {
            auto casted = builder.create<CastOp>(op->getLoc(), tensor_type,
                                                 op->getOperand(arg.index()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                    options.setSeparateOutputDirs(false);
                    options.setBackends(singletonList("html5"));
                });
    
                // TODO: Break the paths assumed here
                TaskInputs inputs = task.getInputs();
                inputs.files(extension.getCssFiles())
                    .withPropertyName("manual")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir("src/main/resources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

    LogicalResult rewriteToReduceSumAndTranspose(TF::EinsumOp op,
                                                 EinsumDimensionNumbers dnums,
                                                 PatternRewriter& rewriter) {
      auto inputs = op.getInputs();
      Value lhs = inputs.front();
    
      // Having indices in dnums.lhs list indicates that the ranks of the input and
      // output to the unary einsum are not equal making it non-candidate for simple
      // transpose.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        llvm::function_ref<std::optional<Type>(int64_t)> arg_to_buffer_type,
        llvm::function_ref<bool(int64_t)> arg_buffer_size_is_fixed) {
      auto new_input_types = llvm::to_vector<8>(func.getFunctionType().getInputs());
      int64_t original_arg_count = new_input_types.size();
      Location loc = func.getLoc();
      for (int64_t i = 0; i < original_arg_count; ++i) {
        auto buffer_type = arg_to_buffer_type(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                    for (final PchEnabledLanguageTransform<?> transform : languageTransforms.withType(PchEnabledLanguageTransform.class)) {
                        nativeBinarySpec.getInputs().withType(transform.getSourceSetType(), new Action<LanguageSourceSet>() {
                            @Override
                            public void execute(final LanguageSourceSet languageSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        LogicalResult verifyType() { return success(); }
    
        mlir::Region *getCallableRegion();
    
        /// Returns the argument types of this function.
        ArrayRef<Type> getArgumentTypes() { return getFunctionType().getInputs(); }
    
        /// Returns the result types of this function.
        ArrayRef<Type> getResultTypes() { return getFunctionType().getResults(); }
    
        // Get the names of all defined attributes, including both derived and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            private final ModelAction delegate;
    
            public FilteringActionWrapper(ElementFilter elementFilter, ModelReference<T> subject, ModelAction delegate) {
                super(subject, delegate.getDescriptor(), delegate.getInputs());
                this.elementFilter = elementFilter;
                this.delegate = delegate;
            }
    
            @Override
            public void execute(MutableModelNode modelNode, List<ModelView<?>> inputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                project.getNormalization().getRuntimeClasspath().ignore(PluginUnderTestMetadata.METADATA_FILE_NAME);
    
                project.getTasks().withType(Test.class).configureEach(test -> {
                    test.getInputs()
                        .files(pluginClasspathTask.get().getPluginClasspath())
                        .withPropertyName("pluginClasspath")
                        .withNormalizer(ClasspathNormalizer.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top