Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 228 for unroll (0.16 sec)

  1. src/runtime/mbitmap.go

    		// Handle the case where we have no malloc header.
    		scanSize = span.writeHeapBitsSmall(x, dataSize, typ)
    	} else {
    		if typ.Kind_&abi.KindGCProg != 0 {
    			// Allocate space to unroll the gcprog. This space will consist of
    			// a dummy _type value and the unrolled gcprog. The dummy _type will
    			// refer to the bitmap, and the mspan will refer to the dummy _type.
    			if span.spanclass.sizeclass() != 0 {
    				throw("GCProg for type that isn't large")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    //   %1 = mhlo.reshape %param : (1xCxZ) -> CxZ
    //   mhlo.dot_general %input, %1 {batch_dims = []}
    // To:
    //   mhlo.dot_general %input, %param {batch_dims = [0]}
    //
    // This usage will mostly come from tf-unroll-batch-matmul, so it's fine to only
    // handle the case where batching dim is the leftmost dim.
    LogicalResult ConvertReshapeDotRhsToBatchedDot(mhlo::DotGeneralOp dot,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateLayoutAssignmentPass();
    
    // Guarantee that all FuncOp's have a single use.
    std::unique_ptr<OperationPass<ModuleOp>> CreateGuaranteeAllFuncsOneUsePass();
    
    // Optional pass which will unroll BatchMatMul and use only MatMul
    std::unique_ptr<OperationPass<func::FuncOp>> CreateUnrollBatchMatMulPassPass();
    
    // Optional pass which will map TF BatchMatMul to TF Einsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        The pass also works across control flow and functional calls.
      }];
    }
    
    
    
    def UnrollBatchMatMulPass : Pass<"tf-unroll-batch-matmul", "mlir::func::FuncOp"> {
      let summary = "Unroll TF BatchMatMul op into Reshape, Slice, MatMul, Pack ops.";
      let constructor = "TF::CreateUnrollBatchMatMulPassPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/unfold.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    // Unfold expands vendor extensions of a structural schema.
    // It mutates the receiver.
    func (s *Structural) Unfold() *Structural {
    	if s == nil {
    		return nil
    	}
    
    	mapper := Visitor{
    		Structural: func(s *Structural) bool {
    			if !s.XIntOrString {
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 11 16:10:43 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/unfold-large-splat-constant.mlir

    // RUN: tf-opt %s -unfold-large-splat-constant | FileCheck %s
    
    // CHECK-LABEL: @unfold_large_constant_splat
    func.func @unfold_large_constant_splat() -> (tensor<10x10xf32>, tensor<1000x1000xf32>) {
      %0 = arith.constant dense<0.00000e+00> : tensor<10x10xf32>
      %1 = arith.constant dense<1.00000e+00> : tensor<1000x1000xf32>
      func.return %0, %1 : tensor<10x10xf32>, tensor<1000x1000xf32>
    
      // CHECK-DAG: %cst = arith.constant dense<0.000000e+00> : tensor<10x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 781 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

      tf_device.replicate ([%var0, %var1] as %rvar,
                           [%state_var0, %state_var1] as %rstate) {
        tf.TPUReshardVariablesOp(%rvar, %default_format, %rstate)
      }
    ```
    ### `-tf-unroll-batch-matmul`
    
    _Unroll TF BatchMatMul op into Reshape, Slice, MatMul, Pack ops._
    
    ### `-tf-verify-for-export`
    
    _Verify module is suitable for export back to TF Graph_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. releasenotes/notes/50267.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 50248
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:52 UTC 2024
    - 234 bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/spock/Spock2FilteringIntegrationTest.groovy

                .assertTestPassed("$testMethod [param: value1, #0]")
                .assertTestPassed("$testMethod [param: value2, #1]")
    
            where:
            testMethod << ["sub unrolled test", "super unrolled test", "super super unrolled test"]
        }
    
        def "can filter unrolled tests with parameter name in test header"() {
            when:
            succeeds("test", "--tests", "SubClass.$testMethod param=#param")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. releasenotes/notes/50355.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 50355
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 18:04:40 UTC 2024
    - 223 bytes
    - Viewed (0)
Back to top