Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for graph_op_def (0.21 sec)

  1. tensorflow/cc/framework/cc_op_gen.cc

                 internal_cc.get(), &internal_op_header_guard);
    
      for (const auto& graph_op_def : ops.op()) {
        // Skip deprecated ops.
        // TODO(josh11b): If needed, can put them into a "deprecated" namespace
        // instead of skipping.
        if (graph_op_def.has_deprecation() &&
            graph_op_def.deprecation().version() <= TF_GRAPH_DEF_VERSION) {
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

      return fuzz_footer;
    }
    
    }  // namespace
    
    bool OpFuzzingIsOk(const OpInfo& op_info) {
      // Skip deprecated ops.
      if (op_info.graph_op_def.has_deprecation() &&
          op_info.graph_op_def.deprecation().version() <= TF_GRAPH_DEF_VERSION) {
        std::cout << "NOT fuzzing: " << op_info.graph_op_def.name()
                  << " is deprecated.\n";
        return false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_util.cc

          return true;
        }
      }
      return false;
    }
    
    OpInfo::OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
                   const std::vector<string>& aliases)
        : graph_op_def(graph_op_def), api_def(api_def), aliases(aliases) {
      op_name = SeparateNamespaces(api_def.endpoint(0).name());
      InferOpAttributes(graph_op_def, &inferred_input_attrs);
      has_optional_attrs = HasOptionalAttrs(api_def, inferred_input_attrs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.h

    struct OpInfo {
      // graph_op_def: The OpDef used by the runtime, has the names that
      //   must be used when calling NodeBuilder.
      // interface_op_def: The OpDef used in the interface in the generated
      //   code, with possibly overridden names and defaults.
      OpInfo(const OpDef& graph_op_def, const ApiDef& api_def,
             const std::vector<string>& aliases);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top