Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allow_stack_ops (0.23 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      if (!op_filter_.allow_stack_ops && IsStackOp(node)) {
        absl::string_view uncompilable_reason = "Stack op";
        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
    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

        // operations in general because we do not support snapshotting them.
        //
        // TODO(b/112837194): This restriction can be lifted with some work.
        bool allow_stack_ops = false;
    
        // Whether TensorArray operations are allowed.  We avoid auto-clustering
        // TensorArray operations in general because we do not support snapshotting
        // them.
        //
    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

     protected:
      void SetUp() override {
        XlaOpRegistry::RegisterCompilationKernels();
    
        op_filter_.allow_resource_ops_in_called_functions = false;
        op_filter_.allow_stack_ops = false;
        op_filter_.allow_tensor_array_ops = false;
        op_filter_.allow_stateful_rng_ops = false;
        op_filter_.allow_control_trigger = false;
        op_filter_.allow_eliding_assert_and_checknumerics_ops = false;
    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