Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for 214 (0.09 sec)

  1. test/fixedbugs/issue60982.go

    		return 207
    	case 208:
    		return 208
    	case 209:
    		return 209
    	case 210:
    		return 210
    	case 211:
    		return 211
    	case 212:
    		return 212
    	case 213:
    		return 213
    	case 214:
    		return 214
    	case 215:
    		return 215
    	case 216:
    		return 216
    	case 217:
    		return 217
    	case 218:
    		return 218
    	case 219:
    		return 219
    	case 220:
    		return 220
    	case 221:
    		return 221
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        %20 = "tf.Sum"(%loss, %6) {keep_dims = false} : (tensor<2xf32>, tensor<1xi32>) -> tensor<f32>
        %21 = "tf.Mul"(%20, %5) : (tensor<f32>, tensor<f32>) -> tensor<f32>
        %22 = "tf.Sum"(%21, %4) {keep_dims = false} : (tensor<f32>, tensor<0xi32>) -> tensor<f32>
        %23 = "tf.CrossReplicaSum"(%22, %3) : (tensor<f32>, tensor<1x2xi32>) -> tensor<f32>
        %24 = "tf.Softmax"(%18) : (tensor<2x1001xf32>) -> tensor<2x1001xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_riscv64.s

    //
    // System calls and other sys.stuff for riscv64, Linux
    //
    
    #include "textflag.h"
    #include "go_asm.h"
    
    #define AT_FDCWD -100
    #define CLOCK_REALTIME 0
    #define CLOCK_MONOTONIC 1
    
    #define SYS_brk			214
    #define SYS_clock_gettime	113
    #define SYS_clone		220
    #define SYS_close		57
    #define SYS_connect		203
    #define SYS_exit		93
    #define SYS_exit_group		94
    #define SYS_faccessat		48
    #define SYS_futex		98
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. docs/ja/docs/advanced/custom-response.md

    ```Python hl_lines="2  9"
    {!../../../docs_src/custom_response/tutorial006.py!}
    ```
    
    ### `StreamingResponse`
    
    非同期なジェネレータか通常のジェネレータ・イテレータを受け取り、レスポンスボディをストリームします。
    
    ```Python hl_lines="2  14"
    {!../../../docs_src/custom_response/tutorial007.py!}
    ```
    
    #### `StreamingResponse` をファイルライクなオブジェクトとともに使う
    
    ファイルライクなオブジェクト (例えば、 `open()` で返されたオブジェクト) がある場合、 `StreamingResponse` に含めて返すことができます。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        ByteArrayDataOutput out = ByteStreams.newDataOutput();
        out.writeChars("r\u00C9sum\u00C9");
        // need to remove byte order mark before comparing
        byte[] expected = Arrays.copyOfRange(utf16ExpectedWithBom, 2, 14);
        assertThat(out.toByteArray()).isEqualTo(expected);
      }
    
      @AndroidIncompatible // https://issuetracker.google.com/issues/37074504
      public void testUtf16Expected() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_loong64.s

    #define SYS_gettid		178
    #define SYS_futex		98
    #define SYS_sched_getaffinity	123
    #define SYS_exit_group		94
    #define SYS_tgkill		131
    #define SYS_openat		56
    #define SYS_clock_gettime	113
    #define SYS_brk			214
    #define SYS_pipe2		59
    #define SYS_timer_create	107
    #define SYS_timer_settime	110
    #define SYS_timer_delete	111
    
    // func exit(code int32)
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.cc

      // resource or a constant.
      // The reason we optimized this code is because functions can have a lot of
      // captured arguments. For example, the backward pass of ResNet50 takes in all
      // 214 variables and a similar number of activations.
      SinglePassSearch constants_search(constant_arg_indices);
      SinglePassSearch resources_search(resource_arg_indices);
      for (size_t i = 0; i < fbody->arg_types.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/IntMathTest.java

        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1 << 30) - 1, -1, Integer.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
        assertMean(0, Integer.MIN_VALUE + 2, Integer.MAX_VALUE);
        assertMean(0, 0, 1);
        assertMean(-1, -1, 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/einsum.mlir

      func.return %0 : tensor<2x5x4xf32>
      // CHECK-LABEL: einsum_matrixdotprod
      // CHECK-DAG: %[[cst:.*]] = arith.constant dense<[2, 5, 21]> : tensor<3xi64>
      // CHECK-DAG: %[[cst_1:.*]] = arith.constant dense<[21, 4]> : tensor<2xi64>
      // CHECK: %[[v0:.*]] = "tf.Reshape"(%arg0, %[[cst]]) : (tensor<2x5x7x3xf32>, tensor<3xi64>) -> tensor<2x5x21xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_arm64.s

    #define SYS_futex		98
    #define SYS_sched_getaffinity	123
    #define SYS_exit_group		94
    #define SYS_clock_gettime	113
    #define SYS_faccessat		48
    #define SYS_socket		198
    #define SYS_connect		203
    #define SYS_brk			214
    #define SYS_timer_create	107
    #define SYS_timer_settime	110
    #define SYS_timer_delete	111
    
    TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	code+0(FP), R0
    	MOVD	$SYS_exit_group, R8
    	SVC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top