Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for input0 (0.13 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        void assertHasImmediateCancel(
            ListenableFuture<String> a, ListenableFuture<String> b, Exception e) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        void assertHasImmediateCancel(
            ListenableFuture<String> a, ListenableFuture<String> b, Exception e) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = opSummary # " operator";
    
      let description = [{
        Performs convolution operation on inputs.
    
        Inputs:
          `inputs[0]`: required: the input activation tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: optional: the bias tensor
      }];
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8, QI16]>:$output);
    
      let hasOptions = 0b1;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

          for (ClosingFuture<?> input : inputs) {
            input.becomeSubsumedInto(closeables);
          }
        }
    
        /**
         * Returns a new {@code ClosingFuture} pipeline step derived from the inputs by applying a
         * combining function to their values. The function can use a {@link DeferredCloser} to capture
         * objects to be closed when the pipeline is done.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        }
        for (auto edge : n->in_edges()) {
          inputs[index] =
              NodeDefBuilder::NodeOut{edge->src()->name(), edge->src_output(),
                                      edge->src()->output_type(edge->src_output())};
        }
      }
      send_from_host_builder.Input(inputs);
      send_from_host_builder.Input(key_placeholder->name(), 0, DT_STRING);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Verifies that,
    //
    // - input has at least rank 1
    // - multiples is rank 1
    // - multiples.size() == input.rank()
    // - input.rank() == output.rank()
    // - Elements in multiples are non-negative
    // - input.shape[i] * multiples[i] == output.shape[i]
    //   for i in [0, input.rank() - 1]
    
    LogicalResult TileOp::verify() {
      TileOp op = *this;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

    void TF_AddInput(TF_OperationDescription* desc, TF_Output input) {
      desc->node_builder.Input(&input.oper->node, input.index);
    }
    
    void TF_AddInputList(TF_OperationDescription* desc, const TF_Output* inputs,
                         int num_inputs) {
      std::vector<NodeBuilder::NodeOut> input_list;
      input_list.reserve(num_inputs);
      for (int i = 0; i < num_inputs; ++i) {
        input_list.emplace_back(&inputs[i].oper->node, inputs[i].index);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def MarkInputOutputAliasesPass : Pass<"tf-device-mark-input-output-aliases", "ModuleOp"> {
      let summary = "Marks device cluster inputs-output pairs that read/write to the same variable as aliases";
    
      let description = [{
        This pass analyzes the inputs and outputs to device cluster and marks those
        input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top