Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 177 for abs8 (0.05 sec)

  1. tensorflow/c/experimental/ops/gen/common/BUILD

            "//tensorflow/core:lib_internal",
            "//tensorflow/core:op_gen_lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core/platform:str_util",
            "@com_google_absl//absl/strings",
        ],
        alwayslink = 1,
    )
    
    tf_cc_tests(
        name = "all_tests",
        size = "small",
        srcs = glob(["*_test.cc"]),
        deps = [
            ":common",
            "//tensorflow/core:core_cpu",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/controller.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/common/controller.h"
    
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/common/path_config.h"
    #include "tensorflow/c/experimental/ops/gen/common/source_code.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/attributes.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/strings/cord.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

        ],
        deps = [
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
            "//tensorflow/compiler/mlir/lite/schema:schema_utils",
            "//tensorflow/lite:framework",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    #include "tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.h"
    
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/strings/str_format.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/test_matchers.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/utils/test_metadata_config.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h"
    
    #include <cstdint>
    #include <map>
    #include <numeric>
    #include <string>
    #include <utility>
    
    #include "absl/log/check.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

    ==============================================================================*/
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "absl/container/inlined_vector.h"
    #include "absl/memory/memory.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/time/time.go

    	// +3     +2      +1        0        -1     -2       -3
    	// the offset to Thursday
    	abs := t.abs()
    	d := Thursday - absWeekday(abs)
    	// handle Sunday
    	if d == 4 {
    		d = -3
    	}
    	// find the Thursday of the calendar week
    	abs += uint64(d) * secondsPerDay
    	year, _, _, yday := absDate(abs, false)
    	return year, yday/7 + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/pos.go

    		return +1
    	}
    
    	return 0
    }
    
    func (pos Pos) String() string {
    	rel := position_{pos.RelFilename(), pos.RelLine(), pos.RelCol()}
    	abs := position_{pos.Base().Pos().RelFilename(), pos.Line(), pos.Col()}
    	s := rel.String()
    	if rel != abs {
    		s += "[" + abs.String() + "]"
    	}
    	return s
    }
    
    // TODO(gri) cleanup: find better name, avoid conflict with position in error_test.go
    type position_ struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

    namespace tf_saved_model {
    namespace {
    
    void InitializeVariable(TF::VarHandleOp var_handle_op,
                            tensorflow::Tensor* tensor,
                            func::FuncOp session_init_func, OpBuilder builder) {
      absl::StatusOr<ElementsAttr> tensor_attr_or =
          tensorflow::ConvertTensor(*tensor, &builder);
      assert(tensor_attr_or.ok() && "Expect valid tensor");
      ElementsAttr tensor_attr = tensor_attr_or.value();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top