Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for add_outputs (0.08 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_test.cc

        // Extract the resulting tensor.
        add_output2 = TF_OutputListGet(add_outputs, 0);
        TF_DeleteOutputList(add_outputs);
      }
    
      // 3rd Output will be Matrix Multiplication of add_output1 and add_output2
      TF_AbstractTensor* mm_output;
      {
        // Build an abstract operation, inputs and output.
        auto* mm_op = TF_NewAbstractOp(graph_ctx);
        TF_AbstractOpSetOpType(mm_op, "MatMul", s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            /**
             * Adds an output location to the result.
             *
             * @param workspaceAction an action to run when the output is a produced output in the workspace.
             */
            public void addOutput(File output, Consumer<File> workspaceAction) {
                if (output.equals(inputArtifact)) {
                    delegate.addEntireInputArtifact();
                } else if (output.equals(outputDir)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top