Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for signalPassFailure (0.2 sec)

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

            getOperation(), max_iterations_, /*ops_to_skip=*/{}, input_shapes_);
        if (failed(failure_or_converged)) return signalPassFailure();
        if (!failure_or_converged.value()) {
          getOperation().emitError()
              << "shape inference pass did not reach convergence after "
              << max_iterations_;
          return signalPassFailure();
        }
      }
    
     private:
      ArrayRef<ArrayRef<int64_t>> input_shapes_;
    };
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        if (failed(ConvertTFTextAPI(func, api_name, attr))) {
          return signalPassFailure();
        }
      } else if (api_name == kCustomSSDPostprocessing) {
        ConvertSSDPostProcessFunc convert_ssd_postprocess(func, attr);
        if (failed(convert_ssd_postprocess.VerifySignature())) return;
        if (failed(convert_ssd_postprocess.RewriteFunc())) {
          return signalPassFailure();
        }
      } else if (api_name == kCustomMaxUnpooling) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

      DataFlowSolver solver;
      solver.load<dataflow::DeadCodeAnalysis>();
      solver.load<dataflow::SparseConstantPropagation>();
      TF::LoadResourceDataflowAnalysis(solver);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      DenseSet<GlobalTensorOp> remaining_global_tensor_ops;
      {
        auto ops = module.getOps<GlobalTensorOp>();
        remaining_global_tensor_ops.insert(ops.begin(), ops.end());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

          op->emitOpError() << "embedding ops in two different regions";
          return signalPassFailure();
        }
        if (GetReplicationAttr(op) != replication_attr) {
          op->emitOpError() << "embedding ops with different replication info "
                            << replication_attr << " vs " << GetReplicationAttr(op);
          return signalPassFailure();
        }
      }
    
      // TODO(bfontain): Check that the region here is the region
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/xla_validate_inputs.cc

      if (entry_funcs.empty()) {
        LOG(WARNING) << "missing entry functions";
      }
    
      if (HasNoNestedEntryFunctions(entry_funcs, symtab).failed()) {
        return signalPassFailure();
      }
    
      if (HasTopLevelCompilationMarker(entry_funcs).failed()) {
        return signalPassFailure();
      }
    }
    
    }  // namespace
    
    namespace TFDevice {
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaValidateInputsPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          op->emitOpError() << "embedding ops in two different regions";
          return signalPassFailure();
        }
        if (GetReplicationAttr(op) != replication_attr) {
          op->emitOpError() << "embedding ops with different replication info "
                            << replication_attr << " vs " << GetReplicationAttr(op);
          return signalPassFailure();
        }
      }
    
      // TODO(bfontain): Check that the region here is the region
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

    void RewriteTPUEmbeddingOps::runOnOperation() {
      func::FuncOp func = getOperation();
      if (failed(RunOnRegion(&func.getBody()))) return signalPassFailure();
    
      func.walk([&](Operation* op) {
        for (Region& region : op->getRegions()) {
          if (failed(RunOnRegion(&region))) return signalPassFailure();
        }
      });
    }
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

        }
        variable_v2s_to_replace.push_back(variable_v2_op);
        return mlir::WalkResult::advance();
      };
    
      WalkResult walk_res = func.walk(read_only_vars_fn);
      if (walk_res.wasInterrupted()) return signalPassFailure();
    
      for (VariableV2Op variable_v2_op : variable_v2s_to_replace) {
        builder.setInsertionPoint(variable_v2_op);
        ShapedType shaped_type =
            mlir::cast<ShapedType>(variable_v2_op.getResult().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

        return signalPassFailure();
      }
    
      auto result = getOperation().walk([&tf_dialect](tf_device::LaunchOp launch) {
        if (failed(HoistOpsAndAnnotateWithDevice(tf_dialect, launch)))
          return WalkResult::interrupt();
    
        return WalkResult::advance();
      });
    
      if (result.wasInterrupted()) return signalPassFailure();
    
      if (!legacy_graph_export_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top