Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for graphml (0.14 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
      root.graph()->AddControlEdge(neutral_0, read_0);
      root.graph()->AddControlEdge(read_0, write_1);
      root.graph()->AddControlEdge(write_1, neutral_1);
      root.graph()->AddControlEdge(neutral_1, read_1);
    
      FixupSourceAndSinkEdges(root.graph());
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a simple graph.
      Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "feed") != nullptr);
      TF_Operation* oper = ScalarConst(3, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "scalar") != nullptr);
      Neg(oper, graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/graph/graph_def_builder.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/lib/gtl/map_util.h"
    #include "tensorflow/core/lib/hash/hash.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

      TF_Function* grad_func;
      DefineFunction("MyGrad", &grad_func);
    
      // Add func and its gradient to host graph
      TF_GraphCopyFunction(host_graph_, func_, grad_func, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
      // Verify that function and its grad are in host graph's GraphDef
      GraphDef gdef;
      GetGraphDef(host_graph_, &gdef);
      std::vector<string> func_names = GetFuncNames(gdef);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

      }
      func.return %graph#0, %graph#1, %graph#2, %graph#3 : !tf_res, !tf_res, tensor<f32>, tensor<f32>
    }
    
    // CHECK-LABEL: func @unconnected_while_cond
    func.func @unconnected_while_cond(%arg0: !tf_res, %arg1: !tf_res, %arg2: tensor<f32>, %arg3: tensor<f32>) -> (tensor<i32>) {
      %graph = tf_executor.graph {
        %island, %ctrl = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    			return true
    		}
    	}
    	return false
    }
    
    // Graph returns the graph of module requirements loaded from the current
    // root modules (as reported by RootModules).
    //
    // Graph always makes a best effort to load the requirement graph despite any
    // errors, and always returns a non-nil *ModuleGraph.
    //
    // If the requirements of any relevant module fail to load, Graph also
    // returns a non-nil error of type *mvs.BuildListError.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	if len(mismatches) == 0 {
    		// Since we're running as part of 'go mod tidy', the roots of the module
    		// graph should contain only modules that are relevant to some package in
    		// the package graph. We checked every package in the package graph and
    		// didn't find any mismatches, so that must mean that all of the roots of
    		// the module graph are also consistent.
    		//
    		// If we're wrong, Go 1.16 in -mod=readonly mode will error out with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            assertTransformationsExecuted()
    
            where:
            classpathAnnotation << [Classpath, CompileClasspath]
        }
    
        def "transforms with different dependencies in multiple dependency graphs in different projects are executed"() {
            given:
            withColorVariants(mavenHttpRepo.module("org.slf4j", "slf4j-api", "1.7.26")).publish().allowAll()
            createDirs("app2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <p>Usage example:
     *
     * <pre>{@code
     * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
     *     .maximumSize(10000)
     *     .expireAfterWrite(Duration.ofMinutes(10))
     *     .removalListener(MY_LISTENER)
     *     .build(
     *         new CacheLoader<Key, Graph>() {
     *           public Graph load(Key key) throws AnyException {
     *             return createExpensiveGraph(key);
     *           }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    				}
    			}
    
    			mg, _ := rs.Graph(ctx)
    			for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
    				if v := mg.Selected(prefix); v != "none" {
    					m := module.Version{Path: prefix, Version: v}
    					r := resolveReplacement(m)
    					keep[r] = true
    				}
    			}
    		}
    	}
    
    	if rs.graph.Load() == nil {
    		// We haven't needed to load the module graph so far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top