Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 240 for unpacked (0.39 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    				check.methods[base] = append(check.methods[base], m.obj)
    			}
    		}
    	}
    }
    
    // unpackRecv unpacks a receiver type and returns its components: ptr indicates whether
    // rtyp is a pointer receiver, rname is the receiver type name, and tparams are its
    // type parameters, if any. The type parameters are only unpacked if unpackParams is
    // set. If rname is nil, the receiver is unusable (i.e., the source has a bug which we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/go/types/resolver.go

    			check.methods[base] = append(check.methods[base], m.obj)
    		}
    	}
    }
    
    // unpackRecv unpacks a receiver type and returns its components: ptr indicates whether
    // rtyp is a pointer receiver, rname is the receiver type name, and tparams are its
    // type parameters, if any. The type parameters are only unpacked if unpackParams is
    // set. If rname is nil, the receiver is unusable (i.e., the source has a bug which we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-communication.mlir

      },  {
        "mhlo.return"(%arg1) : (tensor<f32>) -> ()
      }) : (tensor<i1>) -> tensor<f32>
      func.return %1 : tensor<f32>
    }
    
    // -----
    
    // Tests `mhlo.if` with tuple arg not from a `mhlo.tuple` is unpacked.
    
    // CHECK-LABEL: func @if_unpack_tuple_arg
    // CHECK-SAME:  ([[ARG0:%.*]]: tensor<i1>, [[ARG1:%.*]]: tuple<tensor<f32>, tensor<f32>>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 18:24:20 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. src/os/file.go

    // if a call that takes a file name fails, such as [Open] or [Stat], the error
    // will include the failing file name when printed and will be of type
    // [*PathError], which may be unpacked for more information.
    //
    // The os interface is intended to be uniform across all operating systems.
    // Features not generally available appear in the system-specific package syscall.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[UNPACK:.*]]:2 = "tf.Unpack"(%[[NEG]]) <{axis = 1 : i64}> {device = ""}
      %unpacked:2 = "tf.Unpack"(%arg0) {axis = 1 : i64, device = ""}
                    : (tensor<?x2xf32>) -> (tensor<?xf32>, tensor<?xf32>)
      %0 = "tf.Neg"(%unpacked#0): (tensor<?xf32>) -> tensor<?xf32>
      %1 = "tf.Neg"(%unpacked#1): (tensor<?xf32>) -> tensor<?xf32>
    
      // CHECK: return %[[UNPACK]]#0, %[[UNPACK]]#1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto in_count = rewriter.create<MulOp>(
            loc, tensorflow::GetTypeFromTFTensorShape({}, out_size_element_ty),
            in_y, in_x);
    
        // Unpack and separate the out width/height.
        auto split_out_size = rewriter.create<UnpackOp>(
            loc, TypeRange({scalar_dim_ty, scalar_dim_ty}), out_size);
    
        auto out_y = split_out_size.getResult(0);
        auto out_x = split_out_size.getResult(1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Hoist coefficient-wise unary operation out of the Unpack op:
    //
    //   %unpacked:N = "tf.Unpack"(%0)
    //   %neg0 = "tf.Neg"(%unpacked#0)
    //   %neg1 = "tf.Neg"(%unpacked#1)
    //   ...
    //   %negN-1 = "tf.Neg"(%unpacked:N-1)
    //
    // Rewrite it to:
    //
    //   %neg = "tf.Neg"(%0)
    //   %unpacked:N = "tf.Unpack"(%neg)
    class HoistCwiseUnaryOutOfUnpack : public OpRewritePattern<UnpackOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/archives/kotlin",files="build.gradle.kts[tags=unpack-archive-example]"]
    include::sample[dir="snippets/files/archives/groovy",files="build.gradle[tags=unpack-archive-example]"]
    ====
    
    As with a normal copy, you can control which files are unpacked via <<#sec:filtering_files,filters>> and even <<#sec:renaming_files,rename files>> as they are unpacked.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            unpack_output_type.begin(), num_unpacked,
            tensorflow::GetTypeFromTFTensorShape(output_shape, input_element_type));
        auto unpack = rewriter.create<TF::UnpackOp>(loc, unpack_output_type, input,
                                                    /*axis=*/0);
    
        // Concatenate the unpacked tensors along the first dimension.
        // Since we're concatenating along first dimension, change its dim size to
        // -1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Use `getLocal()` and `local(Action)` instead.
    
    ==== Failing to pack or unpack cached results will now fail the build
    
    In the past, when Gradle encountered a problem while packing the results of a cached task, Gradle would ignore the problem and continue running the build.
    
    When encountering a corrupt cached artifact, Gradle would remove whatever was already unpacked and re-execute the task to make sure the build had a chance to succeed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top