Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 871 for output1 (0.53 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      GraphDef pruned_graph_def;
      if (specs.prune_unused_nodes) {
        std::vector<std::string> terminal_nodes;
        terminal_nodes.reserve(specs.outputs.size() + specs.inputs.size());
        for (const auto& output : specs.outputs) {
          terminal_nodes.push_back(std::string(ParseTensorName(output).node()));
        }
        for (const auto& control_output : specs.control_outputs) {
          terminal_nodes.push_back(std::string(control_output));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

          location, concat_dim_type, concat_dimension_attr);
    
      // Correctly set output shapes of concat op output if output shape is
      // statically known. Since the shape of TPUExecute op must be the same
      // across logical devices, we refer to the shape of 0th logical device
      // computation output.
      mlir::Type output_type;
      auto input_type = mlir::cast<mlir::TensorType>(inputs[0].getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/loader.cc

                 const std::vector<string>& output_tensor_names,
                 const std::vector<string>& target_node_names,
                 std::vector<Tensor>* outputs) override {
        return wrapped_->Run(inputs, output_tensor_names, target_node_names,
                             outputs);
      }
    
      Status Create(const RunOptions& run_options, const GraphDef& graph) override {
        return absl::UnimplementedError("Session::Create()");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                task customTask {
                    def outputFile = file("build/output.txt")
                    inputs.file("${archive.name}")
                        .withPropertyName("classpath")
                        .withNormalizer(ClasspathNormalizer)
                    outputs.file(outputFile)
                        .withPropertyName("outputFile")
                    outputs.cacheIf { true }
    
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            TaskWithOutputFile  | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [null] as Object[]
            TaskWithOutputFiles | 'outputs' | [] as List
            TaskWithInputFiles  | 'inputs'  | [null] as Object[]
            TaskWithOutputDir   | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [null] as Object[]
            TaskWithOutputDirs  | 'outputs' | [] as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    performanceTest.registerTestProject("largeEmptyMultiProjectDeclarativeDsl", JavaExecProjectGeneratorTask) {
        outputs.dir new File(buildDir, "largeEmptyMultiProjectDeclarativeDsl")
        outputs.cacheIf { true }
        inputs.property('template', "largeEmptyMultiProjectDeclarativeDsl")
        inputs.property('args') { // Arguments are covered by the testProjectName and the outputs. We don't want them to contain the absolute path
            return []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        ${server.callFromBuild('size-transform')}
                        File output = outputs.file(input.name + parameters.suffix)
                        output.text = String.valueOf(input.length())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

      <testcase name="some skipped test" classname="com.foo.FooTest" time="0.01">
        <skipped/>
      </testcase>
      <system-out><![CDATA[1st output message
    2nd output message
    ]]></system-out>
      <system-err><![CDATA[err]]></system-err>
    </testsuite>
    """
        }
    
        def "writes results with empty outputs"() {
            given:
            def options = new JUnitXmlResultOptions(false, false, true, true)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/build_xla_ops_pass.cc

        s.graph()->RemoveControlEdge(e);
      }
    }
    
    struct XlaClusterInfo {
      std::vector<Output> constant_inputs;
      std::vector<Output> non_constant_inputs;
      std::vector<Output> resource_inputs;
      NameAttrList function;
    };
    
    Output IncomingEdgeAsOutput(const Edge* e) {
      return Output(e->src(), e->src_output());
    }
    
    Status GetXlaClusterInfo(Node* n, XlaClusterInfo* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util.cc

      Allocator* allocator = ctx->device()->GetAllocator({});
    
      // Computation output should always be a tuple.
      VLOG(2) << "Result tuple shape: " << output.on_host_shape().DebugString();
      VLOG(2) << "Result tuple shape (on device): "
              << output.on_device_shape().DebugString();
      CHECK_EQ(ctx->num_outputs(), compilation_result->outputs.size());
    
      // If the on-host-shape isn't a tuple, create a new single-element tuple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
Back to top