Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for IsSame (0.12 sec)

  1. src/runtime/proc.go

    		}
    	} else if trace.ok() {
    		traceRelease(trace)
    	}
    	unlock(&sched.lock)
    }
    
    // The same as entersyscall(), but with a hint that the syscall is blocking.
    
    // entersyscallblock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK:      metadata
        // CHECK-SAME: args
        // CHECK-SAME: dtype: DT_INT32
        // CHECK-SAME: shape
        // CHECK-SAME: dim
        // CHECK-SAME: size: 8
        // CHECK-SAME: kind: PARAMETER
        // CHECK-SAME: sharding
        // CHECK-SAME: type: MAXIMAL
        // CHECK-SAME: tile_assignment_dimensions: 1
        // CHECK-SAME: tile_assignment_devices: 0
        // CHECK-SAME: retvals
        // CHECK-SAME: sharding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    }
    
    // CHECK-LABEL: reduce_window_with_max
    // CHECK-SAME: %[[ARG0:.*]]: tensor<2x9x10x3x!quant.uniform<i8:f32, 3.000000e-01:-5>>
    // CHECK-SAME: %[[ARG1:.*]]: tensor<!quant.uniform<i8:f32, 3.000000e-01:-5>>
    // CHECK: %[[MAX_POOL:.*]] = "tfl.max_pool_2d"(%[[ARG0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError("'input' and 'output' should have the same rank.");
        }
    
        // Check if input and output shapes are same
        for (int i = 0; i < input_type.getRank(); i++) {
          if (input_type.getDimSize(i) != output_type.getDimSize(i)) {
            return op.emitOpError(
                "'input' and 'output' should have the same shape.");
          }
        }
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. fastapi/routing.py

                    should have all the fields, including the ones that have the same value
                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

      func.return %0, %1, %2, %3 : tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>
    }
    
    // CHECK-LABEL: func @tflite_custom_nms(
    // CHECK-SAME:                          %[[VAL_0:.*]]: tensor<1x100x4xf32>,
    // CHECK-SAME:                          %[[VAL_1:.*]]: tensor<1x100x91xf32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	case 4 << 10:
    		return &bufioWriter4kPool
    	}
    	return nil
    }
    
    // newBufioReader should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gobwas/ws
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname newBufioReader
    func newBufioReader(r io.Reader) *bufio.Reader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        const auto [stride_height, stride_width] = GetStrides(op);
    
        // Below convolution arithmetic for `SAME` padding calculation is
        // referenced from
        // https://www.tensorflow.org/api_docs/python/tf/nn/convolution. The
        // following condition must hold true for padding to be `SAME`:
        // output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides[i])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.Conv3D"(%arg0, %arg1) {padding = "SAME", strides = [2, 1, 1, 1, 1]} : (tensor<?x?x?x?x?xf32>, tensor<?x?x?x?x?xf32>) -> tensor<?x?x?x?x?xf32>
      func.return %0: tensor<?x?x?x?x?xf32>
      // CHECK-LABEL: conv3d_invalid_strides
      // CHECK:  [[BCT:%.*]] = "tf.Conv3D"(%arg0, %arg1) <{padding = "SAME", strides = [2, 1, 1, 1, 1]}> : (tensor<?x?x?x?x?xf32>, tensor<?x?x?x?x?xf32>) -> tensor<?x?x?x?x?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

        return new TreeMap<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code TreeMap} instance with the same mappings as the specified map
       * and using the same ordering as the specified map.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link
       * ImmutableSortedMap#copyOfSorted(SortedMap)} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top