Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allow_outside_compiled (0.33 sec)

  1. tensorflow/compiler/jit/compilability_check_util_test.cc

        op_filter_.allow_ops_producing_or_consuming_variant = false;
        op_filter_.allow_inaccurate_ops = false;
        op_filter_.allow_slow_ops = false;
        op_filter_.allow_outside_compiled = false;
    
        checker_ = CreateCompilabilityChecker();
      }
    
      std::unique_ptr<RecursiveCompilabilityChecker> CreateCompilabilityChecker() {
        return std::make_unique<RecursiveCompilabilityChecker>(op_filter_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

        // compilable.
        // TODO(b/191502757):  Make this behavior true by default and remove this
        // option once inference converter supports outside compilation.
        bool allow_outside_compiled = false;
      };
    
      RecursiveCompilabilityChecker(OperationFilter op_filter,
                                    DeviceType jit_device_type)
          : op_filter_(std::move(op_filter)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

        NameAttrList* encapsulating_function,
        RecursiveCompilabilityChecker::UncompilableNodesMap* uncompilable_nodes)
        const {
      auto stack_depth = stack_trace->size();
    
      if (op_filter_.allow_outside_compiled && IsInOutsideCompilationCluster(node))
        return true;
    
      if (node.IsSource() || node.IsSink()) {
        absl::string_view uncompilable_reason = "source or sink node";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top