Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 410 for 1011 (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

            %2 = "tf._TPUDeviceOrdinalPlaceholder"() {logical_core = 0} : () -> tensor<i64>
            tf_device.return %2 : tensor<i64>
          }
          tf_executor.yield %1#0, %1#1 : tensor<i64>, tensor<i64>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests tf._TPUDeviceOrdinalPlaceholder cannot be updated when device ordinal
    // is missing.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/inl.go

    // and g has two calls to h(), and that f, g, and h are inlineable:
    //
    //	 1 func main() {
    //	 2     f()
    //	 3 }
    //	 4 func f() {
    //	 5     g()
    //	 6 }
    //	 7 func g() {
    //	 8     h()
    //	 9     h()
    //	10 }
    //	11 func h() {
    //	12     println("H")
    //	13 }
    //
    // Assuming the global tree starts empty, inlining will produce the
    // following tree:
    //
    //	[]InlinedCall{
    //	  {Parent: -1, Func: "f", Pos: <line 2>},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

            multimap.putAll("bar", asList(4, 5));
            multimap.putAll("foo", asList(6));
            multimap.putAll("baz", asList(7, 8));
            multimap.putAll("dog", asList(9));
            multimap.putAll("bar", asList(10, 11));
            multimap.putAll("cat", asList(12, 13, 14));
            return multimap.keySet().iterator();
          }
    
          @Override
          protected void verify(List<String> elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/while_op.mlir

      },  {
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1:2 = func.call @body(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> (tensor<*xi32>, tensor<*xf32>)
        "tfl.yield"(%1#0, %1#1) : (tensor<*xi32>, tensor<*xf32>) -> ()
      }) {is_stateless = false} : (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>)
      func.return %0#1 : tensor<1xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

        public static final PREFER_10_11 = prefer(10, 11)
        public static final PREFER_10_12 = prefer(10, 12)
        public static final PREFER_10_14 = prefer(10, 14)
        public static final PREFER_14_16 = prefer(14, 16)
        public static final RANGE_7_8 = range(7, 8)
        public static final RANGE_10_11 = range(10, 11)
        public static final RANGE_10_12 = range(10, 12)
        public static final RANGE_10_14 = range(10, 14)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  6. tensorflow/cc/client/client_session_test.cc

        });
      }
      barrier.Block();
    
      TF_EXPECT_OK(session.RunCallable(
          callable,
          {test::AsTensor<int>({2}, {1, 1}), test::AsTensor<int>({10}, {1, 1})},
          &outputs, nullptr, threadPoolOptions));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({20}, {1, 1}));
      TF_EXPECT_OK(session.ReleaseCallable(callable));
      ASSERT_GT(inter_op_threadpool->GetNumScheduleCalled(), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/IntMath.java

          case 0:
            return (k == 0) ? 1 : 0;
          case 1:
            return 1;
          case (-1):
            return ((k & 1) == 0) ? 1 : -1;
          case 2:
            return (k < Integer.SIZE) ? (1 << k) : 0;
          case (-2):
            if (k < Integer.SIZE) {
              return ((k & 1) == 0) ? (1 << k) : -(1 << k);
            } else {
              return 0;
            }
          default:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/tfl_while_op.mlir

      },  {
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1:2 = func.call @WhileOp_body(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> (tensor<*xi32>, tensor<*xf32>)
        "tfl.yield"(%1#0, %1#1) : (tensor<*xi32>, tensor<*xf32>) -> ()
      }) : (tensor<i32>, tensor<1xf32>) -> (tensor<i32>, tensor<1xf32>) loc("WhileOp")
      func.return %0#1 : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. src/crypto/cipher/cbc.go

    // Cipher block chaining (CBC) mode.
    
    // CBC provides confidentiality by xoring (chaining) each plaintext block
    // with the previous ciphertext block before applying the block cipher.
    
    // See NIST SP 800-38A, pp 10-11
    
    package cipher
    
    import (
    	"bytes"
    	"crypto/internal/alias"
    	"crypto/subtle"
    )
    
    type cbc struct {
    	b         Block
    	blockSize int
    	iv        []byte
    	tmp       []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

            and:
            failure.assertHasDescription "Value '$value' given for org.gradle.debug.port Gradle property is invalid (must be a number between 1 and 65535)"
    
            where:
            value << ["-1", "0", "1.1", "foo", " 1", "65536"]
        }
    
        @Flaky(because = "Sometimes it hangs for hours")
        @Issue('https://github.com/gradle/gradle/issues/18084')
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top