Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Gotype (0.09 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[COMPARE:.*]] = mhlo.compare GE, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[RESULT1:.*]] = mhlo.select %[[COMPARE]], %[[ARG1]], %[[ARG3]] : tensor<i1>, tensor<i64>
      // CHECK: %[[COMPARE_EQ:.*]] = mhlo.compare EQ, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[MIN:.*]] = mhlo.minimum %[[ARG2]], %[[ARG4]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                       OpBuilder &builder) {
      auto x_type = mlir::cast<RankedTensorType>(x.getType());
      auto y_type = mlir::cast<RankedTensorType>(y.getType());
      auto result_type = GetStaticBroadcastType(x_type, y_type, broadcast_dims);
      if (!result_type) {
        emitError(loc) << "could not binary broadcast " << x_type << ", " << y_type
                       << " with broadcast_dims = " << broadcast_dims;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	if !ptr.Type.IsPtr() || !types.Identical(n.Type(), ptr.Type.Elem()) {
    		base.FatalfAt(n.Pos(), "setHeapaddr %L with type %v", n, ptr.Type)
    	}
    
    	// Declare variable to hold address.
    	sym := &types.Sym{Name: "&" + n.Sym().Name, Pkg: types.LocalPkg}
    	addr := s.curfn.NewLocal(pos, sym, types.NewPtr(n.Type()))
    	addr.SetUsed(true)
    	types.CalcSize(addr.Type())
    
    	if n.Class == ir.PPARAMOUT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top