Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for noOutputs (0.46 sec)

  1. tensorflow/c/c_api.cc

      std::vector<tensorflow::Output> outputs(n);
      for (int i = 0; i < n; ++i) {
        outputs[i] =
            tensorflow::Output(&tf_outputs[i].oper->node, tf_outputs[i].index);
      }
      return outputs;
    }
    
    void TFOutputsFromOutputs(const std::vector<tensorflow::Output>& outputs,
                              TF_Output* tf_outputs) {
      for (int i = 0; i < outputs.size(); i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      NodeBuilder node_builder(opts.WithName(name).GetNameForOp("_XlaRecvAtHost"),
                               "_XlaRecvAtHost", opts.op_registry());
      node_builder.Input(std::move(key_input));
      return opts.WithAttr("Toutputs", dtypes)
          .WithAttr("key", key)
          .WithAttr("device_ordinal", 0)
          .WithAttr("_encapsulate", cluster)
          .WithAttr("_outside", oc_cluster)
          .FinalizeBuilder(&node_builder);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        File outputA = outputs.file(input.name + ".A.txt")
                        assert outputA.parentFile.directory && outputA.parentFile.list().length == 0
                        outputA.text = "Output A"
    
                        File outputB = outputs.file(input.name + ".B.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        inputArtifact.get().asFile
                    }
    
                    void transform(TransformOutputs outputs) {
                        def output = outputs.file(input.name + ".txt")
                        println "Transformed \$input.name to \$input.name into \${output.parentFile}"
                        outputs.file(inputArtifact)
                        output.text = String.valueOf(input.length())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    	var (
    		gp01           = regInfo{inputs: nil, outputs: gponly}
    		gp11           = regInfo{inputs: []regMask{gp}, outputs: gponly}
    		gp11sp         = regInfo{inputs: []regMask{gpsp}, outputs: gponly}
    		gp11sb         = regInfo{inputs: []regMask{gpspsbg}, outputs: gponly}
    		gp21           = regInfo{inputs: []regMask{gp, gp}, outputs: gponly}
    		gp21sp         = regInfo{inputs: []regMask{gpsp, gp}, outputs: gponly}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      std::vector<TensorId> outputs;
      output_node_names.reserve(specs.outputs.size());
      for (const auto& output : specs.outputs) {
        TensorId tensor = ParseTensorName(output);
        auto remapped_it = remapped_feeds_.find(tensor);
        if (remapped_it != remapped_feeds_.end()) {
          output_node_names.insert(remapped_it->second);
          outputs.push_back({remapped_it->second, 0});
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (const auto& signature_def_data : signature_defs) {
        auto inputs = GetList(subgraph_index, signature_def_data.inputs);
        auto outputs = GetList(subgraph_index, signature_def_data.outputs);
        auto inputs_buf = builder_.CreateVector(inputs);
        auto outputs_buf = builder_.CreateVector(outputs);
        auto signature_key_buf =
            builder_.CreateString(signature_def_data.signature_key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExecutorConvertControlToDataOutputsPass : Pass<"tf-executor-convert-control-to-data-outputs", "ModuleOp"> {
      let summary = "Chain control outputs of while loop body";
    
      let description = [{
        This pass converts the control outputs of a while loop body function to data
        outputs. Thus, inter iteration control dependencies are transformed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        graphdef = loader.get_meta_graph_def_from_tags(tags).graph_def
        self.assertTrue(self._contains_op(graphdef, 'XlaDotV2'))
    
        outputs = converted_model.signatures[signature_key](**model_inputs)
    
        self.assertAllClose(outputs, expected_outputs, atol=1e-1)
    
      # Equations NOT supported for XLA operations.
      @parameterized.parameters(
          testing.parameter_combinations([{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return %4, %3 : tensor<*xi32>, tensor<*xi1>
      }
    }
    
    // -----
    
    // Tests that outputs are correctly merged and fed from TPU computation for
    // tiled output sharding.
    
    // The following OpSharding is used for TPU computation outputs in below test:
    // Proto debug string:
    //  output 0
    //   type: OTHER
    //   tile_assignment_dimensions: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
Back to top