Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 941 for spcs (0.12 sec)

  1. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/OrSpecTest.java

     */
    package org.gradle.api.specs;
    
    import org.junit.Test;
    
    import static org.junit.Assert.assertFalse;
    import static org.junit.Assert.assertTrue;
    
    public class OrSpecTest extends AbstractCompositeSpecTest {
    
        public org.gradle.api.specs.CompositeSpec createCompositeSpec(Spec... specs) {
            return new OrSpec(specs);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

          GetPtqSpecForConvolution(Method::MethodCase::kStaticRangePtq);
    
      // Append user-provided specs to override existing specs.
      const QuantizationSpecs& previous_specs = config.specs();
      new_specs.mutable_specs()->Add(previous_specs.specs().begin(),
                                     previous_specs.specs().end());
    
      config.clear_static_range_ptq_preset();
      config.mutable_specs()->Swap(&new_specs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        implementation = _impl,
    )
    
    def junit_tests(name, srcs, **kwargs):
        s_name = name.replace("-", "_") + "TestSuite"
        _GenSuite(
            name = s_name,
            srcs = srcs,
            outname = s_name,
        )
        java_test(
            name = name,
            test_class = s_name,
            srcs = srcs + [":" + s_name],
            **kwargs
        )
        '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

          model_flags.control_output_arrays().end());
      TF_RETURN_IF_ERROR(
          ParseOutputArrayInfo(control_output_arrays, &specs.control_outputs));
    
      specs.prune_unused_nodes = true;
      specs.convert_legacy_fed_inputs = true;
      specs.graph_as_function = false;
      specs.upgrade_legacy = true;
      specs.unconditionally_use_set_output_shapes = true;
      internal::WarningUnusedFlags(model_flags, toco_flags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/build_defs.bzl

        gen_op_lib_exec = src[:-3]  # Strip off the .py
        py_strict_binary(
            name = gen_op_lib_exec,
            srcs = [src],
            srcs_version = "PY3",
            python_version = "PY3",
            deps = py_deps,
        )
    
        registered_op = "registered_" + name
        native.genrule(
            name = registered_op,
            srcs = [],
            outs = [name + ".inc.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/BUILD

    )
    
    cc_library(
        name = "utils",
        srcs = [
            "utils/utils.cc",
        ],
        hdrs = [
            "utils/utils.h",
        ],
        deps = [
            ":tfr",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "passes",
        srcs = [
            "passes/canonicalize.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/BUILD

            "//learning/brain/mlir/quantization:__subpackages__",
            "//tensorflow/compiler/mlir/quantization:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "save_variables",
        srcs = ["save_variables.cc"],
        hdrs = ["save_variables.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

     * limitations under the License.
     */
    package org.gradle.api.specs;
    
    import com.google.common.collect.ObjectArrays;
    import groovy.lang.Closure;
    import org.gradle.api.Incubating;
    import org.gradle.api.specs.internal.ClosureSpec;
    import org.gradle.internal.Cast;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link org.gradle.api.specs.CompositeSpec} which requires all its specs to be true in order to evaluate to true.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.api.Action
    import org.gradle.api.specs.Spec
    import org.gradle.api.specs.Specs
    import org.gradle.internal.operations.BuildOperationType
    import org.gradle.internal.operations.BuildOperationTypes
    import org.gradle.internal.operations.trace.BuildOperationRecord
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

                }
            }
            if (specs.size() == 1) {
                return specs.get(0);
            }
            return Specs.intersect(specs);
        }
    
        private void validateLowestTestedVersion(String constraint, String value, GradleVersion minVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top