Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OpFuzzingIsOk (0.11 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.h

    namespace tensorflow {
    namespace cc_op {
    
    // String with single fuzzer file content.
    string WriteSingleFuzzer(const OpInfo& op_info, bool is_fuzzable);
    
    // Do we have all we need to create a fuzzer
    bool OpFuzzingIsOk(const OpInfo& op_info);
    
    }  // namespace cc_op
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

        status.Update(env->NewWritableFile(
            root_location + "/" + op_def.name() + "_fuzz.cc", &fuzz_file));
        status.Update(
            fuzz_file->Append(WriteSingleFuzzer(op_info, OpFuzzingIsOk(op_info))));
        status.Update(fuzz_file->Close());
      }
      TF_CHECK_OK(status);
    }
    
    }  // namespace
    }  // namespace cc_op
    }  // namespace tensorflow
    
    int main(int argc, char* argv[]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

    }
    
    string FuzzerFileEnd() {
      const string fuzz_footer = R"footer(
    }  // namespace fuzzing
    }  // namespace tensorflow
    )footer";
    
      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) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top