Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for Tinput (0.13 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".blue")
                        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: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testSplitNonConstSplitDim(%input: tensor<4x4xf32>, %split_dim: tensor<i32>) {
      %0:2 = "tf.Split"(%split_dim, %input) : (tensor<i32>, tensor<4x4xf32>) -> (tensor<*xf32>, tensor<*xf32>)
      func.return
    }
    
    func.func @testSplitUnknownRankSplitDim(%input: tensor<4x4xf32>, %split_dim: tensor<*xi32>) {
      %0:2 = "tf.Split"(%split_dim, %input) : (tensor<*xi32>, tensor<4x4xf32>) -> (tensor<*xf32>, tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  10. 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)
Back to top