Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for const_args (0.09 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

      std::vector<bool> const_args(arg_types.size());
      // If we can't analyze the const args. Bail out.
      TF_RETURN_IF_ERROR(
          BackwardsConstAnalysis(*((*fbody)->graph), &const_args,
                                 /*compile_time_const_nodes=*/nullptr, flr));
    
      for (size_t i = 0; i < const_args.size(); ++i) {
        if (const_args[i]) {
          constant_arg_indices->push_back(i);
        }
      }
    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