Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for Compiler (0.19 sec)

  1. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
            "//tensorflow/compiler/mlir/tensorflow:mlir_import_options",
            "//tensorflow/compiler/mlir/tensorflow:mlir_roundtrip_flags",
            "//tensorflow/compiler/mlir/tensorflow:tf_dialect_lib",
            "//tensorflow/compiler/mlir/tensorflow:translate_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

        "//tensorflow/compiler/jit/ops:xla_ops",
        "//tensorflow/compiler/tf2xla:layout_util",
        "//tensorflow/compiler/tf2xla:common",
        "//tensorflow/compiler/tf2xla:tf2xla_util",
        "//tensorflow/compiler/tf2xla:xla_compiler",
        "//tensorflow/compiler/tf2xla:xla_op_registry",
        "//tensorflow/compiler/tf2xla/kernels:xla_dummy_ops",
        "//tensorflow/compiler/tf2xla/kernels:xla_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. .bazelrc

    build:rocm --config=no_tfrt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // But with a different input it will be used.
    func TestDefinitionDoesntMatch(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    	datalock := sync.Mutex{}
    	passedParams := []*unstructured.Unstructured{}
    	numCompiles := 0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	var compiler plugincel.Compiler // composition compiler is stateful, create one lazily per policy
    	getCompiler := func() plugincel.Compiler {
    		if compiler == nil {
    			needsComposition := len(spec.Variables) > 0
    			compiler = createCompiler(needsComposition, opts.strictCostEnforcement)
    		}
    		return compiler
    	}
    	if spec.FailurePolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. tensorflow/BUILD

            "//tensorflow/compiler/mlir/quantization/tensorflow/python:quantize_model_cc_impl",
            "//tensorflow/compiler/mlir/quantization/tensorflow:passes",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow/c:mlir_c_api_registration",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
            "//tensorflow/compiler/mlir/tensorflow:export_graphdef",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    #include "tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/size_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/validators.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	} else {
    		archive = b
    	}
    
    	// Compile Go code.
    	compile := []string{pathf("%s/compile", tooldir), "-std", "-pack", "-o", b, "-p", pkgName, "-importcfg", importcfg}
    	if gogcflags != "" {
    		compile = append(compile, strings.Fields(gogcflags)...)
    	}
    	if len(sfiles) > 0 {
    		compile = append(compile, "-asmhdr", goasmh)
    	}
    	if symabis != "" {
    		compile = append(compile, "-symabis", symabis)
    	}
    	if goos == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top