Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 2,894 for ccCompiler (0.18 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     },
    #     tfrt_translate = "//tensorflow/compiler/mlir/tfrt:tfrt_fallback_translate",
    # )
    # copybara:uncomment_end
    
    mlir_to_bef(
        name = "batch_function_fallback.mlir",
        tfrt_translate = "//tensorflow/compiler/mlir/tfrt:tfrt_fallback_translate",
    )
    
    mlir_to_bef(
        name = "create_op.mlir",
        tfrt_translate = "//tensorflow/compiler/mlir/tfrt:tfrt_fallback_translate",
    )
    
    mlir_to_bef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/regexp/syntax/compile.go

    	panic("regexp: unhandled case in compile")
    }
    
    func (c *compiler) inst(op InstOp) frag {
    	// TODO: impose length limit
    	f := frag{i: uint32(len(c.p.Inst)), nullable: true}
    	c.p.Inst = append(c.p.Inst, Inst{Op: op})
    	return f
    }
    
    func (c *compiler) nop() frag {
    	f := c.inst(InstNop)
    	f.out = makePatchList(f.i << 1)
    	return f
    }
    
    func (c *compiler) fail() frag {
    	return frag{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/BUILD

            ":tf_ops_layout_helper",
            ":tf_ops_tensor_helper",
            "//tensorflow/compiler/mlir/tensorflow/ir/host_runtime:tensorflow_tfrt_ops",
            "//tensorflow/compiler/mlir/tensorflow/ir/host_runtime:tensorflow_tfrt_ops_inc_gen",
            "//tensorflow/compiler/mlir/tensorflow/transforms:rewrite_util",
            "//tensorflow/compiler/mlir/tensorflow/transforms:tensorflow_canonicalize_inc_gen",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/toolchain-config-task/groovy/build.gradle

    }
    // end::java-home[]
    
    
    // tag::java-compiler[]
    def compiler = javaToolchains.compilerFor {
        languageVersion = JavaLanguageVersion.of(11)
    }
    
    tasks.named('yetAnotherSampleTask') {
        javaCompilerExecutable = compiler.map { it.executablePath }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/ir/tfrt_fallback_util_test.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_util.h"
    
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.h"
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.h"
    #include "tensorflow/core/platform/resource_loader.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/register_common_dialects.cc

    #include "mlir/InitAllExtensions.h"  // from @llvm-project
    #include "stablehlo/dialect/Register.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/mlprogram_util.h"
    #include "tensorflow/compiler/mlir/tools/kernel_gen/ir/tf_framework_ops.h"
    #include "xla/mlir/framework/ir/xla_framework.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:45:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue7740.go

    	"runtime"
    )
    
    const ulp = (1.0 + (2.0 / 3.0)) - (5.0 / 3.0)
    
    func main() {
    	// adjust precision depending on compiler
    	var prec float64
    	switch runtime.Compiler {
    	case "gc":
    		prec = math.Inf(1) // exact precision using rational arithmetic
    	case "gccgo":
    		prec = 256
    	default:
    		// unknown compiler
    		return
    	}
    	p := 1 - math.Log(math.Abs(ulp))/math.Log(2)
    	if math.Abs(p-prec) > 1e-10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 25 18:53:24 UTC 2021
    - 736 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/function/function.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    #include "tensorflow/compiler/mlir/tfrt/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tfrt/transforms/tfrt_pipeline_options.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/bef_converter/mlir_to_bef.h"  // from @tf_runtime
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 08:13:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_gpu_device.cc

    #include "absl/strings/str_split.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_device_ops.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/layout_util.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/test_base.h

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/quantization/common/func.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/context.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top