Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for inputs_1 (0.11 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device.cc

        }
        std::vector<TensorHandlePtr> components;
        components.reserve(inputs.size());
        for (int i = 0; i < inputs.size(); ++i) {
          if (absl::holds_alternative<ParallelTensor*>(inputs[i])) {
            std::string message(absl::StrCat(
                "Expected all inputs to TPUReplicatedInput to be non-parallel "
                "TensorHandles. The input ",
                i,
                " was a parallel tensor (already "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/custom_gradient_test.cc

    //   return tf.exp(input), grad
    // outputs = [f(inputs[0])]
    Status ExpWithPassThroughGrad(AbstractContext* ctx,
                                  absl::Span<AbstractTensorHandle* const> inputs,
                                  absl::Span<AbstractTensorHandle*> outputs) {
      Tape tape(/*persistent=*/false);
      tape.Watch(inputs[0]);  // Watch x.
      AbstractTensorHandle* exp_output;
      TF_RETURN_IF_ERROR(ops::Exp(ctx, inputs[0], &exp_output, "Exp"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    	"istio.io/istio/pkg/workloadapi/security"
    )
    
    func TestPodWorkloads(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    		pod    *v1.Pod
    		result *workloadapi.Workload
    	}{
    		{
    			name:   "simple pod not running and not have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/if_op.mlir

    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     } ],
    // CHECK-NEXT:     inputs: [ 0, 1 ],
    // CHECK-NEXT:     outputs: [ 3 ],
    // CHECK-NEXT:     operators: [ {
    // CHECK-NEXT:       inputs: [ 0, 1 ],
    // CHECK-NEXT:       outputs: [ 2 ]
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       opcode_index: 1,
    // CHECK-NEXT:       inputs: [ 2, 0, 1 ],
    // CHECK-NEXT:       outputs: [ 3 ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/composite.py

      Example:
        @composite.Composite('AddN')
        def _compose_add_n(inputs, N):
          if N == 1:
            ....
      """
    
      # TODO(fengliuai): support input_binding and output_binding so the arguments
      # are not positional.
      def __init__(self,
                   op_name,
                   inputs=None,
                   attrs=None,
                   derived_attrs=None,
                   outputs=None):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            "inputs.file('a')"                                          | "TaskInputs.file(Object)"
            "inputs.files('a')"                                         | "TaskInputs.files(Object...)"
            "inputs.dir('a')"                                           | "TaskInputs.dir(Object)"
            "inputs.property('key', 'value')"                           | "TaskInputs.property(String, Object)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. pkg/test/framework/label/filter.go

    func (f *Selector) Selects(inputs Set) bool {
    	return !inputs.containsAny(f.absent) && inputs.containsAll(f.present)
    }
    
    // Excludes returns false, if the given set of labels, even combined with new ones, could end up satisfying the Selector.
    // It returns false, if Matches would never return true, even if new labels are added to the input set.
    func (f *Selector) Excludes(inputs Set) bool {
    	return inputs.containsAny(f.absent)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/tf_entry_function.mlir

    // CHECK:             quantization: {
    // CHECK:             },
    // CHECK:             has_rank: true
    // CHECK:           } ],
    // CHECK:           inputs: [ 0 ],
    // CHECK:           outputs: [ 2 ],
    // CHECK:           operators: [ {
    // CHECK:             inputs: [ 1, 0 ],
    // CHECK:             outputs: [ 2 ],
    // CHECK:             builtin_options_type: AddOptions,
    // CHECK:             builtin_options: {
    // CHECK:             }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unranked_tensor.mlir

    // CHECK-NEXT:      buffer: 2,
    // CHECK-NEXT:      name: "outputs",
    // CHECK-NEXT:      quantization: {
    // CHECK:           }
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    inputs: [ 0 ],
    // CHECK-NEXT:    outputs: [ 1 ],
    // CHECK-NEXT:    operators: [ {
    // CHECK-NEXT:      inputs: [ 0, 0 ],
    // CHECK-NEXT:      outputs: [ 1 ],
    // CHECK-NEXT:      builtin_options_type: AddOptions,
    // CHECK-NEXT:      builtin_options: {
    // CHECK:           }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

         *
         * @since 6.0
         */
        @TaskAction
        protected void compile(InputChanges inputs) {
            DefaultJavaCompileSpec spec = createSpec();
            if (!compileOptions.isIncremental()) {
                performFullCompilation(spec);
            } else {
                performIncrementalCompilation(inputs, spec);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top