Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IgnoreError (0.36 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

          /*result=*/"failure");
      tsl::error_logging::Log(mlir::TF::kBridgeComponent,
                              "TFXLA_PHASE_ONE_MLIR_TPU_V1_COMPAT_BRIDGE",
                              status.ToString())
          .IgnoreError();
    
      return status;
    }
    
    // V1 Compat Bridge takes a TF Executor dialect and extracts the TF2 portion
    // and inserts it into a submodule. We just want to run the clustering
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

            "operation with numerical accuracy issues";
        BroadcastOptimizationRemark(XlaOptimizationRemark::INACCURATE_OPERATION,
                                    node.DebugString())
            .IgnoreError();
        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

                  stream_->parent()->device_ordinal());
              if (status_or_new_stream.ok()) {
                status_or_new_stream.value()
                    ->DoHostCallback([device_to_host_stream] {})
                    .IgnoreError();
              }
            }
          });
    }
    
    se::Stream* XlaDeviceContext::GetDeviceToDeviceStream() {
      DCHECK_GT(device_to_device_streams_.size(), 0);
      absl::MutexLock lock(&mu_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      // far enough to need valid metadata.
      tensorflow::tf2xla::internal::ConfigureMetadata(mlir_module_str, arg_shapes,
                                                      metadata_proto)
          .IgnoreError();
      bool use_tuple_args = true;
      std::vector<ShardingAndIndex> arg_core_mapping;
      std::vector<std::vector<xla::Shape>> per_core_arg_shapes;
      std::vector<std::unique_ptr<mlir::Pass>> custom_legalization_passes;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_unified_experimental_graph.cc

    // Register the tracing implemented in this file as the default tracing engine.
    static bool register_tracing = [] {
      RegisterTracingEngineFactory("graphdef", GraphTracingFactory);
      SetDefaultTracingEngine("graphdef").IgnoreError();
      return true;
    }();
    
    }  // namespace graph
    }  // namespace tracing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_executable_persistor.h

      // user if these moves are not known to be atomic.
      bool has_atomic_move = false;
      env->HasAtomicMove(persistent_cache_directory_, &has_atomic_move)
          .IgnoreError();
      if (!has_atomic_move) {
        LOG_EVERY_POW_2(WARNING)
            << "Filesystem for XLA persistent cache at "
            << persistent_cache_directory_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/loader.cc

                                                     outputs, run_metadata);
      // Be sure to call ReleaseCallable() regardless of the outcome of
      // RunCallable().
      session->ReleaseCallable(callable_handle).IgnoreError();
      return run_status;
    }
    
    // RunInitOp will return OK if the initialization op was run successfully.
    // An empty init_op_name indicates that there are no init ops to run.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.cc

        // Ignore errors from HandleDeviceError, since by definition the status is
        // already non-ok, so there's nothing extra to report if HandleDeviceError
        // itself returns an error.
        HandleDeviceError().IgnoreError();
      }
      return status;
    }
    
    XlaDeviceOpRegistrations* RegisterXlaDeviceKernels(
        const char* device, const char* jit_device,
        OpKernel* (*factory)(OpKernelConstruction*),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/kernels/xla_ops.cc

                       << ".  Falling back to TF function call.";
    
          BroadcastOptimizationRemark(
              XlaOptimizationRemark::UNIMPLEMENTED_OPERATION, status.ToString())
              .IgnoreError();
          executable = nullptr;
          pjrt_executable = nullptr;
          mutex_lock guard(cannot_compile_cluster_mu_);
          cannot_compile_cluster_ = true;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top