Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for default_container (0.78 sec)

  1. tensorflow/compiler/jit/xla_platform_info.cc

          // within) and create a new one.
          TF_RETURN_IF_ERROR(rm->Delete<PjRtDeviceCompiler>(rm->default_container(),
                                                            compiler_name));
          TF_RETURN_IF_ERROR(rm->Delete<DeviceCompilationProfiler>(
              rm->default_container(), profiler_name));
    
          deleted_old_device_compiler = true;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/session_utils.cc

      tensorflow::Var* var_ptr = nullptr;
      const auto& container = var_handle_op.getContainer().str();
      auto status = device->resource_manager()->Lookup(
          (container.empty() ? device->resource_manager()->default_container()
                             : container),
          var_handle_op.getSharedName().str(), &var_ptr);
      if (!device || !status.ok()) return nullptr;
      return var_ptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.cc

    }
    
    absl::Status ResetPjRtClient(const DeviceType& device_type) {
      ResourceMgr* rmgr = tfrt_global::GetTFGlobalResourceMgr();
      PjRtState* pjrt_state;
      TF_RETURN_IF_ERROR(rmgr->Lookup(rmgr->default_container(),
                                      kPjRtStateResourceName, &pjrt_state));
      TF_RETURN_IF_ERROR(pjrt_state->MovePjRtClientToUnused(device_type));
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/c/kernels.cc

      TF_StringView default_container_name_sv;
      default_container_name_sv.data =
          cc_ctx->resource_manager()->default_container().data();
      default_container_name_sv.len =
          cc_ctx->resource_manager()->default_container().length();
      return default_container_name_sv;
    }
    
    TF_StringView TF_GetOpKernelRequestedInput(TF_OpKernelContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

                          GetCompilationDeviceType(platform_info.device_type()));
    
      XlaDeviceCompiler* xla_device_compiler;
      TF_RETURN_IF_ERROR(rm->LookupOrCreate<XlaDeviceCompiler>(
          rm->default_container(), "xla_device_compiler", &xla_device_compiler,
          [&](XlaDeviceCompiler** xla_device_compiler) {
            return BuildXlaDeviceCompiler(ctx->device(), ctx->function_library(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util.cc

        auto rm = ctx->resource_manager();
        TF_RETURN_IF_ERROR(rm->LookupOrCreate<
                           gpu::GpuServingDeviceSelectorResource>(
            rm->default_container(), gpu::kGpuServingDeviceSelectorResourceName,
            &device_selector_resource,
            [&](gpu::GpuServingDeviceSelectorResource** device_selector_resource) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    					return result, err
    				}
    			case envVar.ValueFrom.ResourceFieldRef != nil:
    				defaultedPod, defaultedContainer, err := kl.defaultPodLimitsForDownwardAPI(pod, container)
    				if err != nil {
    					return result, err
    				}
    				runtimeVal, err = containerResourceRuntimeValue(envVar.ValueFrom.ResourceFieldRef, defaultedPod, defaultedContainer)
    				if err != nil {
    					return result, err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		// implicitly non-privileged container + no propagation
    		core.VolumeMount{Name: "foo", MountPath: "/foo"},
    		defaultContainer,
    		false,
    	}, {
    		// implicitly non-privileged container + HostToContainer
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationHostToContainer},
    		defaultContainer,
    		false,
    	}, {
    		// non-privileged container + None
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top