Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for taco (0.05 sec)

  1. src/cmd/vendor/github.com/google/pprof/CONTRIBUTORS

    #
    # Names should be added to this file as:
    #     Name <email address>
    Raul Silvera <******@****.***>
    Tipp Moseley <******@****.***>
    Hyoun Kyu Cho <******@****.***>
    Martin Spier <******@****.***>
    Taco de Wolff <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 654 bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager_test.go

    			Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "file"},
    		},
    	}
    
    	expectedPods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:         "999999999",
    				Name:        "taco",
    				Namespace:   "default",
    				Annotations: map[string]string{kubetypes.ConfigSourceAnnotationKey: "api"},
    			},
    		},
    		staticPod,
    	}
    	updates := append(expectedPods, mirrorPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tac.py

    # limitations under the License.
    # ==============================================================================
    """Target aware conversion for TFLite model."""
    
    from tensorflow.compiler.mlir.lite.experimental.tac.py_wrapper import _pywrap_tac_wrapper
    
    
    def run_tac(model_path, targets, output_path):
      """Run target aware conversion for the given tflite model file.
    
      Args:
        model_path: Path to the tflite model file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/extractor/test.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <address xmlns:hoge="http://www.example.com/hoge">
    	<item sex="male" custid="A12345">
    		<name>鈴木太郎</name>
    		<access kind="email"></access>
    		<access kind="url">http://www.taro.com/</access>
    		<image file="taro.png" />
    	</item>
    	<item sex="male" custid="B23456">
    		<name>佐藤二朗</name>
    		<access kind="email">******@****.***</access>
    		<image file="jiro.png" />
    	</item>
    	<item sex="female" custid="C34567">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 582 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tests/tac-filter.mlir

    // RUN: tac-opt-all-backends -tfl-tac-filter='use-test-setting=true' %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // expected-remark@below {{Tac filter (0): filter type: function filter SKIP_TARGET_ANNOTATION, filter_pattern: "^testFunction"}}
    // expected-remark@below {{Tac filter (1): filter type: function filter INCLUDE_TARGET_ANNOTATION, filter_pattern: "testFunctionInclude"}}
    // expected-remark@below {{Tac filter (1) specified but not applied to any op}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 01:08:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.h

    #include "tensorflow/core/public/session.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace internal {
    
    // Register all custom ops including user specified custom ops.
    Status RegisterAllCustomOps(const toco::TocoFlags& toco_flags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.h

    #include <unordered_set>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tflite {
    // Options for exporting to Flatbuffer.
    struct FlatbufferExportOptions {
      // TocoFlags proto. The following fields are migrated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.h

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given GraphDef to a TF Lite FlatBuffer string according to the
    // given model flags, toco flags and debug information. Returns error status if
    // it fails to convert the input.
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/toco/types.pb.h"
    #include "tensorflow/lite/tools/optimize/reduced_precision_support.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& 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)
  10. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.h

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given Jax model to a TF Lite FlatBuffer
    // string according to the given model flags, toco flags and tags. Returns error
    // status if it fails to convert the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top