Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for _Graph (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      }
    
      void runOnOperation() override;
    };
    
    bool UseEmbeddingPipelining(ModuleOp& module) {
      // Enable automated pipelining pass unless:
      // 1. The user disables it via flag, or
      // 2. The graph contains TF.Summary ops. Graphs like this typically only run
      //    for a single step which doesn't work in pipelining.
    
      if (tensorflow::GetBuildXlaOpsPassFlags()
              ->tf_xla_disable_full_embedding_pipelining) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ArtifactSelectionSpec;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.conflicts.Conflict;
    import org.gradle.api.internal.artifacts.resolver.DefaultResolutionOutputs;
    import org.gradle.api.internal.artifacts.resolver.ResolutionAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    First by consuming the graph of the resolved metadata using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedComponentResult.html[ResolvedComponentResult].
    Second by consuming the flat set of the resolved artifacts using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedArtifactResult.html[ResolvedArtifactResult].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

           subgraph_idx++) {
        const auto graph = model.subgraphs[subgraph_idx].get();
        const auto expected_graph = expected_model.subgraphs[subgraph_idx].get();
        for (auto& op : graph->operators) {
          for (int idx = 0; idx < op->inputs.size(); idx++) {
            if (op->inputs[idx] < 0) {
              continue;
            }
            const auto& tensor = graph->tensors[op->inputs[idx]];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        @Issue("GRADLE-2555")
        void "can deal with transitive with parent in conflict"() {
            /*
                Graph looks likeā€¦
    
                \--- org:a:1.0
                     \--- org:in-conflict:1.0 -> 2.0
                          \--- org:target:1.0
                               \--- org:target-child:1.0
                \--- org:b:1.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        display: inline-block;
    }
    button.page-search-header {
        border: none;
        cursor: pointer;
    }
    span#page-search-link {
        text-decoration: underline;
    }
    .module-graph span, .sealed-graph span {
        display:none;
        position:absolute;
    }
    .module-graph:hover span, .sealed-graph:hover span {
        display:block;
        margin: -100px 0 0 100px;
        z-index: 1;
    }
    .inherited-list {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // masks will complicate the strided_slice computation logic, we can simplify
    // the logic by inserting a reshape op to pad the inputs so strided_slice can
    // be easier to handle.
    //
    // So the graph may looks like below:
    //   original_input -> strided_slice -> output
    //      (transforms)
    //   original_input -> reshape -> strided_slice -> output
    //
    // And the new shape is computed based on the masks.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    Asynchronously executes a function, potentially across multiple devices but
    within a single process. The kernel places and partitions a given function's
    underlying graph, and executes each of the partitioned subgraphs as a function.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
    
        FlatSymbolRefAttr:$f,
        StrAttr:$config,
        StrAttr:$config_proto,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      std::vector<const tflite::OperatorT*> queue;
      for (int32_t output : output_indices) {
        if (auto& op = defining_op[output]) {
          queue.push_back(op);
        }
      }
    
      // Traverse the graph towards inputs.
      absl::flat_hash_set<const tflite::OperatorT*> visited;
      while (!queue.empty()) {
        const tflite::OperatorT* op = queue.back();
        queue.pop_back();
        if (!visited.insert(op).second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            and:
            outputDoesNotContain("Cannot set attributes for constraint \"org:test:1.0\": it was probably created by a plugin using internal APIs")
        }
    
        def "attributes declared on constraints contribute to graph selection"() {
            given:
            settingsFile << """
                include 'producer'
            """
            file("producer/build.gradle") << """
                plugins {
                    id("base")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top