Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compile_time_const_nodes (0.27 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      FunctionLibraryRuntime* lib_runtime =
          pflr->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
      std::vector<bool> compile_time_const_nodes(graph_->num_node_ids(), false);
      TF_RETURN_IF_ERROR(BackwardsConstAnalysis(
          *graph_, /*compile_time_const_arg_indices=*/nullptr,
          &compile_time_const_nodes, lib_runtime));
      // Iterate over nodes in sorted order so that compiler fuel is deterministic.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

            std::vector<bool> const_args(num_args);
            TF_RETURN_IF_ERROR(
                BackwardsConstAnalysis(**subgraph, &const_args,
                                       /*compile_time_const_nodes=*/nullptr, flr));
    
            DataTypeVector arg_types(num_args);
            TF_RETURN_IF_ERROR(GetArgTypes(**subgraph, &arg_types));
    
            // Compute a permutation of the arguments such that the constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top