Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 941 for spcs (0.05 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

      )
      print('=== Updated QuantizationConfig ===')
      print(config)
    
      if not (
          _has_quantization_method(config.specs, 'static_range_ptq')
          and len(config.calibration_options.representative_datasets) == 1
      ) and not _has_quantization_method(config.specs, 'weight_only_ptq'):
        raise ValueError(
            '`quantize_saved_model` currently only supports static-range PTQ with a'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

            "//tensorflow/python:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    # copybara:uncomment_begin(google-only)
    # tf_py_strict_test(
    #     name = "tensorflow_to_stablehlo_test",
    #     testonly = 1,
    #     srcs = ["integration_test/tensorflow_to_stablehlo_test.py"],
    #     deps = [
    #         ":pywrap_tensorflow_to_stablehlo",
    #         "//testing/pymocks:matchers",
    #         "//third_party/py/mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/trace/raw/reader.go

    type Reader struct {
    	r     *bufio.Reader
    	v     version.Version
    	specs []event.Spec
    }
    
    // NewReader creates a new reader for the trace wire format.
    func NewReader(r io.Reader) (*Reader, error) {
    	br := bufio.NewReader(r)
    	v, err := version.ReadHeader(br)
    	if err != nil {
    		return nil, err
    	}
    	return &Reader{r: br, v: v, specs: v.Specs()}, nil
    }
    
    // Version returns the version of the trace that we're reading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactory.java

     */
    package org.gradle.api.internal.project.taskfactory;
    
    import org.gradle.api.Task;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.instantiation.InstantiationScheme;
    import org.gradle.internal.reflect.Instantiator;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 14:40:02 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsResourceGenerator.java

            List<String> callInterceptorTypes = new ArrayList<>();
            CallInterceptorSpecs specs = GroovyClassGeneratorUtils.groupRequests(filteredRequests);
            specs.getNamedRequests().forEach(spec -> callInterceptorTypes.add(spec.getFullClassName()));
            specs.getConstructorRequests().forEach(spec -> callInterceptorTypes.add(spec.getFullClassName()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/NotSpecTest.java

     * limitations under the License.
     */
    package org.gradle.api.specs;
    
    import org.junit.Test;
    
    import static org.hamcrest.CoreMatchers.equalTo;
    import static org.hamcrest.MatcherAssert.assertThat;
    
    public class NotSpecTest {
        @Test
        public void testIsSatisfiedBy() {
            assertThat(new org.gradle.api.specs.NotSpec(createFilterSpec()).isSatisfiedBy(true), equalTo(false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/BUILD

            ":friends",
        ],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//tensorflow/compiler/mlir/lite/...",
        ],
    )
    
    tf_cc_binary(
        name = "odml-converter",
        srcs = ["odml_converter_main.cc"],
        compatible_with = get_compatible_with_portable(),
        visibility = [
            "//tensorflow/compiler/mlir/lite/stablehlo/odml_converter:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 22:27:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/testdata/BUILD

    )
    
    # Run this binary manually, with an argument pointing to the testdata/
    # directory, to generate the test files used by the filegroup rule below.
    py_strict_binary(
        name = "gen_saved_models",
        srcs = ["gen_saved_models.py"],
        python_version = "PY3",
        deps = [
            "//tensorflow/python/compat:v2_compat",
            "//tensorflow/python/eager:def_function",
            "//tensorflow/python/framework:constant_op",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/tests/BUILD

    cc_library(
        name = "tensor_types_test_util",
        testonly = True,
        hdrs = ["tensor_types_test_util.h"],
        deps = [
            "//tensorflow/c:tf_datatype",
        ],
    )
    
    tf_cc_test(
        name = "tensor_test",
        srcs = [
            "tensor_test.cc",
        ],
        deps = [
            ":tensor_types_test_util",
            "//tensorflow/c:tf_datatype",
            "//tensorflow/cc/experimental/base/public:status",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/BUILD

        ]) + if_google([
            "//tensorflow/core/platform/default/build_config:test_main",
        ]),
    )
    
    filegroup(
        name = "quantize_header",
        srcs = ["quantize.h"],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "tfcompile_lib",
        srcs = [
            "codegen.cc",
            "compile.cc",
            "flags.cc",
        ],
        hdrs = [
            "codegen.h",
            "compile.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top