Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 351 for _Graph (0.12 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.decodePreservingIdentity
    import org.gradle.internal.serialize.graph.encodePreservingIdentityOf
    import org.gradle.internal.serialize.graph.ownerService
    import org.gradle.internal.serialize.graph.readCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.readStrings
    import org.gradle.internal.serialize.graph.readStringsSet
    import org.gradle.internal.serialize.graph.withDebugFrame
    import org.gradle.internal.serialize.graph.withIsolate
    import org.gradle.internal.serialize.graph.writeCollection
    import org.gradle.internal.serialize.graph.writeEnum
    import org.gradle.internal.serialize.graph.writeStrings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

          }
        }
      }
    
      // Version information is embedded in graph operation in TFG. In TFE, it's
      // embedded in the module operation.
      for (auto &op : module.getBodyRegion().getOps()) {
        auto graph = dyn_cast<tfg::GraphOp>(op);
        if (!graph) continue;
        Builder b(&context);
        auto producer = b.getNamedAttr(
            "producer", b.getI32IntegerAttr(graph.getVersion().getProducer()));
        auto min_consumer = b.getNamedAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

    // Checks if a function only contains a tf_executor.graph.
    bool IsSupportedGraph(func::FuncOp func) {
      if (!llvm::hasSingleElement(func)) return false;
    
      Block& block = func.front();
      if (!llvm::hasSingleElement(block.without_terminator())) return false;
    
      auto graph = llvm::dyn_cast<tf_executor::GraphOp>(block.front());
      if (!graph) return false;
    
      Operation* terminator = block.getTerminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function.cc

    #include "tensorflow/core/framework/node_def.pb.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor.pb.h"  // NOLINT
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/platform/base64.h"
    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    
    using tensorflow::errors::InvalidArgument;
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    // tf_executor.graph
    //===----------------------------------------------------------------------===//
    
    FetchOp GraphOp::GetFetch() { return llvm::cast<FetchOp>(GetBody().back()); }
    
    LogicalResult GraphOp::verify() {
      GraphOp graph = *this;
      auto *executorDialect = graph->getDialect();
    
      if (graph.GetBody().empty())
        return graph.emitOpError() << "expects a non-empty body";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_distributed_test.cc

        }
        return tensorflow::errors::Internal("Graph pass runs for more than once!");
      }
    
     private:
      bool first_call_ = true;
    };
    
    // After the graph pass is registered, it takes effect globally and can affect
    // other test cases. Define a static variable to switch it on and off.
    bool GraphErrorInjectionPass::enabled_ = false;
    
    // Test to ensure that a registered graph optimization pass is only executed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "graph.hasTask(':x:unknown')"        | [":b:help"]                      | false
            "graph.allTasks"                     | [":b:help"]                      | false
            "graph.allTasks"                     | [":b:help", ":help"]             | false
            "graph.getDependencies(help)"        | [":b:help"]                      | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

        DumpGraphToFile("before_increase_dynamism_for_auto_jit_pass",
                        **options.graph, options.flib_def);
      }
    
      bool changed;
      TF_RETURN_IF_ERROR(FindAndRewriteSlices(options.graph->get(), &changed));
      if (changed && flags->tf_xla_clustering_debug) {
        DumpGraphToFile("increase_dynamism_for_auto_jit_pass", **options.graph,
                        options.flib_def);
      }
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

        }
    
        private ModelNodeInternal get(ModelPath path) {
            GoalGraph graph = new GoalGraph();
            transitionTo(graph, graph.nodeAtState(new NodeAtState(path, Registered)));
            ModelNodeInternal node = modelGraph.find(path);
            if (node == null) {
                return null;
            }
            transitionTo(graph, graph.nodeAtState(new NodeAtState(path, GraphClosed)));
            return node;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top