Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allow_ops_producing_or_consuming_variant (0.38 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      if (!op_filter_.allow_ops_producing_or_consuming_variant &&
          OpProducesOrConsumesVariant(node)) {
        absl::string_view uncompilable_reason = "DT_VARIANT producer/consumer";
        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

        // Whether ops that produce or consume DT_VARIANT values are allowed.  We
        // don't auto-cluster these ops because we don't yet support live-in or
        // live-out DT_VARIANT values.
        bool allow_ops_producing_or_consuming_variant = false;
    
        // Whether ops known to be slow on XLA-GPU should be considered compilable.
        bool allow_slow_ops = false;
    
        // Whether ops known to have numerical accuracy issues should be considered
    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_test.cc

        op_filter_.allow_stateful_rng_ops = false;
        op_filter_.allow_control_trigger = false;
        op_filter_.allow_eliding_assert_and_checknumerics_ops = false;
        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();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
Back to top