Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for buildGraph (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                return addExceptionToResult(result, e);
            }
    
            eventCatapult.fire(ExecutionEvent.Type.ProjectDiscoveryStarted, session, null);
    
            Result<? extends ProjectDependencyGraph> graphResult = buildGraph(session);
    
            if (graphResult.hasErrors()) {
                return addExceptionToResult(
                        result, graphResult.getProblems().iterator().next().getException());
            }
    
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

                                               arg.name(), "_0}");
                          }
                        }));
    
      string fuzz_class_def = strings::StrCat(
          class_signature_str, "  void BuildGraph(const Scope& scope) override {\n",
          build_graph_body, constructor_call_str, "  }\n", fuzz_impl_signature_str,
          run_inputs_str, "  }\n", "};\n");
    
      return fuzz_class_def;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug

      x = value
      y = value
      math_ops.add(x, y, name='x_y_sum')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 02 16:34:34 UTC 2020
    - 83 bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt.fake_py.debug

      x = value
      y = value
      math_ops.add(x, y, name='x_y_sum')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 05 22:01:37 UTC 2020
    - 84 bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/make_test_graphs.py

      array_ops.identity(updates, name='result')
    
    
    def write_graph(build_graph, out_dir):
      """Build a graph using build_graph and write it out."""
      g = ops.Graph()
      with g.as_default():
        build_graph(out_dir)
        filename = os.path.join(out_dir, 'test_graph_%s.pb' % build_graph.__name__)
        with open(filename, 'wb') as f:
          f.write(
              six.ensure_binary(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
        value: {
          shape: {
            dim: {
              size: -1
            }
          }
        }
      }
      attr: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt

    # the node x_y_sum = Add
    # CHECK: INVALID ARGUMENTS: Dimensions must be equal, but are 2 and 3 for 'x_y_sum = Add[T=DT_INT32](aot_feed_0/x, aot_feed_0/y)'
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    
    # Checks the error message produced by tfcompile without mlir_component
    # OLD: INVALID ARGUMENTS: Incompatible shapes: [2] vs. [3]
    # OLD: x_y_sum
    
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top