Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Tinput (0.19 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                    e->src()->output_type(e->src_output())};
      }
      for (const auto& input : inputs) {
        replace_builder->Input(input);
      }
      for (const auto& attr : n->attrs()) {
        replace_builder->Attr(attr.first, attr.second);
      }
      auto replace_def = std::make_unique<NodeDef>();
      TF_RETURN_IF_ERROR(replace_builder->Finalize(replace_def.get()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    Performs a batched matrix multiplication on the inputs. Follows the
    conventions of TensorFlow BatchMatMulV2, with support for unknown dimensions
    in the batch dimensions and broadcasting.
    
        Inputs:
          `inputs[0]`: required: input LHS
          `inputs[1]`: required: input RHS
          `adjoint_lhs`: optional: Transpose LHS (default false)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                                   " input ", i, ", expected control input ",
                                   a.input(i), " got ", b.input(i), " expected:\n",
                                   a.DebugString(), "\ngot:\n", b.DebugString());
            }
            return false;
          }
          control_input_a.insert(a.input(i));
          control_input_b.insert(b.input(i));
        } else if (a.input(i) != b.input(i)) {
          if (diff) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        Value input = op.getOperand();
    
        return rewriter.create<TFL::TransposeOp>(op.getLoc(), input, perm);
      }
    
      Value InsertExpandDimsOp(stablehlo::BroadcastInDimOp op,
                               PatternRewriter& rewriter, Value input,
                               int64_t output_rank) const {
        auto input_type = input.getType().cast<TensorType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
        for (ListenableFuture<?> delegate : delegates) {
          delegate.cancel(true);
        }
    
        for (ListenableFuture<?> input : inputs) {
          assertTrue(input.isDone());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
        ImmutableList<SettableFuture<Long>> inputs = builder.build();
        ImmutableList<ListenableFuture<Long>> delegates = inCompletionOrder(inputs);
    
        for (ListenableFuture<?> delegate : delegates) {
          delegate.cancel(true);
        }
    
        for (ListenableFuture<?> input : inputs) {
          assertTrue(input.isDone());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".\${targetColor}")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
                        println "Transforming \${input.name} to \${output.name}"
                        println "Input exists: \${input.exists()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError(
              "has mismatched quantized axes of input and output");
        }
      }
    
      return success();
    }
    
    static void BuildTransposeOp(OpBuilder* builder, OperationState& result,
                                 Value input, Value perm) {
      // Output size is only known if input is ranked and perm is a constant.
      auto input_type = input.getType().cast<TensorType>();
      DenseIntElementsAttr perm_const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      return ExpandTo4DForConvImpl(a, true);
    }
    
    TypeAttr RescaleQtype(Type input, Attribute factor) {
      return quant::RescaleQuantizedType(input, factor);
    }
    
    // Returns `true` if reducing `axes` in `input` with `keep_dims=true` results in
    // the specified `shape` and `false` otherwise.
    static bool ShapeMatchesReduceWithKeepAxes(Value input,
                                               const mlir::Attribute &axes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // If shape attribute equals input operand's type's shape, fold it to input.
      std::optional<llvm::ArrayRef<int64_t>> shape_constraint = getShape();
      if (type.getShape() == shape_constraint && getInput().getType() == getType())
        return getInput();
    
      // If input operand's type's shape always satisfies the shape attribute, fold
      // it to input.
      if (shape_constraint.has_value() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top