Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _Graph (0.12 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      ModuleOp module = getOperation();
    
      // When allow_tensorlist_pass_through_ == false the target dynamic legal
      // checks will cause this pass to fail if there are any variant type tensors
      // in the graph. The graph should still be treated as valid as long as those
      // variant tensors are not from tf-dialect tensorlist ops. Rather than change
      // the dynamic legalization predicates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            given:
            buildFile("""
                class SneakyListener extends TaskExecutionAdapter implements TaskExecutionGraphListener {
                    @Override void graphPopulated(TaskExecutionGraph graph) {}
                }
    
                gradle.$registrationPoint(new SneakyListener())
            """)
    
            expect:
            executer.noDeprecationChecks()
            configurationCacheFails 'help'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top