Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DCHECK_NE (0.55 sec)

  1. tensorflow/compiler/jit/device_compiler.h

        DeviceCompileMode compile_mode, OpKernelContext* ctx,
        DeviceCompilationProfiler* profiler,
        const XlaCompiler::CompilationResult** out_compilation_result,
        ExecutableType** out_executable) {
      DCHECK_NE(out_executable, nullptr);
      VLOG(2) << "DeviceCompiler::Compile " << DebugString();
    
      if (VLOG_IS_ON(2)) {
        VLOG(2) << "num_inputs=" << args.size();
        for (int i = 0, end = args.size(); i < end; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

        for (Value result : island.getOutputs()) {
          for (Operation* user : result.getUsers()) {
            Operation* def = graph_body.findAncestorOpInBlock(*user);
            DCHECK_NE(def, nullptr);
            try_update_current_candidate(def);
          }
        }
      }
    
      return candidate_island;
    }
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top