Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for node_device (0.09 sec)

  1. src/os/os_test.go

    	pre := fmt.Sprintf("%s(%q): ", statname, devNullName)
    	if fi.Size() != 0 {
    		t.Errorf(pre+"wrong file size have %d want 0", fi.Size())
    	}
    	if fi.Mode()&ModeDevice == 0 {
    		t.Errorf(pre+"wrong file mode %q: ModeDevice is not set", fi.Mode())
    	}
    	if fi.Mode()&ModeCharDevice == 0 {
    		t.Errorf(pre+"wrong file mode %q: ModeCharDevice is not set", fi.Mode())
    	}
    	if fi.Mode().IsRegular() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        tf_device.return %identity : tensor<i32>
      }) {device = "some_device"} : () -> (tensor<i32>)
      return %launch : tensor<i32>
    }
    ```
    
    will be transformed into:
    
    ```mlir
    func @computation(%arg0: tensor<i32>) -> tensor<i32> {
      %launch = "tf_device.launch_func"(%arg0) {device = "some_device", func = @_func} : (tensor<i32>) -> tensor<i32>
      return %launch : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top