Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for 10x (0.19 sec)

  1. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    
    go test -fuzz=FuzzTarget -fuzztime=10x .
    stdout 'entries: 5'
    
    -- go.mod --
    module fuzztest
    
    go 1.17
    
    -- fuzz_test.go --
    package fuzz
    
    import "testing"
    
    func FuzzTarget(f *testing.F) {
        f.Add(int(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/canonicalize.mlir

    }
    
    // -----
    
    // CHECK-LABEL: redundant_cast_with_quant_type
    func.func @redundant_cast_with_quant_type(%arg0: tensor<10x!quant.uniform<i8:f32, 0.0039133410900831223:-128>>) -> (tensor<10xi32>) {
      %0 = "tfr.cast"(%arg0) : (tensor<10x!quant.uniform<i8:f32, 0.0039133410900831223:-128>>) -> !tfr.tensor
      %1 = tfr.quant_raw_data(%0) : (!tfr.tensor) -> !tfr.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.maximum"(%arg0, %arg1) : (tensor<10x!quant.uniform<u8:f32, 1.0>>, tensor<10x!quant.uniform<u8:f32, 1.0>>) -> tensor<10x!quant.uniform<u8:f32, 1.0>>
      func.return %0 : tensor<10x!quant.uniform<u8:f32, 1.0>>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

        output_quantization_axis = -1 : i64,
        output_quantization_max_val = 127 : i64,
        output_quantization_min_val = -128 : i64
      } : (
        tensor<10x!tf_type.qint8>, tensor<f32>, tensor<i32>, tensor<f32>,
        tensor<i32>
      ) -> tensor<10x!tf_type.qint8>
      %2 = "tf.Cast"(%1) {} : (tensor<10x!tf_type.qint8>) -> tensor<10xi8>
      return %2 : tensor<10xi8>
    })mlir";
      TF_ASSERT_OK_AND_ASSIGN(auto input, CreateRandomI8Literal({10}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%# 08x", "\xab", "00000xab"},
    	{"%10x", "\xab\xcd", "      abcd"},
    	{"% 10x", "\xab\xcd", "     ab cd"},
    	{"%#10x", "\xab\xcd", "    0xabcd"},
    	{"%# 10x", "\xab\xcd", " 0xab 0xcd"},
    	{"%010x", "\xab\xcd", "000000abcd"},
    	{"% 010x", "\xab\xcd", "00000ab cd"},
    	{"%#010x", "\xab\xcd", "00000xabcd"},
    	{"%# 010x", "\xab\xcd", "00xab 0xcd"},
    	{"%-10X", "\xab", "AB        "},
    	{"% -010X", "\xab", "AB        "},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # The fuzz function writes the crashing input to "want" before exiting.
    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    ! exists want
    ! go test -fuzz=. -parallel=1 -fuzztime=110x -fuzzminimizetime=10x -v
    stdout '^\s+fuzzing process hung or terminated unexpectedly: exit status'
    stdout 'Failing input written to testdata'
    
    # Run the fuzz target without fuzzing. The fuzz function is called with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/simple_hardware.h

      // The larger the value is, the more preferrable over CPU.
      // If the value > 1, means the hardware has advantage over CPU.
      // If the value < 1, means CPU is more preferred.
      // If we specify 10.0, meaning the hardware is 10x faster than CPU.
      // The value should be > 0.
      // TODO(renjieliu): Consider add an interface for more detailed customization,
      // for example, users should be able to specify some ops are preferred and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. internal/grid/benchmark_test.go

    	const responses = 10
    	// Create n managers.
    	for _, remote := range grid.Managers {
    		// Register a single handler which echos the payload.
    		errFatal(remote.RegisterStreamingHandler(handlerTest, StreamHandler{
    			// Send 10x response.
    			Handle: func(ctx context.Context, payload []byte, _ <-chan []byte, out chan<- []byte) *RemoteErr {
    				for i := 0; i < responses; i++ {
    					toSend := GetByteBuffer()[:0]
    					toSend = append(toSend, byte(i))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz.txt

    go test -run=None -fuzz=FuzzPassString corpustesting/fuzz_testdata_corpus_test.go -fuzztime=10x
    stdout ok
    ! stdout FAIL
    
    # Fuzzing pass with testdata and f.Add seed corpus
    go test -run=FuzzPassString -fuzz=FuzzPassString corpustesting/fuzz_testdata_corpus_test.go -fuzztime=10x
    stdout ok
    ! stdout FAIL
    
    # Test panic with malformed seed corpus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. tools/docker-builder/crane.go

    // staging folder, to docker context, to a tar file, etc, we directly read the original source files
    // into memory and stream them into an in memory tar buffer.
    //
    // Building in this way ends up being roughly 10x faster than docker. Future work to enable
    // sha256-simd (https://github.com/google/go-containerregistry/issues/1330) makes this even faster -
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top