Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for _Graph (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      // CHECK-SAME: %[[ARG_0:.*]]: tensor<!tf_type.resource<tensor<4xf32>>>
      // CHECK-SAME: -> tensor<4xf32>
      func.func @with_graph_and_islands(%arg0: tensor<!tf_type.resource<tensor<4xf32>>>) -> tensor<*xf32> {
        %graph = tf_executor.graph {
          %island:2 = tf_executor.island {
            // CHECK: %[[ID_0:.*]] = "tf.IdentityN"(%[[ARG_0]])
            %id0 = "tf.IdentityN"(%arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "intervalFactor": 1, "legendFormat": "{{ tag }}", "refId": "A" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Pilot Versions", "tooltip": { "shared": true, "sort": 0, "value_type": "individual" }, "type": "graph", "xaxis": { "buckets": null, "mode": "time", "name": null, "show": true, "values": [] }, "yaxes": [ { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true }, { "format": "short", "label": null, "logBase": 1, "max":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		a.priority = i
    	}
    
    	// Write action graph, without timing information, in case we fail and exit early.
    	writeActionGraph := func() {
    		if file := cfg.DebugActiongraph; file != "" {
    			if strings.HasSuffix(file, ".go") {
    				// Do not overwrite Go source code in:
    				//	go build -debug-actiongraph x.go
    				base.Fatalf("go: refusing to write action graph to %v\n", file)
    			}
    			js := actionGraphJSON(root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        auto component_ty = RankedTensorType::get({1}, element_ty);
        return DenseElementsAttr::get(component_ty, {dim_value});
      }
    
      if (auto graph = dyn_cast<tf_executor::GraphOp>(op)) {
        if (port.size() == 1)
          return ComputeOutputComponent(
              ValuePort(graph.GetFetch().getFetches()[port[0]]), values);
        return nullptr;
      }
    
      if (auto island = dyn_cast<tf_executor::IslandOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      flatbuffers::FlatBufferBuilder builder_;
      BufferOffset<tflite::Buffer> empty_buffer_;
    
      std::vector<BufferOffset<tflite::Buffer>> buffers_;
      // Maps subgraph index and tensor name in the graph to the tensor index.
      absl::flat_hash_map<int, absl::flat_hash_map<std::string, int>>
          tensor_index_map_;
    
      // Maps op name to index of the corresponding OperatorCode in opcodes_ vector.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        // This shows current behaviour, where the transform is executed even though the input artifact has not been created yet
        // This should become an error eventually
        def "executes transform immediately when required during task graph building"() {
            buildFile << declareAttributes() << withJarTasks() << """
                import org.gradle.api.artifacts.transform.TransformParameters
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    var preloadWorkerCount = runtime.GOMAXPROCS(0)
    
    // preload holds state for managing concurrent preloading of package data.
    //
    // A preload should be created with newPreload before loading a large
    // package graph. flush must be called when package loading is complete
    // to ensure preload goroutines are no longer active. This is necessary
    // because of global mutable state that cannot safely be read and written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:2.0
    \\--- org:bar:1.0
         \\--- conf
    
    org:leaf:1.0 -> 2.0
    \\--- org:foo:1.0
         \\--- conf
    """
        }
    
        def "forced version does not match anything in the graph"() {
            given:
            mavenRepo.module("org", "leaf", "1.0").publish()
            mavenRepo.module("org", "leaf", "2.0").publish()
            mavenRepo.module("org", "leaf", "1.5").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// C++ declaration syntax.
    	inner []AST
    
    	// The printing field is a list of items we are currently
    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    	ps.buf.WriteByte(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    benefit, as the broadcasted tensor is never materialized.
    
    However, `broadcast_to` does not carry with it any such benefits.
    The newly-created tensor takes the full memory of the broadcasted
    shape. (In a graph context, `broadcast_to` might be fused to
    subsequent operation and then be optimized away, however.)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top