Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 337 for graphml (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-library.pbtxt

    Adrian Kuegel <******@****.***> 1698648479 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.cc

          return mlir::WalkResult::interrupt();
        }
    
        auto block = function.front().without_terminator();
        auto graph = llvm::dyn_cast<mlir::tf_executor::GraphOp>(block.begin());
        if (!graph) {
          block.begin()->emitError(kInvalidExecutorGraphMsg)
              << "first op in function is not a tf_executor.graph";
          return mlir::WalkResult::interrupt();
        }
    
        if (!hasSingleElement(block)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/scope_internal.h

      bool single_use_scope() const { return scope_used_ != nullptr; }
    
      // The graph, status, and name maps are shared by all child scopes
      // created from a single 'root' scope. A root scope is created by calling the
      // Scope::NewRootScope function, which creates a new graph, a new status and
      // the name maps.
      std::shared_ptr<Graph> graph_ = nullptr;
      std::shared_ptr<Status> status_ = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/UndirectedGraphConnections.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.graph;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.graph.GraphConstants.INNER_CAPACITY;
    import static com.google.common.graph.GraphConstants.INNER_LOAD_FACTOR;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.Iterators;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

        island.getControlInputsMutable().clear();
      } else if (auto fetch = dyn_cast<FetchOp>(op)) {
        GraphOp graph = fetch->getParentOfType<GraphOp>();
        int num_control_fetches = fetch.getNumOperands() - graph.getNumResults();
        if (num_control_fetches > 0) {
          fetch.getFetchesMutable().erase(graph.getNumResults(),
                                          num_control_fetches);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/envcmd/env_test.go

    			}
    			if c > unicode.MaxASCII {
    				t.Skipf("skipping %#q: contains a non-ASCII character %q", s, c)
    			}
    			if !unicode.IsGraphic(rune(c)) && !unicode.IsSpace(rune(c)) {
    				t.Skipf("skipping %#q: contains non-graphic character %q", s, c)
    			}
    			if runtime.GOOS == "windows" && c == '\r' || c == '\n' {
    				t.Skipf("skipping %#q on Windows: contains unescapable character %q", s, c)
    			}
    		}
    
    		var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/simple-graph.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. hack/module-graph.sh

    # This script generates a jpg image of our internal dependency graph.
    # It relies on go mod and dot to do so and should be run from K8s root.
    # TODO: Containerize the script to remove dependency issues with go mod and dot.
    
    # To generate graph with all Kubernetes modules run
    # ./hack/module-graph.sh
    # To generate graph with just staging modules run
    # ./hack/module-graph.sh staging
    
    error_exit()
    {
    	echo "$1" 1>&2
    	exit 1
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/graph-resource.mlir

    // RUN: tf-mlir-translate -mlir-tf-graph-to-hlo-text %s -tf-input-shapes=2:2 -tf-input-data-types=DT_FLOAT,DT_FLOAT -tf-xla-input-types=parameter,resource -tf-xla-emit-return-tuple | FileCheck %s
    
    module attributes {tf.versions = {producer = 511 : i32}} {
      func.func @main(%arg0: tensor<*xf32>, %arg1: tensor<*x!tf_type.resource>) {
        tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/graph-resource.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-graph-as-function -tf-control-output-arrays=assign_variable | tf-mlir-translate -mlir-tf-graph-to-hlo-text -tf-input-shapes=2:2 -tf-input-data-types=DT_FLOAT,DT_FLOAT -tf-xla-input-types=parameter,resource -tf-xla-emit-return-tuple | FileCheck %s
    
    node {
      name: "arg0"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 15 06:15:50 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top