Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,825 for Auto (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Remove return values forwarded from unused arguments.
      auto return_op = func_op.front().getTerminator();
      auto old_return_vals = llvm::to_vector<8>(return_op->getOperands());
      int64_t skipped_retvals = 0;
      for (auto entry : llvm::enumerate(old_return_vals)) {
        auto return_val = entry.value();
        if (auto arg = mlir::dyn_cast<BlockArgument>(return_val)) {
          auto it = infos.find(arg.getArgNumber());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      auto type_from_array_attr = [&node, &idx, &builder](
                                      absl::string_view output_shape_attr,
                                      absl::string_view element_type_attr) {
        auto* output_shapes = node.attrs().Find(output_shape_attr);
        auto* element_types = node.attrs().Find(element_type_attr);
        const auto& output_shape = output_shapes->list().shape(idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

    void RaiseTargetSubgraphsPass::runOnOperation() {
      ModuleOp module = getOperation();
      auto& side_effect_analysis = getAnalysis<TF::SideEffectAnalysis>();
      SmallVector<func::FuncOp> funcs(module.getOps<func::FuncOp>());
      int func_count = -1;
      for (auto func : funcs) {
        const auto& info = side_effect_analysis.GetAnalysisForFunc(func);
        for (auto& block : func) {
          OpBuilder builder = OpBuilder::atBlockBegin(&block);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/function.cc

      TF_RETURN_IF_ERROR(ctx->RegisterFunction(trace.get()));
      auto cleanup = absl::MakeCleanup(
          [fname, ctx]() { ctx->RemoveFunction(fname).IgnoreError(); });
      auto call_op = AbstractOperationPtr(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(
          call_op->Reset(fname.c_str(), /*raw_device_name=*/nullptr));
      for (auto t : inputs) {
        TF_RETURN_IF_ERROR(call_op->AddInput(t));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto result_value = gather_nd_first.getResult();
        auto params_value = gather_nd_first.getParams();
        auto indices_value = gather_nd_first.getIndices();
    
        auto result_type = dyn_cast<RankedTensorType>(result_value.getType());
        auto params_type = dyn_cast<RankedTensorType>(params_value.getType());
        auto indices_type = dyn_cast<RankedTensorType>(indices_value.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

    using ::testing::NotNull;
    using ::tsl::testing::StatusIs;
    
    PJRT_Buffer* CreateCBuffer() {
      auto status = pjrt::PjrtApi(DEVICE_CPU);
      if (!status.ok()) {
        CHECK_OK(pjrt::SetPjrtApi(DEVICE_CPU, GetPjrtApi()));
      }
      auto pjrt_client = xla::GetCApiClient(DEVICE_CPU);
      CHECK_OK(pjrt_client.status());
      auto c_api_client = down_cast<xla::PjRtCApiClient*>(pjrt_client->get());
      std::vector<int32_t> data(1, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 16:29:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

        @Override
        public DBDef assistCurrentDBDef() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DataSource assistDataSource() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
        public DBMetaProvider assistDBMetaProvider() {
            // TODO Auto-generated method stub
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      // maximal sharding then only the specified logical device take the value as
      // the input.
      for (const auto& sharding_attr_and_index : llvm::enumerate(sharding_attrs)) {
        const auto& sharding_attr = sharding_attr_and_index.value();
        const auto input_index = sharding_attr_and_index.index();
        const auto& input_value = cluster_func_inputs[input_index];
    
        xla::OpSharding sharding;
        if (DecodeShardingAttribute(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/next_pluggable_device/c_api.cc

        void (*delete_func)(void*), TF_Status* status) {
      auto* cc_ctx = reinterpret_cast<tensorflow::OpKernelContext*>(ctx);
      auto* resource_mgr = cc_ctx->resource_manager();
      tensorflow::core::RefCountPtr<tensorflow::PluginResource>
          tf_plugin_resource_ptr;
      tensorflow::PluginResource* tf_plugin_resource = nullptr;
    
      auto cc_status = resource_mgr->LookupOrCreate<tensorflow::PluginResource>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_pgo_auto.txt

    go install -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go run -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go test -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go.*a1_test.go'
    stderr 'compile.*-pgoprofile=.*external_test.go'
    
    # go list commands should succeed as usual
    go list -pgo=auto ./a/a1
    
    go list -test -pgo=auto ./a/a1
    
    go list -deps -pgo=auto ./a/a1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top