Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for check$1 (0.17 sec)

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

      func.return %4 : i32
    // CHECK-LABEL: squeezeAndReshape
    // CHECK:  "tfl.squeeze"(%arg0) <{squeeze_dims = [0]}> : (tensor<1x1x10xf32>) -> tensor<1x10xf32>
    // CHECK:  %1 = "tfl.squeeze"(%arg1) <{squeeze_dims = []}> : (tensor<?x10xf32>) -> tensor<*xf32>
    // CHECK:  %cst = arith.constant dense<[2, 5]> : tensor<2xi32>
    // CHECK:  %2 = "tfl.reshape"(%0, %cst) : (tensor<1x10xf32>, tensor<2xi32>) -> tensor<2x5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %0 = "tf.Bitcast"(%arg0) : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64x2xi16>
      // CHECK: %1 = "tf.Bitcast"(%arg0) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<8x16x32x64xf32>) -> tensor<8x16x32x64xi32>
      // CHECK: %2 = "tf.Identity"(%0) : (tensor<8x16x32x64x2xi16>) -> tensor<8x16x32x64x2xi16>
      // CHECK: return %1, %2
    }
    
    // CHECK-LABEL: testSameCastType
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    LogicalResult SelectOp::verify() {
      SelectOp op = *this;
      auto then_tensor = op.getThenValue().getType().cast<TensorType>();
      auto else_tensor = op.getElseValue().getType().cast<TensorType>();
      // Check (1).
      if (!AreCastCompatible({then_tensor, else_tensor}))
        return op.emitOpError() << "requires t and e have compatible shapes";
    
      // Get data rank (if exists).
      int data_rank;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    Lokhttp3/Cache;
    Lokhttp3/CacheControl$Companion;
    Lokhttp3/CacheControl;
    Lokhttp3/Call;
    Lokhttp3/Callback;
    Lokhttp3/CertificatePinner$Companion;
    Lokhttp3/CertificatePinner$Pin;
    Lokhttp3/CertificatePinner$check$1;
    Lokhttp3/CertificatePinner;
    Lokhttp3/CipherSuite$Companion$ORDER_BY_NAME$1;
    Lokhttp3/CipherSuite$Companion;
    Lokhttp3/CipherSuite;
    Lokhttp3/Connection;
    Lokhttp3/ConnectionPool;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    				Port:    echo.Port{ServicePort: 12346, Protocol: protocol.HTTP},
    				Timeout: time.Millisecond * 100,
    				Check:   check.OK(),
    			},
    		})
    	}
    }
    
    func externalNameCases(t TrafficContext) {
    	calls := func(name string, checks ...echo.Checker) []TrafficCall {
    		checks = append(checks, check.OK())
    		ch := []TrafficCall{}
    		for _, c := range t.Apps.A {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		}
    	}
    	stopm()
    	goto top
    }
    
    // pollWork reports whether there is non-background work this P could
    // be doing. This is a fairly lightweight check to be used for
    // background work loops, like idle GC. It checks a subset of the
    // conditions checked by the actual scheduler.
    func pollWork() bool {
    	if sched.runqsize != 0 {
    		return true
    	}
    	p := getg().m.p.ptr()
    	if !runqempty(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		return nil
    	}
    
    	// We can't check standard packages with gccgo.
    	if cfg.BuildContext.Compiler == "gccgo" && p.Standard {
    		return nil
    	}
    
    	// The sort package depends on internal/reflectlite, but during bootstrap
    	// the path rewriting causes the normal internal checks to fail.
    	// Instead, just ignore the internal rules during bootstrap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    function check-existing() {
      local running_in_terminal=false
      # May be false if tty is not allocated (for example with ssh -T).
      if [[ -t 1 ]]; then
        running_in_terminal=true
      fi
    
      if [[ ${running_in_terminal} == "true" || ${KUBE_UP_AUTOMATIC_CLEANUP} == "true" ]]; then
        if ! check-resources; then
          local run_kube_down="n"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Check compatibility of batch dimensions if both input shapes are known.
      // BatchMatMul should have exactly the same batch dimensions and
      // BatchMatMulV2 should have broadcastable batch dimensions.
      //
      // The last two dimensions are non-batch dimensions that don't need to
      // participate in batch dimension compatibility check.
      if (std::is_same<OpT, BatchMatMulOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Maps.java

           * prototype checker's JDK. However, the checker still sees the return type as plain
           * `Enumeration<?>`, probably because of one of the following two bugs (and maybe those two
           * bugs are themselves just symptoms of the same underlying problem):
           *
           * https://github.com/typetools/checker-framework/issues/3030
           *
           * https://github.com/typetools/checker-framework/issues/3236
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top