Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 845 for inputs_ (0.12 sec)

  1. tensorflow/compiler/jit/node_matchers.h

    inline impl::NodeMatcherProperties Attr(const string& name) {
      return impl::Attr(name);
    }
    
    // Matches a node with inputs `inputs`.
    //
    // `inputs` are ordered; `inputs`[i] must match input i.
    template <typename... Ts>
    impl::NodeMatcherProperties Inputs(Ts... inputs) {
      return impl::Inputs({inputs...});
    }
    
    // Matches the `idx`'th output of a node that matches `node`.
    ::testing::Matcher<impl::OutEdge> Out(int oidx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/inputs/PotentialInputs.java

        }
    
        public Object get(String path) {
            PotentialInput potentialInput = inputs.get(path);
            if (potentialInput == null) {
                throw new IllegalStateException("no input for " + path);
            }
            return potentialInput.get(modelViews);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzer_test.go

    	col3 := newSchema("col3")
    	col4 := newSchema("col4")
    
    	a1 := &analyzer{name: "a1", inputs: []config.GroupVersionKind{col1.GroupVersionKind()}}
    	a2 := &analyzer{name: "a2", inputs: []config.GroupVersionKind{col2.GroupVersionKind()}}
    	a3 := &analyzer{name: "a3", inputs: []config.GroupVersionKind{col3.GroupVersionKind()}}
    	a4 := &analyzer{name: "a4", inputs: []config.GroupVersionKind{col4.GroupVersionKind()}}
    
    	a := Combine("combined", a1, a2, a3, a4)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ChangesDuringBuildContinuousIntegrationTest.groovy

                  dependsOn "a"
                  inputs.dir "b"
                  outputs.file "build/b"
                  doLast {}
                }
                task c {
                  dependsOn "b"
                  inputs.dir "c"
                  outputs.file "build/c"
                  doLast {}
                }
                task d {
                  dependsOn "c"
                  inputs.dir "d"
                  outputs.file "build/d"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/while_loop.cc

                      const std::vector<Output>& inputs,
                      std::vector<Output>* outputs) {
      DCHECK(outputs != nullptr);
      DCHECK(outputs->empty());
    
      // The control dependency is analogous to that in CreateCond().
      Scope body_scope =
          scope.NewSubScope("body").WithControlDependencies(inputs[0]);
      TF_RETURN_IF_ERROR(body(body_scope, inputs, outputs));
    
      const size_t num_loop_vars = inputs.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tensorflow/c/eager/unified_api_test.cc

      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    // Checks that inputs[0] is a scalar.
    Status TestScalarShape(AbstractContext* ctx,
                           absl::Span<AbstractTensorHandle* const> inputs,
                           absl::Span<AbstractTensorHandle*> outputs) {
      PartialTensorShape shape;
      TF_RETURN_IF_ERROR(inputs[0]->Shape(&shape));
      if (shape.dims() != 0) {
        return errors::InvalidArgument(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

      if (ops.empty()) {
        return;
      }
    
      std::vector<Value> inputs;
      std::vector<Value> outputs;
      computeInputsOutputs(ops, &inputs, &outputs);
    
      std::vector<Type> input_types;
      std::vector<Type> output_types;
    
      input_types.reserve(inputs.size());
      for (Value v : inputs) {
        input_types.push_back(v.getType());
      }
      output_types.reserve(outputs.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/signature_with_multiple_entry_points.mlir

    // CHECK: func @add(
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["result"]}
    // CHECK-SAME: tf.entry_function = {inputs = "input1:0,input2:0", outputs = "result:0"}
    // CHECK-SAME: tf_saved_model.exported_names = ["add"]
    
    // CHECK: func @sub(
    // CHECK-SAME: {tf_saved_model.index_path = ["input2"]}
    // CHECK-SAME: {tf_saved_model.index_path = ["input1"]}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalTask/groovy/build.gradle

            inputsDir.file('4.txt').asFile.text = 'Content for new file 4.'
        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register('removeInput', Delete) {
        delete 'inputs/3.txt'
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    tasks.register('removeOutput', Delete) {
        delete layout.buildDirectory.file("outputs/1.txt")
    }
    // end::removed-output[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/CollectorTester.java

              A result(Collector<T, A, R> collector, Iterable<T> inputs) {
            List<A> stack = new ArrayList<>();
            for (T input : inputs) {
              A newAccum = collector.supplier().get();
              collector.accumulator().accept(newAccum, input);
              push(stack, newAccum);
            }
            push(stack, collector.supplier().get());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top