Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 185 for input0 (1 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = [{
    output = input; While (Cond(output)) { output = Body(output) }
      }];
    
      let description = [{
    output = input; While (Cond(output)) { output = Body(output) }
    
    input: A list of input tensors whose types are T.
    output: A list of output tensors whose types are T.
    cond: A function that takes 'input' and returns a tensor.  If the tensor is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            ClosingFuture.whenAllComplete(ImmutableList.of(input1, input2Failed))
                .call(
                    new CombiningCallable<TestCloseable>() {
                      @Override
                      public TestCloseable call(DeferredCloser closer, Peeker peeker) throws Exception {
                        closer.eventuallyClose(closeable1, closingExecutor);
                        assertThat(peeker.getDone(input1)).isSameInstanceAs("value1");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      } else if (sparse_index_vector.type ==
                 tflite::SparseIndexVector_Uint16Vector) {
        const auto& inputs = sparse_index_vector.AsUint16Vector()->values;
        std::vector<int32_t> outputs(inputs.size());
        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else if (sparse_index_vector.type ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

          TF_AddGradientsWithPrefix(graph_, prefix, outputs, noutputs, inputs,
                                    ninputs, grad_inputs, s_, grad_outputs);
        } else {
          TF_AddGradientsWithPrefix(graph_, prefix, outputs, noutputs, inputs,
                                    ninputs, nullptr, s_, grad_outputs);
        }
      }
    
      void BuildErrorGraph(TF_Output* inputs, TF_Output* outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

      // for details.
    
      // Running example:
      // input: [[5, 5, 5],
      //         [1, 2, -3]]
      // reduction_indices: [1]
      auto input = op.input(0);
      auto reduction_indices = op.input(1);
    
      // [2, 3]
      auto input_shape = Shape(scope, input);
    
      // [2, 1]
      auto output_shape_kept_dims =
          ReducedShapeHelper(scope, input_shape, reduction_indices);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Slice the first 'size' rows from the input tensorlist.
        auto guard = OpBuilder::InsertionGuard(*rewriter);
        auto inputs = branch_func.getFunctionType().getInputs();
        Block *block = rewriter->createBlock(
            &branch_func.getBody(), branch_func.begin(), inputs,
            SmallVector<Location>(inputs.size(), branch_func.getLoc()));
    
        Value scalar_zero = CreateI32SplatConst(loc, rewriter, {}, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        void transform(TransformOutputs outputs) {
            def input = inputArtifact.get().asFile
            println "Single step transform received dependencies files \${inputArtifactDependencies*.name} for processing \${input.name}"
    
            def output = outputs.file(input.name + ".txt")
            println "Transforming \${input.name} to \${output.name}"
            output.text = String.valueOf(input.length())
        }
    }
    
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        full_output_types.push_back(output.getType());
      }
    
      // Convert split sharded inputs to MANUAL sharded inputs.
      // common_split_sharding is the split sharding that is common to all inputs
      // and outputs.
      llvm::SmallVector<Value, 4> manual_inputs;
      manual_inputs.reserve(inputs.size());
      for (Value in : inputs) {
        Type shard_type;
        if (failed(GetShardShapedType(original_op, num_cores_per_replica,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    		b, e := []byte(test.input), makeEscaper(nil)
    		c := e.escapeText(context{}, &parse.TextNode{NodeType: parse.NodeText, Text: b})
    		if !test.output.eq(c) {
    			t.Errorf("input %q: want context\n\t%v\ngot\n\t%v", test.input, test.output, c)
    			continue
    		}
    		if test.input != string(b) {
    			t.Errorf("input %q: text node was modified: want %q got %q", test.input, test.input, b)
    			continue
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

        return concatNoDefensiveCopy(Arrays.copyOf(inputs, inputs.length));
      }
    
      /**
       * Combines multiple iterators into a single iterator. The returned iterator iterates across the
       * elements of each iterator in {@code inputs}. The input iterators are not polled until
       * necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top