Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for outInts (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-timeline.png

    overlapping-outputs-timeline.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-input-comparison.png

    overlapping-outputs-input-comparison.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                    @Inject
                    abstract InputChanges getInputChanges()
    
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing \${input.name}"
                        def output = outputs.file(input.name + ".green")
                        output.text = input.text + ".green"
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

          float_graph->tensors()->Get(op->outputs[0])->quantization();
      auto output_quant_params =
          subgraph->tensors[op->outputs[0]]->quantization.get();
      ASSERT_THAT(*float_output_quant_params->min(), SizeIs(1));
      ASSERT_THAT(*float_output_quant_params->max(), SizeIs(1));
      ASSERT_THAT(output_quant_params->scale, SizeIs(1));
    
      // Make sure the input min/maxes are propagated to outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          )
    
          inputs = {'input_vocabs': input_vocabs_placeholder}
          outputs = {
              'lookup': lookup_tensor,
              'output': output_tensor,
          }
    
          self._save_tf1_model(
              sess,
              output_path,
              signature_def_key,
              tags,
              inputs=inputs,
              outputs=outputs,
              init_op=lookup_ops.tables_initializer(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

                             const std::vector<IOSpec>& outputs) {
        const OpDef& signature = fdef.signature();
        ASSERT_EQ(outputs.size(), signature.output_arg_size());
        for (int i = 0; i < outputs.size(); ++i) {
          const OpDef::ArgDef& arg = signature.output_arg(i);
          const IOSpec& out = outputs[i];
          if (out.second != DT_INVALID) {
            ASSERT_EQ(arg.type(), out.second)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      shard_output_types.reserve(outputs.size());
      full_output_types.reserve(outputs.size());
      for (const auto& output : outputs) {
        Type shard_type;
        if (failed(GetShardShapedType(original_op, num_cores_per_replica,
                                      output.getType(), shard_type)))
          return mlir::failure();
        shard_output_types.push_back(shard_type);
        full_output_types.push_back(output.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_inputs_outputs]]
    == Task inputs and outputs
    
    In the most common case, a task takes some inputs and generates some outputs.
    We can consider the process of Java compilation as an example of a task.
    The Java source files act as inputs of the task, while the generated class files, i.e. the result of the compilation, are the outputs of the task.
    
    .Example task inputs and outputs
    image::taskInputsOutputs.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	var (
    		gp01    = regInfo{inputs: []regMask{}, outputs: gponly}
    		gp11    = regInfo{inputs: []regMask{gp}, outputs: gponly}
    		gp11sp  = regInfo{inputs: []regMask{gpsp}, outputs: gponly}
    		gp21    = regInfo{inputs: []regMask{gp, gp}, outputs: gponly}
    		gp21sp  = regInfo{inputs: []regMask{gpsp, gp}, outputs: gponly}
    		gp21tmp = regInfo{inputs: []regMask{gp &^ tmp, gp &^ tmp}, outputs: []regMask{gp &^ tmp}, clobbers: tmp}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //  noutputs - number of elements in `outputs` array
    //  outputs - array of TF_Outputs that specify the outputs of the function.
    //            If `noutputs` is zero (the function returns no outputs), `outputs`
    //            can be null. `outputs` can contain the same tensor more than once.
    //  output_names - The names of the function's outputs. `output_names` array
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top