Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,860 for org2 (0.08 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

    import org.gradle.api.logging.Logger;
    import org.gradle.internal.Cast;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.slf4j.Marker;
    import org.slf4j.helpers.FormattingTuple;
    import org.slf4j.helpers.MessageFormatter;
    
    import static org.gradle.internal.logging.slf4j.BuildOperationAwareLogger.toLogLevel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

    import org.gradle.internal.logging.console.DefaultUserInputReceiver;
    import org.gradle.internal.logging.events.OutputEventListener;
    import org.gradle.internal.logging.sink.OutputEventRenderer;
    import org.gradle.internal.time.Clock;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.Logger;
    import org.slf4j.Marker;
    
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/BuildOperationAwareLogger.java

    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    import org.gradle.internal.operations.OperationIdentifier;
    import org.slf4j.Marker;
    import org.slf4j.helpers.FormattingTuple;
    import org.slf4j.helpers.MessageFormatter;
    
    import javax.annotation.Nullable;
    
    @SuppressWarnings("OverridingMethodInconsistentArgumentNamesChecker")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/text/template/funcs.go

    			truth = arg1.String() < arg2.String()
    		case uintKind:
    			truth = arg1.Uint() < arg2.Uint()
    		default:
    			panic("invalid kind")
    		}
    	}
    	return truth, nil
    }
    
    // le evaluates the comparison <= b.
    func le(arg1, arg2 reflect.Value) (bool, error) {
    	// <= is < or ==.
    	lessThan, err := lt(arg1, arg2)
    	if lessThan || err != nil {
    		return lessThan, err
    	}
    	return eq(arg1, arg2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Sub32carry", argLength: 2, typ: "(UInt32,Flags)"}, // arg0 - arg1, returns (value, carry)
    	{name: "Sub32withcarry", argLength: 3},                    // arg0 - arg1 - arg2, arg2=carry (0 or 1)
    
    	{name: "Add64carry", argLength: 3, commutative: true, typ: "(UInt64,UInt64)"}, // arg0 + arg1 + arg2, arg2 must be 0 or 1. returns (value, value>>64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

      (TF_MinOp $arg0, $axes, BoolAttr:$arg2),
      (TFL_ReduceMinOp $arg0, (CreateTFCastToInt32Op $axes), $arg2)>;
    
    def LegalizeMax : Pat<
      (TF_MaxOp $arg0, $axes, BoolAttr:$arg2),
      (TFL_ReduceMaxOp $arg0, (CreateTFCastToInt32Op $axes), $arg2)>;
    
    def LegalizeProd : Pat<
      (TF_ProdOp $arg0, $axes, BoolAttr:$arg2),
      (TFL_ReduceProdOp $arg0, (CreateTFCastToInt32Op $axes), $arg2)>;
    
    def LegalizeAny : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

    constexpr absl::string_view kFunctionWithRegion =
        R"mlir(
      func.func @main(%arg0: tensor<i1>, %arg1: tensor<f32>, %arg2: tensor<f32>) -> tensor<f32> {
        %if = "stablehlo.if"(%arg0) ({
          %0 = stablehlo.add %arg1, %arg1 : tensor<f32>
          stablehlo.return %0 : tensor<f32>
        }, {
          %1 = stablehlo.add %arg2, %arg2 : tensor<f32>
          stablehlo.return %1 : tensor<f32>
        }) : (tensor<i1>) -> (tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/shape-inference.mlir

      // CHECK: "tfl.conv_2d"(%arg0, %arg1, %arg2) <{dilation_h_factor = 2 : i32, dilation_w_factor = 2 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 1 : i32, stride_w = 1 : i32}> : (tensor<1x112x80x128xf32>, tensor<128x3x3x128xf32>, tensor<128xf32>) -> tensor<1x108x76x128xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

      %0:2 = "tfl.while"(%cst0, %cst1) ({
        ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
          %cst_0 = arith.constant dense<0> : tensor<i32>
          %1 = "tfl.greater"(%arg2, %cst_0) : (tensor<*xi32>, tensor<i32>) -> tensor<i1>
          "tfl.yield"(%1) : (tensor<i1>) -> ()
      },  {
        ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
          %1 = "tfl.sub"(%arg2, %arg0) {fused_activation_function = "NONE"} :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant.mlir

    func.func @fakeQuantPerChannelForActivation(%arg0: tensor<8x4xf32>) -> (tensor<8x4xf32>) {
      %arg1 = arith.constant dense<[0.0, -1.0, 1.0, 0.0]> : tensor<4xf32>
      %arg2 = arith.constant dense<[255.0, 254.0, 256.0, 1.0e-9]> : tensor<4xf32>
      %0 = "tf.FakeQuantWithMinMaxVarsPerChannel"(%arg0, %arg1, %arg2) {num_bits = 5, narrow_range = false} : (tensor<8x4xf32>, tensor<4xf32>, tensor<4xf32>) -> tensor<8x4xf32>
      func.return %0 : tensor<8x4xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top