Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 202 for Advice (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      assigned_id->setAttr(kICIWeightDistributionMlirBridgeMarker,
                           before_cluster_builder.getBoolAttr(true));
      std::string device = tensorflow::GetDeviceAliasForHostOfLogicalCore(0);
      LaunchOp launch = tensorflow::WrapOpInLaunch(
          &before_cluster_builder, val_bcast.getLoc(), assigned_id, device);
    
      Value all_reduce =
          CreateAllReduce(replicate, inner_builder, launch.getResult(0));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %1 = "tf.Const"() {device = "", dtype = f32, value = dense<0.000000e+00>: tensor<16x28xf32>} : () -> tensor<16x28xf32>
      %2 = "tf.Const"() {device = "", dtype = f32, value = dense<0.000000e+00>: tensor<16x16xf32>} : () -> tensor<16x16xf32>
      %3 = "tf.Const"() {device = "", dtype = f32, value = dense<0.000000e+00>: tensor<16xf32>} : () -> tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      DenseMap<Value, ResourceInfo> resource_infos_;
      // The set of regions we already discovered.
      DenseSet<Region*> discovered_;
      // Identifiers about mutable variables.
      // All variables are identified by (device, container, shared_name).
      DenseSet<std::tuple<llvm::StringRef, llvm::StringRef, llvm::StringRef>>
          mutable_variables_;
    };
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/quantize.mlir

        %4 = "tf.LayerNorm"(%a1, %a2, %a3, %a4) {_tfl_quant_trait = "fully_quantizable", device = ""} : (tensor<128x128xf32>, tensor<1xf32>, tensor<1xf32>, tensor<1xi32>) -> tensor<128x128xf32>
       "tfl.yield"(%4) : (tensor<128x128xf32>) -> ()
      }) {_tfl_quant_trait = "fully_quantizable", device = ""} : (tensor<128x128xf32>, tensor<1xf32>, tensor<1xf32>, tensor<1xi32>) -> tensor<128x128xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager_test.go

    					util.VolumeGidAnnotationKey: tc.gidAnnotation,
    				},
    			},
    			Spec: v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					RBD: &v1.RBDPersistentVolumeSource{
    						RBDImage: "fake-device",
    					},
    				},
    				ClaimRef: &v1.ObjectReference{
    					Name:      claim.ObjectMeta.Name,
    					Namespace: claim.ObjectMeta.Namespace,
    				},
    				VolumeMode: &fs,
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    // NodeResizeOptions contain options to be passed for node expansion.
    type NodeResizeOptions struct {
    	VolumeSpec *Spec
    
    	// DevicePath - location of actual device on the node. In case of CSI
    	// this just could be volumeID
    	DevicePath string
    
    	// DeviceMountPath location where device is mounted on the node. If volume type
    	// is attachable - this would be global mount path otherwise
    	// it would be location where volume was mounted for the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/main/resources/footer.html

            }
            return currentChapterFileName;
        }
    
        // The media query indicating that a device is a desktop.
        // The `min-width: 64rem` definition should be aligned to
        // the one of `css/manual.css`.
        const desktopMediaQuery = window.matchMedia("screen and (min-width: 64rem)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    		resOpts, err := cm.draManager.GetResources(pod, container)
    		if err != nil {
    			return nil, err
    		}
    		// NOTE: Passing CDI device names as annotations is a temporary solution
    		// It will be removed after all runtimes are updated
    		// to get CDI device names from the ContainerConfig.CDIDevices field
    		opts.Annotations = append(opts.Annotations, resOpts.Annotations...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    func makeDevices(opts *kubecontainer.RunContainerOptions) []*runtimeapi.Device {
    	devices := make([]*runtimeapi.Device, len(opts.Devices))
    
    	for idx := range opts.Devices {
    		device := opts.Devices[idx]
    		devices[idx] = &runtimeapi.Device{
    			HostPath:      device.PathOnHost,
    			ContainerPath: device.PathInContainer,
    			Permissions:   device.Permissions,
    		}
    	}
    
    	return devices
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/plugin_manager_test.go

    	defer close(stopChan)
    	go func() {
    		sourcesReady := config.NewSourcesReady(func(_ sets.Set[string]) bool { return true })
    		pluginManager.Run(sourcesReady, stopChan)
    	}()
    
    	// Add handler for device plugin
    	fakeHandler := newFakePluginHandler()
    	pluginManager.AddHandler(registerapi.DevicePlugin, fakeHandler)
    
    	const maxDepth = 3
    	// Make sure the plugin manager is aware of the socket in subdirectories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top