Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allow_string_consts (0.32 sec)

  1. tensorflow/compiler/jit/compilability_check_util.h

        // control flow branches might be dead for a given input.
        bool require_always_compilable = false;
    
        // Whether string constants are compilable.
        bool allow_string_consts = true;
    
        // Whether to allow the compilation of CollectiveReduceV2Op.
        bool allow_collective_reduce_v2 = true;
    
        // Whether to allow the compilation of WhereOp.
        bool allow_where_op = true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

            "SymbolicGradient should be handled by IsCompilableCall().";
        return false;
      }
    
      if (node.type_string() == "Const") {
        const AttrValue* attr = node.attrs().Find("dtype");
        if (!op_filter_.allow_string_consts && attr != nullptr &&
            attr->type() == DT_STRING) {
          *uncompilable_reason =
              "Const op with type DT_STRING is not supported by XLA.";
          return false;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          continue;
        }
    
        RecursiveCompilabilityChecker::OperationFilter filter =
            CreateOperationFilter(*registration);
        filter.require_always_compilable = true;
        filter.allow_string_consts = false;
        filter.allow_collective_reduce_v2 = false;
        filter.allow_unique_op = false;
        filter.allow_where_op = allow_where_op;
    
        RecursiveCompilabilityChecker checker(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top