Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for signalPassFailure (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
        return signalPassFailure();
      }
    
      // Run each of the passes that were selected.
      GraphConstructorOptions opts;
      opts.allow_internal_ops = true;
      opts.expect_device_spec = false;
    
      GraphOptimizationPassOptions options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      mlir::ModuleOp module = func->getParentOfType<mlir::ModuleOp>();
      if (!module) return signalPassFailure();
      func.walk([&](ClusterOp cluster) {
        if (auto replicate = cluster->getParentOfType<ReplicateOp>()) {
          if (failed(MoveAllBroadcastsToCluster(cluster, replicate, module))) {
            return signalPassFailure();
          }
        }
      });
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

      pattern_list.add<HandleIf>(&getContext());
      FrozenRewritePatternSet patterns(std::move(pattern_list));
    
      if (failed(applyPatternsAndFoldGreedily(module, patterns))) {
        signalPassFailure();
      }
    }
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateDecomposeOptionalsPass() {
      return std::make_unique<DecomposeOptionalsPass>();
    }
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "converter.target_spec.supported_ops = "
              "[tf.lite.OpsSet.TFLITE_BUILTINS, tf.lite.OpsSet.SELECT_TF_OPS]\\n "
              "converter._experimental_lower_tensor_list_ops = False");
          signalPassFailure();
        }
      } else {
        // If `allow_tensorlist_pass_through` is set to true, if legalization fails
        // we should not leak the diagnostic info outside this pass. Hence we use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top