Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for scast (0.06 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // division can result in strange behavior.
    //
    //      floordiv = cast(floordiv(cast(left), cast(right))))
    //
    //   %left_cast = cast(%left)
    //   %right_cast = cast(%right)
    //   %div = div(%left, %left)
    //   %floored = floor(%div)
    //   %floored_cast = cast(%floored)
    //
    // Required to manually specify the intermediate types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %19 = "tf.StringLength"(%arg0) {device = "", unit = "BYTE"} : (tensor<1x!tf_type.string>) -> tensor<1xi32>
      %20 = "tf.ExpandDims"(%19, %7) {device = ""} : (tensor<1xi32>, tensor<i32>) -> tensor<1x1xi32>
      %21 = "tf.Cast"(%20) {Truncate = false, device = ""} : (tensor<1x1xi32>) -> tensor<1x1xi64>
      %22 = "tf.Reshape"(%21, %12) {device = ""} : (tensor<1x1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-SAME:   {broadcast_dimensions = dense<3> : tensor<1xi64>}
      // CHECK: %[[RESULT:.+]] = mhlo.add %arg0, %[[ARG1_BCAST]]
      // CHECK: %[[CAST:.+]] = tensor.cast %[[RESULT]] : tensor<?x?x?x?xi32> to tensor<?x?x?x512xi32>
      // CHECK: return %[[CAST]] : tensor<?x?x?x512xi32>
      %0 = "tf.BiasAdd"(%arg0, %arg1) {data_format = "NHWC"} : (tensor<?x?x?x?xi32>, tensor<512xi32>) -> tensor<?x?x?x512xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		// in disjoint (nonoverlapping) memory or in exactly the same location.
    		// There are 2 cases where this isn't true:
    		//  1) Using unsafe you can arrange partial overlaps.
    		//  2) Since Go 1.17, you can use a cast from a slice to a ptr-to-array.
    		//     https://go.dev/ref/spec#Conversions_from_slice_to_array_pointer
    		//     This feature can be used to construct partial overlaps of array types.
    		//       var a [3]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    				p:         wd.p[allowed:],
    				endStream: wd.endStream,
    			},
    			done: wr.done,
    		}
    		return consumed, rest, 2
    	}
    
    	// The frame is consumed whole.
    	// NB: This cast cannot overflow because allowed is <= math.MaxInt32.
    	wr.stream.flow.take(int32(len(wd.p)))
    	return wr, empty, 1
    }
    
    // String is for debugging only.
    func (wr http2FrameWriteRequest) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top