Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,288 for casting (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_ANALYSIS_RESOURCE_DATAFLOW_H_
    
    #include <algorithm>
    #include <vector>
    
    #include "llvm/ADT/BitVector.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/Debug.h"
    #include "mlir/Analysis/DataFlow/DeadCodeAnalysis.h"  // from @llvm-project
    #include "mlir/Analysis/DataFlow/SparseAnalysis.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/database/sql/doc.txt

      In a nutshell:
    
      User Code ---> sql package (concrete types) ---> sql/driver (interfaces)
      Database Driver -> sql (to register) + sql/driver (implement interfaces)
    
    * Make type casting/conversions consistent between all drivers. To
      achieve this, most of the conversions are done in the sql package,
      not in each driver. The drivers then only have to deal with a
      smaller set of types.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/name_anonymous_iterators.cc

    #include <memory>
    #include <string>
    
    #include "absl/strings/str_format.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/strip_saved_module_metadata.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <memory>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_gpu.cc

    #include "tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_gpu.h"
    
    #include <memory>
    #include <utility>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_variables.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <optional>
    #include <utility>
    
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. test/typeparam/issue50109.go

    	c := NewAnyCacher[any]()
    
    	myStruct := &MyStruct{"MySuperStruct"}
    
    	c.Set("MySuperStruct", myStruct)
    
    	myRawCachedStruct, found := c.Get("MySuperStruct")
    
    	if found {
    		// Casting the retrieved object back to its original type
    		myCachedStruct := myRawCachedStruct.(*MyStruct)
    		fmt.Printf("%s", myCachedStruct.Name)
    	} else {
    		fmt.Printf("Error: MySuperStruct not found in cache")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <iterator>
    #include <memory>
    #include <tuple>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/visitor.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/visitor.h"
    
    #include <utility>
    
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/replica_id_to_device_ordinal.cc

    // This pass sets the device ordinal attribute of the required op using
    // the replica id attribute.
    
    #include <memory>
    #include <utility>
    
    #include "llvm/Support/Casting.h"
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top