Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 302 for shame (0.11 sec)

  1. src/runtime/mbitmap.go

    // Since p is a uintptr, it would not be adjusted if the stack were to move.
    //
    // findObject should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname findObject
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    		direct = make(map[string]bool)
    	} else {
    		// TODO(bcmills): It seems like a shame to allocate and copy a map here when
    		// it will only rarely actually vary from rs.direct. Measure this cost and
    		// maybe avoid the copy.
    		direct = make(map[string]bool, len(rs.direct))
    		for mPath := range rs.direct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // client or server.
    //
    // cloneTLSConfig should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneTLSConfig
    func cloneTLSConfig(cfg *tls.Config) *tls.Config {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    }
    
    // CHECK-LABEL: @conv_3_fn
    // CHECK: tf.XlaCallModule
    // CHECK-SAME: _entry_function = @composite_conv_fn_6, _original_entry_function = "composite_conv_fn_6"
    // CHECK: tf.XlaCallModule
    // CHECK-SAME: _entry_function = @composite_conv_fn_5, _original_entry_function = "composite_conv_fn_5"
    
    // CHECK-LABEL: @conv_1_fn
    // CHECK: tf.XlaCallModule
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        weight_row = array_ops.ones(
            shape=array_ops.shape(input_vocabs_placeholder), dtype=dtypes.float32
        )
        # shape: (?, 2)
        weight = array_ops.transpose_v2(
            array_ops_stack.stack([weight_row, weight_row])
        )
        # shape: (2, 2)
        output_tensor = math_ops.matmul(matmul_input, weight)
    
        return input_vocabs_placeholder, lookup_vals, output_tensor
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    }
    
    // -----
    
    // Test inferring shape from the first scatter.
    
    // CHECK-LABEL: func @main
    func.func @main() -> tensor<i32> {
      %size = "tf.Const"() {value = dense<5> : tensor<i32>} : () -> tensor<i32>
      // CHECK: %[[VAR:.*]] = "tf.MlirLocalVarOp"() : () -> tensor<!tf_type.resource<tensor<5x3xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        // the same shape, which is defined by `shape`.
        [(IsTailOfShape $rhs, $lhs),
         (HasOneUse $lhs),
         // The result of the new "BinaryOp" will have the same shape as
         // `input`. In other words, the shape of the `Reshape` op are not
         // changed after the transformation.
         (IsTailOfShape $rhs, $input),
         (HasRankAtMost<4> $input),
         (HasRankAtMost<4> $lhs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

      auto ranked_ty = mlir::dyn_cast<RankedTensorType>(ty);
    
      // Unranked type.
      if (!ranked_ty) return ty;
    
      auto shape = llvm::to_vector<4>(ranked_ty.getShape());
      if (axis < 0) axis += ranked_ty.getRank() + 1;
    
      shape.insert(shape.begin() + axis, 1);
      return tensorflow::GetTypeFromTFTensorShape(shape,
                                                  ranked_ty.getElementType());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        Arg<TF_Tensor, [{= A `Tensor` which may have the same shape as `condition`.
    If `condition` is rank 1, `x` may have higher rank,
    but its first dimension must match the size of `condition`.}]>:$then_value,
        Arg<TF_Tensor, [{= A `Tensor` with the same type and shape as `x`.}]>:$else_value
      );
    
      let results = (outs
        Res<TF_Tensor, [{= A `Tensor` with the same type and shape as `x` and `y`.}]>:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // CHECK:      tf_device.replicate
    // CHECK-SAME: [%[[ARG_0]], %[[ARG_0]]] as %{{[a-z0-9]*}}
    // CHECK-SAME: [%[[ARG_2]], %[[ARG_2]]] as %{{[a-z0-9]*}}
    // CHECK-SAME: [%[[ARG_4]], %[[ARG_4]]] as %{{[a-z0-9]*}}
    // CHECK-SAME: %[[ARG_1]] as %{{[a-z0-9]*}}
    // CHECK-SAME: %[[ARG_3]] as %{{[a-z0-9]*}}
    // CHECK-SAME: %[[ARG_5]] as %{{[a-z0-9]*}}
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top